在开发的项目软件上线之前一般需要去掉项目的名称,之前用的Tomcat 网上有很多的资料可以自行查找,然而今天就把jetty下的配置写一下
我所使用的是maven进行管理,只需要在pom.xml中进行如下配置
详细配置:
<build>
<finalName>maven02</finalName>
<plugins>
<plugin>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-maven-plugin</artifactId>
<version>9.2.8.v20150217</version>
<configuration>
<httpConnector>
<port>80</port>
</httpConnector>
<webAppConfig>
<contextPath>/contextPath>
</webAppConfig>
<webDefaultXml>src/main/resources/webdefault.xml</webDefaultXml>
<stopKey>shutdown</stopKey>
<stopPort>9966</stopPort>
</configuration>
</plugin>
</plugins>
</build>
主要配置:
<webAppConfig>
<contextPath>/contextPath>
</webAppConfig>
这样就可以了。
如果对你有帮助不要忘了点赞啊