-
ABOUTYOU
<parent><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-parent</artifactId><version>1.5.9.RELEASE</version></parent><dependencies><dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-web</artifactId></dependency></dependencies>这个parent 和下面那个web的约束要匹配我之前分开来取的,然后就是tomcat启动访问404所以你改一下依赖就好了,两个记得要配对
-
青春有我
把RequestMapping中的value改成path试试 还有官方里的做法 好像没有看到@SpringBootApplication和@RestController好像没有混用的情况,可以试试单独写个Controller试试 因为如果控制器注册成功 启动的时候控制台会有提示在某某路径上已经注册控制器了,你这个应该是没检查到控制器
-
炎炎设计
<parent><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-parent</artifactId><version>1.5.9.RELEASE</version></parent><dependencies><dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-web</artifactId></dependency></dependencies>这个parent 和下面那个web的约束要匹配我之前分开来取的,然后就是tomcat启动访问404,所以你改一下依赖就好了,两个记得要配对。