IDEA jetty - 热部署插件JRebel 安装使用教程

时间:2022-08-20 00:49:36

1、下载插件并安装
jrebel-idea6.4.8
本地安装:
IDEA jetty - 热部署插件JRebel 安装使用教程

IDEA jetty - 热部署插件JRebel 安装使用教程

2、重启idea
IDEA jetty - 热部署插件JRebel 安装使用教程

3、激活
IDEA jetty - 热部署插件JRebel 安装使用教程

IDEA jetty - 热部署插件JRebel 安装使用教程

http://idea.lanyus.com/ilanyu

lanyu19950316@gmail.com
点击激活。
查看效果:
IDEA jetty - 热部署插件JRebel 安装使用教程

4、应用
IDEA jetty - 热部署插件JRebel 安装使用教程

IDEA jetty - 热部署插件JRebel 安装使用教程

选择你要热部署的项目:
IDEA jetty - 热部署插件JRebel 安装使用教程

注意:
使用jetty配合jrebel进行热部署:
修改pom.xml中 jetty的配置

<plugin>
<groupId>org.mortbay.jetty</groupId>
<artifactId>jetty-maven-plugin</artifactId>
<version>8.1.16.v20140903</version>
<configuration>
<war>${project.basedir}/target/zhadui-admin.war</war>
<webApp>
<contextPath>/</contextPath>
<resourceBases>
<resourceBase>${project.basedir}/src/main/webapp</resourceBase>
<resourceBase>${project.basedir}/src/main/webapp/public</resourceBase>
</resourceBases>
</webApp>
<stopKey>foo</stopKey>
<stopPort>9999</stopPort>
<scanIntervalSeconds>0</scanIntervalSeconds>
</configuration>
</plugin>

配置完毕!
IDEA jetty - 热部署插件JRebel 安装使用教程

mac idea 重新编译java快捷键:command+f9
windows idea 重新编译java快捷键:shift+f9