刚学习SpringBoot,第一步肯定是搭建一个helloWorld的程序.
在集成SpringMVC的过程,发现一个异常诡异的问题.写了2个controller.
@RestController public class MyRestController { @RequestMapping("/") String home() { return "hello"; } }
@Controller public class MyViewController { @GetMapping("/hello") public String index(Map<String, Object> model){ model.put("time", new Date()); return "hello"; } }
MyRestController正常运行, MyViewController无论如何都报404. 网上查询答案,反复确认已经做了各种修改(打包jar该war;引入tomcat\jsp依赖;修改webapp路径)仍然无效.
一直搜索关键字"SpringBoot Jsp 404",无法获得突破. 后面偶然发现一个网友的启动步骤是
mvn:spring-boot:run. 尝试一下终于成功.
总是获得突破,修改关键字"mvn spring-boot:run main() 区别"找到以下这个文章,
https://segmentfault.com/a/1190000009785247 .里面提供的解决方法"(去掉将pom.xml中tomcat-embed-jasper依赖<scope>provided</scope>)"在我这里仍不奇效. 转战StackOverflow,
搜索新的关键字,找到这个文章
https://stackoverflow.com/questions/30237768/run-spring-boots-main-using-ide 里面的人和我遇到同样的问题"Seems like mvn spring-boot:run
does some more magic that does not happen when running the main
directly."
相关答案帖子里的1L,2L说的很详细了. IntelliJ IDEA没有将<scope>provided
</scope>的依赖注入到类路径中,用main()方法启动的话,pom.xml里添加的这个
<dependency> <groupId>org.apache.tomcat.embed</groupId> <artifactId>tomcat-embed-jasper</artifactId> <scope>provided</scope> </dependency>
不会被加载 .用mvn spring-boot:run指令就可以了.
另分享个今天的收获:
https://github.com/spring-projects 发现这个神奇的github账号,Spring官方维护的所有模块的demo,哪里不会点哪里,so easy!