java jetty 啟動設定根路徑
在java學習過程中,使用jetty來啟動web應用來測試程式,預設啟動時的訪問路徑為: http://localhost:8080/{專案名}/檔案路徑,
現需要將訪問路徑設定為:http://localhost:8080/檔案路徑。
此時可以通過設定pom檔案的 <build> 節點來完成,通過在<build> 節點裡新增 jetty 外掛,並設定 contextPath 節點的路徑即可,見下文(訪問埠也可以在此配置)
<plugin><groupId>org.mortbay.jetty</groupId>
<artifactId>maven-jetty-plugin</artifactId>
<version>6.1.10</version>
<configuration>
<contextPath>/</contextPath>
<connectors>
<connector implementation="org.eclipse.jetty.server.nio.SelectChannelConnector">
<port>9998</port>
<maxIdleTime>60000</maxIdleTime>
</connector>
</connectors>
<scanIntervalSeconds>2</scanIntervalSeconds>
</configuration>
</plugin>