(注:图片是借的,懒得截图)
pom.xml
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
成了,运行试试
来源:oschina
链接:https://my.oschina.net/u/133989/blog/68831