spring boot 自定义controller路由找不到,原因是启动类和自定义的Controller包不在同一级目录下。
官方建议application.java放的位置:
解决的办法:
1、把自建的controller类放到启动类同一级目录下(不建议这样做)并且使用@SpringBootApplication注解,而且自定义controller需要使用@RestController注解。
2、使用@SpringBootApplication + @ComponentScan("自定义controller所在的包")
把启动类@RestController @EnableAutoConfiguration注解改成@SpringBootApplication
@SpringBootApplication注解等价于以默认属性使用@Configuration,@EnableAutoConfiguration和@ComponentScan
@ComponentScan是springboot专门用来扫描@Component, @Service, @Repository, @Controller等注解的注解
但是加上去的时候还要加上具体扫描的区域,我试过把注解里的扫描区域去掉,这样依旧无法扫描到自定义的controller。
自定义controller使用注解@RestController。
使用上诉两种方式皆可,建议使用第二种方式。
通过界面上的“C”可以看出自定义controller已经背扫描到了。
访问url:http://localhost:8080/main/index 可以看到成功了!