STS热部署方法(springboot)

sts热部署,即是在项目中修改代码不用重新启动服务,提高效率。

 

方法如下:

1.在pom文件中引入  devtools  依赖:

    


  org.springframework.boot
  spring-boot-devtools
  
  true

 

2.在application.properties  文件中码上以下内容:

spring.thymeleaf.cache=true        //缓存
spring.devtools.restart.enabled=true   //开启
spring.devtools.restart.additional-paths=src/main/java  //监听目录

 

3.原理






 

本文资料来源幕课网教学视频

 

转载于:https://www.cnblogs.com/cx-code/p/8686453.html

你可能感兴趣的:(STS热部署方法(springboot))