在Spring Boot 1.5.2中禁用模板(Moustache)缓存

时间:2017-11-17 07:45:09

标签: java spring spring-mvc templates spring-boot

我正在使用带Spring Boot的Mustache模板引擎。 Mustache编译器为https://github.com/spullara/mustache.java

现在,在开发时我不希望Spring Boot缓存模板。模板位于 main>资源>模板

我尝试过添加

<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-devtools</artifactId>
    <optional>true</optional>
</dependency>

每当我对Java文件进行任何更改时,都会重新启动服务器,但不会出现模板文件。 (虽然我不希望它在模板更改时重启服务器)

我再次在主应用程序所在的同一目录中添加了一个 application.properties 文件,如下所示。

spring.template.cache: false
spring.cache.type : false

这也没有任何效果。

0 个答案:

没有答案