在IDEA中Spring boot配置热部署无效问题解决方式
2018年04月04日 10:10:22 阅读数:2072
版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/qq_20989105/article/details/79813413
只要在pom文件中添加下面代码段即可
org.springframework.boot spring-boot-devtools true true org.springframework.boot spring-boot-maven-plugin true true
这样配置在中已经可以实现热启动,但是在idea中配置好无效,下面需要修改idea中的两个配置
- setting –> compiler ,将 Build project automatically 勾选上
- alt + shift + a 搜索 registry 选第一个,弹出框后下拉找到compiler.automake.allow.when.app.running 勾选上即可。
热部署无效问题已解决。