如何设置Spring根上下文路径

时间:2015-06-23 14:06:47

标签: spring web-applications contextpath

我是一个Spring新手,我正在组建一个Spring网络应用程序(不是Spring-boot - 这会产生多大的差异?)。部署在Tomcat 7服务器上。

该应用已启动并正在运行。我的问题是只能通过标准网址访问:

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会显示一个空白页面,服务器上出现404错误,http://mycompany.com:8081/cwing/index.html也是如此。

我一定错过了什么。还有什么需要让它工作,因为我希望它工作?

更新:根据要求,这是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>

1 个答案:

答案 0 :(得分:1)

这与Spring MVC无关,但与特定服务器无关,默认情况下,Tomcat将您的WAR名称作为上下文根。如果你想改变它,你总是可以重命名你的WAR文件,或者我建议你改变你的pom.xml来建立你的WAR文件的最终名称,这是如何做到这一点:

<build>
  <finalName>finalName</finalName>
 . . .
</build>