springBoot热部署

1.依赖 ,插件



    org.springframework.boot
    spring-boot-devtools
    true

    
        
            org.springframework.boot
            spring-boot-maven-plugin
            
                true
            
        
    

2.配置

#热部署生效
spring.devtools.remote.restart.enabled=true
#设置重启的目录
spring.devtools.restart.additional-paths=src/main/java
#classpath目录下的WEB-INF文件夹内容修改不重启
spring.devtools.restart.exclude=WEB-INF/**

3.idea使用热部署插件  

JRebel插件使用详解_哈-CSDN博客_jrebel

你可能感兴趣的:(SpringBoot,springBoot热部署)