jetty去掉项目名称访问
对于web项目,访问路径是否包含项目名称等修改访问路径的配置方式:
我所使用的是maven进行管理,只需要在pom.xml中进行如下配置
<!-- jetty插件 jetty:run-->
<build>
<finalName>AutotestPlatform</finalName>
<plugins>
<plugin>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-maven-plugin</artifactId>
<version>9.2.7.v20150116</version>
<configuration>
<scanIntervalSeconds>3</scanIntervalSeconds>
<webApp>
<contextPath>/AutotestPlatform/</contextPath>
</webApp>
<httpConnector>
<port>80</port>
</httpConnector>
<reload>automatic</reload>
</configuration>
</plugin>
</plugins>
</build>
主要修改配置:
<webAppConfig>
<contextPath>/</contextPath>
</webAppConfig>
这样,访问是localhost/ 上面是localhost/AutotestPlatform/
相关推荐
smallwhale 2011-07-13
HatsuneMiku 2011-06-19
stoneechogx 2019-10-23
积跬步以至千里 2016-07-11
CSDNMrWang 2011-05-19
码路心路知行合一 2011-11-18
易鲸捷大数据库 2015-01-23
xggnoh 2013-05-10
wangteng 2012-09-16
tengmuxin 2012-08-24
bgylde 2012-05-21
dangzhangjing 2011-08-30
vallenlsl 2010-11-09
TangCuYu 2013-06-26
wanchaopeng 2019-06-21
87901735 2019-05-29