标签:active col ring profile boot files 文件 rest 修改
可以在配置修改某些文件重启,建议配置一个控制文件,只有此文件修改才会重启。
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<optional>true</optional>
<scope>true</scope>
</dependency>
spring: application: name: asfood-ketchup profiles: active: dev #热部署 devtools: restart: enabled: true trigger-file: devtools.tg
3. resources路径下添加文件 devtools.tg 后缀名文件名都无所谓,只要和配置中保持一致就可以。
然后启动项目,修改除了所添加的控制文件,项目都不会重新启动,只要修改了控制文件并报文,项目会立即重启,但是会在非常快的时间加载完成,由于只是加载了配置文件和class,所以非常快。
标签:active col ring profile boot files 文件 rest 修改
原文地址:http://www.cnblogs.com/moly/p/7978303.html