在 IDEA 中使用 JRebel 实现 SpringBoot 热部署
Posted starudream
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在 IDEA 中使用 JRebel 实现 SpringBoot 热部署相关的知识,希望对你有一定的参考价值。
在最近 SpringBoot
项目中使用 spring-boot-devtools
没有达到热部署,所以另找方法使用 JRebel
来实现,下面分享一下具体实现过程。
一、安装 JRebel 插件
在 Plugins
中搜索 JRebel for IntelliJ
并安装。
二、激活 JRebel 插件
可以选择 试用 或者 其他的激活方法
三、配置
在
Setting
->Build, Execution, Deployment
->Compiler
勾选Build project automatically
按下
Ctrl
+Shift
+A
,输入Registry
,找到compiler.automake.allow.when.app.running
将其选中右击当前项目选择
JRebel
->rebel.xml
,会在src\main\resources
目录下生成rebel.xml
文件,内容只需默认即可。
以上是关于在 IDEA 中使用 JRebel 实现 SpringBoot 热部署的主要内容,如果未能解决你的问题,请参考以下文章
Intellij IDEA 使用jrebel运行spring-boot并实现自动编译进行热部署