IntelliJ IDEA 修改代码后即时编译

时间:2024-03-30 19:32:07

IntelliJ IDEA 修改代码后即时编译

在项目开发过程中,经常要修改代码然后希望即时生效,在Intellij中要做以下设置:

在pod文件中添加:

org.springframework.boot
spring-boot-devtools
true

设置:
“File” -> “Settings” -> “Build,Execution,Deplyment” -> “Compiler”,选中 “Build project automatically”IntelliJ IDEA 修改代码后即时编译
组合键:Shift+Ctrl+Alt+/ ,选择 “Registry” ,选中 compiler.automake.allow.when.app.running

完成以上设置后,做下面验证
修改代码
IntelliJ IDEA 修改代码后即时编译
Ctrl + S

代码重新编译

修改生效:
IntelliJ IDEA 修改代码后即时编译