Intellij IDEA下Spring Boot热切换配置
作者:煲煲菜
相信很多人自己百度“idea springboot 热部署”
,找到的解决方案都是如下:
1.项目加入依赖spring-boot-devtools
2.IDEA按ctrl+alt+s
——Build,Excution,Deployment
——Compiler
——勾选Build project automatically
3.IDEA按ctrl+shift+a
——输入registry
——Compiler
——勾选compiler.automake.allow.when.app.running
但其实这样设置,每次你改一点点代码,都会触发IDEA重新编译,IDEA变得很卡,开发体验不好。
其实IDEA提供了对spring-boot-devtools
的相应支持的,打开IDEA——Help
在弹出网页中输入spring boot
,就能找到Configure application update policies with devtools这篇文档。
实际操作:
1.在你的spring boot项目中引入依赖spring-boot-devtools
2.找到main方法,运行一下项目。注意一定要通过点击main方法运行
,而不能是通过mvn spring-boot:run
或gradle bootRun
,如下图:
3.运行后我们就可以打开Run
——Edit Configurations
,在SpringBoot
下设置On Update action
为Update classes and resources
,如下图:
4.设置后,通过main方法运行,或者在菜单栏点击Run图标运行,如图:
5.当我们修改完代码后,IDEA不会自动编译重新启动SpringBoot,而是我们需要按一下左下角的Run
栏目中的Update xxx application
才会触发热切换。当然我们也可以用快捷键ctrl+F10
。如下图:
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。
您可能感兴趣的文章:
- IntelliJ IDEA基于SpringBoot如何搭建SSM开发环境的步骤详解
- IntelliJ IDEA 的 Spring 项目如何查看 @Value 的配置和值(方法详解)
- Intellij IDEA基于Springboot的远程调试(图文)
- SpringBoot项目在IntelliJ IDEA中如何实现热部署
- Intellij IDEA实现SpringBoot项目多端口启动的两种方法
- IntelliJ IDEA maven 构建简单springmvc项目(图文教程)
- intellij IDEA配置springboot的图文教程
- IntelliJ Idea SpringBoot 数据库增删改查实例详解
- IntelliJ IDEA 创建spring boot 的Hello World 项目(图解)
- Intellij搭建springmvc常见问题解决方案