在开发过程中,你经常需要经常改变代码,并重新启动服务器以使这些代码变化生效。Spring Boot提供了开发者工具(spring-boot-devtools模块),包括支持在应用程序classpath内容发生变化时快速重启应用程序。
当你在开发过程中包含spring-boot-devtools模块时,视图模板(Thymeleaf、Velocity和Freemarkeretc)的缓存将被自动禁用,这样你就可以立即看到这些变化。只需在你的pom.xml文件中包含。
<dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-devtools</artifactId> </dependency> </dependencies>
每当classpath内容发生变化时,Spring Boot开发者工具就会自动触发应用重启。
版权说明 : 本文为转载文章, 版权归原作者所有 版权申明
内容来源于网络,如有侵权,请联系作者删除!