如题,检测
一、启动类Application是不是在最上一级,默认扫描启动类平级和下级目录的bean
二、启用内置Tomcat,注释掉 scope
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-tomcat</artifactId> <!--<scope>provided</scope> 打包时打开--> </dependency>
如果原来有 scope 并且注释了,需要 mvn 刷新下。
三、RequestMapping地址的问题,@RestController和@Controller的区别。一个只会返回数据,一个能跳转页面。