标签:cti tom auto tool make 没有 scope app try
spring boob 项目在开发中修改了项目文件不能进行热部署,着实影响效率。
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<!--fork : 如果没有该项配置,devtools不会起作用,即应用不会restart -->
<fork>true</fork>
</configuration>
</plugin>
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-devtools</artifactId> <optional>true</optional> <scope>true</scope> </dependency>
1. application.properties
spring.thymeleaf.cache=false
2. Chrome禁用缓存
spring-boot-devtools在Idea中热部署方法
标签:cti tom auto tool make 没有 scope app try
原文地址:http://www.cnblogs.com/walkerr/p/7123557.html