作用,有class文件改变,不用重新运行项目,会自动运行。修改java类或页面或者静态文件,不需要手动重启
原理:类加载器
适合于本地开发环境
Maven依赖
dependency>
groupId>org.springframework.boot</groupId
artifactId>spring-boot-devtools</artifactId
scope>runtime</scope
optional>true</optional
</dependency
Idea工具设置
1) “File” -> “Settings” -> “Build,Execution,Deplyment” -> “Compiler”,选中打勾 “Build project automatically”
2) 组合键:“Shift+Ctrl+Alt+/” ,选择 “Registry” ,选中打勾 “compiler.automake.allow.when.app.running”
试验
在class文件中进行修改,会自动重启项目,在浏览器中刷新就有结果。