設定 maven jetty的根路徑

方健發表於2014-11-20

參考:http://stackoverflow.com/questions/8685970/setting-root-context-path-with-maven-jetty-plugin
背景:用mvnDebug jetty:run除錯伺服器時用到。

<plugin>
 <groupId>org.mortbay.jetty</groupId>
 <artifactId>jetty-maven-plugin</artifactId>
 <version>8.1.7.v20120910</version>
 <configuration>       
   <webApp>
    <contextPath>/path</contextPath>
  </webApp>
 </configuration>
</plugin>

相關文章