Maven的jetty外掛配置
阿新 • • 發佈:2019-01-27
pom.xml 的主要配置
<plugin> <groupId>org.mortbay.jetty</groupId> <artifactId>jetty-maven-plugin</artifactId> <version>8.1.8.v20121106</version> <configuration> <webAppConfig> <contextPath>/</contextPath><!-- web專案根路徑 --> </webAppConfig> <connectors> <connector implementation="org.eclipse.jetty.server.nio.SelectChannelConnector"> <port>9080</port><!-- 訪問埠,預設8080 --> <maxIdleTime>60000</maxIdleTime> </connector> </connectors> <systemProperties> <systemProperty> <!--一般伺服器預設是ISO-8859-1編碼--> <name>org.eclipse.jetty.util.URI.charset</name> <value>ISO-8859-1</value> </systemProperty> </systemProperties> <stopPort>9999</stopPort> </configuration> </plugin>