【发布时间】:2015-02-15 07:25:55
【问题描述】:
我在 Eclipse 中使用 jetty maven 插件来部署我的应用程序。这是 pom.xml 的一部分:
<plugin>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-maven-plugin</artifactId>
<version>9.2.5.v20141112</version>
<dependencies>
<dependency>
<groupId>org.ow2.asm</groupId>
<artifactId>asm</artifactId>
<version>5.0.2</version>
</dependency>
<dependency>
<groupId>org.ow2.asm</groupId>
<artifactId>asm-commons</artifactId>
<version>5.0.2</version>
</dependency>
</dependencies>
<configuration>
<scanIntervalSeconds>2</scanIntervalSeconds>
<stopKey>stop</stopKey>
<stopPort>9999</stopPort>
</configuration>
</plugin>
我还在 Eclipse 中安装了 JRebel 插件。那么如何使用 JRebel 启动我的码头服务器?
【问题讨论】:
标签: maven jetty embedded-jetty maven-jetty-plugin jrebel