搜索

首页  >  问答  >  正文

java - spring boot + thymeleaf热插拔无效?

每次在修改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

请问热插拔无效的原因是什么?

我想大声告诉你我想大声告诉你2797 天前694

全部回复(1)我来回复

  • 大家讲道理

    大家讲道理2017-05-17 10:00:57

    有可能是thymeleaf的缓存, 设置spring.thymeleaf.cache=false

    回复
    0
  • 取消回复