我是Spring的新手,正在整合一个Spring网络应用程序(不是Spring-boot,这有什么不同?).部署在Tomcat 7服务器上.
该应用程序已启动并正在运行.我的问题是只能通过标准URL访问:
http://mycompany.com:8081/cwing-0.0.3-SNAPSHOT/index.html
以下不起作用:
http://mycompany.com:8081/cwing-0.0.3-SNAPSHOT
http://mycompany.com:8081/cwing-0.0.3-SNAPSHOT/
即使我的web.xml将index.html列为欢迎页面.
该问题的另一个症状是,应用程序中的各种链接都需要指定为相对链接,而不是使用前缀“ /”.
但是,即使这些网址也不是我真正想要的.
我宁愿指定
http://mycompany.com:8081/cwing
并调出index.html.
继Add context path to Spring Boot application之后
我在src / main / resources中创建了一个application.xml文件,其内容如下:
server.contextPath=/cwing
server.port=8081
这行不通. http://mycompany.com:8081/cwing和http://mycompany.com:8081/cwing/index.html一样,显示空白页,服务器上出现404错误.
我肯定错过了什么.要使它正常工作,还需要什么?
更新:根据要求,这是web.xml(删除了无关的详细信息).
<?xml version="1.0"?>
<web-app xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"
version="3.0">
<display-name>cwing</display-name>
<!-- Creates the Spring Container shared by all Servlets and Filters -->
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
<!-- The definition of the Root Spring Container shared by all Servlets
and Filters -->
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>
/WEB-INF/spring/context.xml
/WEB-INF/spring/datasource.xml
/WEB-INF/spring/security.xml
</param-value>
</context-param>
<servlet>
<servlet-name>d</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<init-param>
<param-name>contextConfigLocation</param-name>
<param-value>
/WEB-INF/spring/context.xml
/WEB-INF/spring/datasource.xml
/WEB-INF/spring/security.xml
</param-value>
</init-param>
<load-on-startup>1</load-on-startup>
<async-supported>true</async-supported>
</servlet>
<servlet-mapping>
<servlet-name>d</servlet-name>
<url-pattern>/*</url-pattern>
</servlet-mapping>
<!-- Disables Servlet Container welcome file handling. Needed for compatibility
with Servlet 3.0 and Tomcat 7.0 -->
<welcome-file-list>
<welcome-file>index.html</welcome-file>
</welcome-file-list>
<filter>
<filter-name>springSecurityFilterChain</filter-name>
<filter-class>org.springframework.web.filter.DelegatingFilterProxy</filter-class>
</filter>
<filter-mapping>
<filter-name>springSecurityFilterChain</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
...
</web-app>
解决方法:
这与Spring MVC无关,但与特定服务器无关,默认情况下,Tomcat将您的WAR名称作为上下文根.如果要更改此名称,则始终可以重命名WAR文件,或者我建议更改pom.xml以使用最终名称构建WAR文件,这是执行此操作的方法:
<build>
<finalName>finalName</finalName>
. . .
</build>