idea快速创建springboot,但@RestController不起作用

idea快速创建springboot,但@RestController不起作用

  1. 原因是springboot主程序中扫描不到controller所在的包的位置
    idea快速创建springboot,但@RestController不起作用_第1张图片
  2. 解决方案:
    在springboot主程序类中加上@ComponentScan("com.zb.lq.controller")
    如图:
    idea快速创建springboot,但@RestController不起作用_第2张图片
    正确

你可能感兴趣的:(springboot,idea)