每次在修改thymeleaf的templates之后就要重启spring boot,虽然spring boot的启动速度不错,但是这样还是很麻烦。Google了利用spring-boot-devtools
可以实现热插拔。
我的pom.xml
加入了:
<!-- hot swap -->
<dependency>
<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