Springboot在eclipse中热部署

1.在pom.xml文件当中添加:

       
            org.springframework.boot
            spring-boot-devtools
            true
       

 

2.在application.properties文件当中添加:

spring.resources.chain.cache=false

或application.yml文件添加:

spring:
  resources:
    chain:
      cache: false(注意格式,是换行+Tab,false前有空格)
3.在eclipse的菜单栏选中project中的Build Automatically .

4.重启项目,实现了热部署 。
 

你可能感兴趣的:(Springboot在eclipse中热部署)