【Java】spring boot + thymeleaf热插拔无效?
每次在修改thymeleaf的templates之后就要重启spring boot,虽然spring boot的启动速度不错,但是这样还是很麻烦。Google了利用spring-boot-devtools
可以实现热插拔。
我的pom.xml
加入了:
<!-- hot swap --><groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<version>1.3.0.RELEASE</version>
<optional>true</optional>
</dependency>
但是这样依然没有效果,但我使用mvn spring-boot:run
启动后,在修改thymeleaf的templates之后,必须要重启才能更新templates。同时我在intellij-idea
中已经设置Build project automatically。
请问热插拔无效的原因是什么?
回答
有可能是thymeleaf的缓存, 设置spring.thymeleaf.cache=false
要配置spring.thymeleaf.cache=false
我是用Jrebel运行项目的,热插拔一直都可以。
应该是idea的问题,用IJ的话就需要修改下他的配置。ctrl+shift+alt+/
勾选应该就可以了
以上是 【Java】spring boot + thymeleaf热插拔无效? 的全部内容, 来源链接: utcz.com/a/88540.html