最新版本idea配置springboot热部署

1.在web项目下增加devtools依赖

	
            org.springframework.boot
            spring-boot-devtools
            runtime
    

2.在application.properties配置属性

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

其实如果不配置在idea下也是能够自动热部署,个人亲测。

3.更改idea系统配置
最新版本idea配置springboot热部署_第1张图片
4.ctrl + shift + alt + /,选择Registry,勾上 Compiler autoMake allow when app running
最新版本idea配置springboot热部署_第2张图片
最新版本idea配置springboot热部署_第3张图片
到此结束。可以自行测试修改了,顺便说一句。我这里修改html也会自动部署。

你可能感兴趣的:(bug日记本)