IDEA中Spring boot配置热部署无效问题解决方式
该配置方式属于通过配置devtools实现热部署
只要在pom文件中添加下面代码段即可
---------------------------------------------------- org.springframework.boot spring-boot-devtools true true org.springframework.boot spring-boot-maven-plugin true true
但是配置好无效,下面需要修改idea中的两个配置
- setting –> compiler 将 Build project automatically 勾选上
- alt + shift + a 搜索 registry 选第一个,弹出框后下拉找到 compiler.automake.allow.when.app.running 勾选上即可。
热部署无效问题已解决。