SpringBoot工程热部署
1.热部署依赖坐标:
<!--spring-boot开发工具jar包,支持热部署--> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-devtools</artifactId> </dependency>
注意:加入坐标之后,IDEA进行热部署也会失败。
2.默认情况IDEA不会自动编译,需要设置 Build Project Automatically(File ——>Settings ——>Build, Execution, Deployment ——> Compiler),在页面右边选中Build Project Automatically
3.Shift + Ctrl + Alt + / 打开Maintenance维护,选择Registry(注册表),找到下面这个,选中
注意:当重新构建一个springboot项目的时候,热部署不好用,一定要重新走一遍上面的步骤,尤其是第二步,一定要重新检查一遍,确认是否自动编译,构建新项目时,这个会恢复默认的。