Java|SpringBoot 项目开发时,让 FreeMarker 文件编辑后自动更新
正在维护的一个 SpringBoot 项目是前后端一体的,页面使用 FreeMarker 编写。在开发过程中,ftl 文件编辑后,每次都需要重启应用才能看到效果,效率非常低下。这里记录通过哪些配置后,可以让它们免重启自动更新。
在应用的 pom.xml 文件里,做如下修改:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23<dependencies>
<!-- 添加以下依赖 -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<optional>true</optional>
<scope>runtime</scope>
</dependency>
</dependencies>
<build>
<finalName>${artifactId}</finalName>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<!-- 添加以下这一行 -->
<fork>true</fork>
</configuration>
</plugin>
</plugins>
</build>在 application-dev.properties 文件里添加如下内容:
1
2
3# freemarker hot reload
spring.freemarker.cache=false
spring.freemarker.settings.template_update_delay=0禁用 FreeMarker 缓存,有更改后即时更新。
修改 IDEA 配置,开启自动编译:
编译应用运行时的 Run/Debug Configurations:
将 On ‘Update’ action: Update classes and resources 和 On frame deactivation: Update classes and resources 配置打开。
关于 spring-boot-devtools 的相关用途与说明,可以参考 Spring 官方文档:https://docs.spring.io/spring-boot/docs/2.7.18/reference/html/using.html#using.devtools,可以看到,如果想要在开发过程中修改 Java 代码后免于手动重启,也可以借助于 spring-boot-devtools 的相关配置。
参考链接: