ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、视频、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
使用`spring-boot-devtools`设置热部署 ### **一. 在pom中引入依赖** ~~~ <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-devtools</artifactId> <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” 。 ``` `