<plugin>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-maven-plugin</artifactId>
<version>9.2.10.v20150310</version>
<configuration>
<!-- 配合stopPort使用,监听停止 jetty 程序的标识 -->
<stopKey>stop</stopKey>
<!-- 监听停止 jetty 服务的端口 -->
<stopPort>8088</stopPort>
<!-- http 连接器信息 -->
<httpConnector>
<port>8080</port>
<host>localhost</host>
</httpConnector>
<!-- 热部署扫描间隔时间 -->
<scanIntervalSeconds>1</scanIntervalSeconds>
</configuration>
</plugin>