如何为基于注释的spring web应用设置上下文根?以下链接中的示例应用程序, https://github.com/bkielczewski/example-spring-mvc-initializer
在浏览器中我可以访问它,
http://localhost:8080/
我想改变它,
http://localhost:8080/spring
谢谢, Charith
答案 0 :(得分:1)
更新您的pom.xml以包含网络应用配置。见下文
<plugin>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-maven-plugin</artifactId>
<version>9.0.6.v20130930</version>
<configuration>
<webApp>
<contextPath>/spring</contextPath>
</webApp>
<httpConnector>
<port>8080</port>
<host>localhost</host>
</httpConnector>
<scanIntervalSeconds>10</scanIntervalSeconds>
</configuration>
</plugin>