使用IDEA进行开发,使用freemarker做前端展现,但发现前端页面修改后总是重新启动才能刷新。
1
2
3
4
5
|
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<optional>true</optional>
</dependency>
|
1
2
3
4
5
6
7
|
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<fork>true</fork>
</configuration>
</plugin>
|
2、打开IDEA的自动编译(IDEA缺省是关闭的):
Settings-> Build-Execution-Deployment –> Compiler,将 Build project automatically勾上。
3、打开运行时自动编译:
通过Help->Find
Action,来打开Registry……。将其中compiler.automake.allow.when.app.running勾上。
4、在项目配置中,指定禁用freemarker缓存,及0秒刷新延迟。
1
2
|
spring.freemarker.cache=false
spring.freemarker.settings.template_update_delay=0
|
学问:纸上得来终觉浅,绝知此事要躬行
为事:工欲善其事,必先利其器。
转载请标注出处!