解决新版 Idea 中 SpringBoot 热部署不生效的问题
标题
依赖中添加
1 2 3 4 5 6 | <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-devtools</artifactId> <scope>runtime</scope> <optional>true</optional> </dependency> |
插件中设置
1 2 3 4 5 6 7 | <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 模式启动应用
到此这篇关于解决新版 Idea 中 SpringBoot 热部署不生效的文章就介绍到这了,更多相关idea springboot热部署内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!
微信公众号搜索 “ 脚本之家 ” ,选择关注
程序猿的那些事、送书等活动等着你
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。
如若内容造成侵权/违法违规/事实不符,请将相关资料发送至 reterry123@163.com 进行投诉反馈,一经查实,立即处理!
相关文章
SSM框架通过mybatis-generator自动生成代码(推荐)
这篇文章主要介绍了SSM框架通过mybatis-generator自动生成代码,本文通过实例代码给大家介绍的非常详细,对大家的学习或工作具有一定的参考借鉴价值,需要的朋友可以参考下2017-11-11
最新评论