1.添加依赖
org.springframework.boot spring-boot-devtools true 不能被其它模块继承,如果多个子模块可以去掉 不必须runtime 只在运行时起作用 打包时不打进去
安装成功后查看maven 依赖 如果存在spring-boot-devtools 并且没有红线证明成功添加
2.要重新编译项目
重启服务器
idea:
设置File ->Setting ->Compile: 勾选“Build project automatically”选项
知识点补充:
SpringBoot热启动
在pom文件中添加maven依赖
org.springframework.boot spring-boot-devtools true true
在
org.springframework.boot spring-boot-maven-plugin true
File --> Setting --> complier -->勾选Build Project automatically
快捷键 ctrl + shift + alt + /,选择Registry,勾上 Compiler autoMake allow when app running (编译器自动允许当应用程序运行)
此时大功告成,修改代码后,不用重启程序访问的也是修改后的内容,若没效果,可稍等片刻。
以上就是小编整理的全部内容,希望能够帮助到大家。