依赖中添加
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<scope>runtime</scope>
<optional>true</optional>
</dependency>
插件中设置
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<fork>true</fork>
</configuration>
</plugin>
1.设置自动编译
Idea 中 setting -> Compiler -> 勾选automatically
2. spring boot 启动设置
编辑启动配置,点击modify options。
options 中需要修改两个配置:
1.On 'Update' action 中选择 Hot swap classes and update trigger file if failed
2.On frame deactivation 中选择 Update classes and resources
3.以 debug 模式启动应用
文章来源:https://www.toymoban.com/news/detail-615311.html
文章来源地址https://www.toymoban.com/news/detail-615311.html
到了这里,关于解决新版 Idea 中 SpringBoot 热部署不生效的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!