maven+jrebel+jetty 熱部署

(注:圖片是借的,懶得截圖)
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>

web

jrebel安裝

安裝 JRebel Eclipse 插件eclipse

Help » Install New Softwaremaven

而後經過 以下 URL :
http://www.zeroturnaround.com/update-site/spa

若是要離線下載的話,能夠經過下載離線包的方式進行:
插件

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

若是不使用默認的jrebel需指定其JAR包的路徑 :

圖片



配置 JReBel.xml

配置好後,就剩下加入jrebel的參數了。要在eclipse里加入jrebel參數,須要裝jrebel for eclipse 插件,裝好以後,對pom.xml點右鍵,選擇run->run configurations,在彈出的對話框中選擇標籤jrebel,勾選enable jrebel agent

成了,運行試試ip

相關文章
相關標籤/搜索