maven+jrebel+jetty 热部署

隐身守侯 提交于 2019-11-29 17:48:46
(注:图片是借的,懒得截图)
pom.xml
<plugins>
<!-- jetty插件, 设定端口与context path -->
<plugin>
<groupId>org.mortbay.jetty</groupId>
<artifactId>jetty-maven-plugin</artifactId>
<version>7.0.1.v20091125</version>
<configuration>
<webAppConfig>
<contextPath>/${project.artifactId}</contextPath>
</webAppConfig>
<scanIntervalSeconds>0</scanIntervalSeconds>
</configuration>
</plugin>

</plugins>

jrebel安装

安装 JRebel Eclipse 插件

Help » Install New Software

然后通过 如下 URL :
http://www.zeroturnaround.com/update-site/

如果要离线下载的话,可以通过下载离线包的方式进行:

http://www.zeroturnaround.com/update-site/update-site.zip

如果不使用默认的jrebel需指定其JAR包的路径 :




配置 JReBel.xml

配置好后,就剩下加入jrebel的参数了。要在eclipse里加入jrebel参数,需要装jrebel for eclipse 插件,装好之后,对pom.xml点右键,选择run->run configurations,在弹出的对话框中选择标签jrebel,勾选enable jrebel agent


成了,运行试试

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!