1、下载插件并安装
jrebel-idea6.4.8
本地安装:
2、重启idea
3、激活
lanyu19950316@gmail.com
点击激活。
查看效果:
4、应用
选择你要热部署的项目:
注意:
使用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>
配置完毕!
mac idea 重新编译java快捷键:command+f9
windows idea 重新编译java快捷键:shift+f9