在web项目的pom.xml文件中添加jetty-maven-plugin插件配置,如下:
<plugin>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-maven-plugin</artifactId>
<version>9.4.2.v20170220</version>
<configuration>
<scanIntervalSeconds>1</scanIntervalSeconds>
<!-- 定义了一个Server -->
<!-- <httpConnector>
<port>80</port>
<idleTimeout>60000</idleTimeout>
</httpConnector> -->
<!-- 定义了第二个Server -->
<jettyXml>${project.basedir}/profile/dev/jetty.xml,${project.basedir}/profile/dev/jetty-http.xml,${project.basedir}/profile/dev/jetty-ssl.xml,${project.basedir}/profile/dev/jetty-https.xml</jettyXml>
</configuration>
</plugin>
此配置定义了两个http server,如注释,一个是用httpConnector元素定义的,另一个是加载的jetty-http.xml文件定义的。
如上工作做完之后,就可以配置eclipse maven run部分了,如下图:
之后,就可以运行了,如图:
因为配置的有Https Connector,因此还启动了https server。