我是Spring的新手,我知道这是一个新手问题,但我没有在网上找到解决方案。
我正在开发应用程序,我必须将所有请求从base重定向到index(例如mysite.com/必须重定向到mysite.com/index)。
我已经按照这个完成了这个:
我创建了BaseController类并声明了/的映射。
以下是代码:
/**
* Index.
*
* @return the string
* @throws IOException
*/
@RequestMapping(method = RequestMethod.POST, value = "/")
public void index(HttpServletResponse response) throws IOException {
response.sendRedirect("/index");
}
它适用于格式请求:mysite.com/appname/
并重定向到mysite.com/index
,但在这种情况下,我得到404,因为它适用于mysite.com/appname/index
。
我知道这与设置有关,但我不知道是什么。
这是我的web.xml:
<?xml version="1.0" encoding="UTF-8"?>
<web-app version="2.5" 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_2_5.xsd">
<!-- 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/root-context.xml</param-value>
</context-param>
<!-- Creates the Spring Container shared by all Servlets and Filters -->
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
<!-- Processes application requests -->
<servlet>
<servlet-name>appServlet</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<init-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/spring/appServlet/servlet-context.xml</param-value>
</init-param>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>appServlet</servlet-name>
<url-pattern>/</url-pattern>
</servlet-mapping>
</web-app>
请注意,所有功能在mysite.com/appname/index
上都有效,但我需要以下格式:mysite.com/index
。
如果您需要一些额外的信息,我会发布
请问有人帮帮我吗?谢谢。
答案 0 :(得分:0)
也许我误解了你的问题,但你说过
请注意,所有功能都在
mysite.com/appname/index
上有效,但我需要 格式如下:mysite.com/index
。
/appname
部分不是Spring配置。它是一个Servlet容器配置,称为上下文路径。
根据您的Servlet容器,您可以更改每个Web应用程序的上下文路径。在这种情况下,您可以将其设置为/
。
对于Tomcat,您将找到如何更改它here。