Spring MVC配置URL模式

我尝试配置简单的Controller。

我有:

<servlet>

<servlet-name>mvc-dispatcher</servlet-name>

<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>

<load-on-startup>1</load-on-startup>

</servlet>

<servlet-mapping>

<servlet-name>mvc-dispatcher</servlet-name>

<url-pattern>/index.jsp</url-pattern>

</servlet-mapping>

<bean id="viewResolver"

class="org.springframework.web.servlet.view.InternalResourceViewResolver">

<property name="prefix">

<value>/jsp/</value>

</property>

<property name="suffix">

<value>.jsp</value>

</property>

</bean>

<bean id="urlMapping" class="org.springframework.web.servlet.handler.SimpleUrlHandlerMapping">

<property name="urlMap">

<map>

<entry key="/index.jsp">

<ref bean="mainPage"/>

</entry>

</map>

</property>

</bean>

<bean name="mainPage" class="ru.mypack.TBController" />

这是我的 :

public class TBController extends AbstractController {

@Override

protected ModelAndView handleRequestInternal(HttpServletRequest httpServletRequest, HttpServletResponse httpServletResponse) throws Exception {

System.out.println("It is here");

ModelAndView model = new ModelAndView("index");

return model;

}}

我在Tomcat 6上运行,并且在此配置中(/index.jsp)完美运行!

但是如果我这样改变网址模式

<servlet-mapping>

<servlet-name>mvc-dispatcher</servlet-name>

<url-pattern>*.jsp</url-pattern>

</servlet-mapping>

它返回404访问/index.jsp

我看“就是在这里”控制台,它意味着url-pattern的工作正常,但ModelAndView中没有得到初始化,

奇怪的是,它看起来像他试图访问空资源(铬dysplays我“ HTTP状态404-“)

请帮助我了解发生了什么。.我可能会错过url-pattern规范中的某些内容吗?

感谢Pavel Horal,找到了解决方案。

我只是将web.xml中的url-pattern替换为

<url-pattern>/test/*</url-pattern>

现在,它通过/test/index.jsp进行响应

回答:

Spring正在处理如何定义servlet映射的信息。如果您使用后缀映射(*.something),那么Spring仅使用第一部分(不带后缀)。这意味着您仅/index在您的url模式(不带后缀)中将shuold映射。

Spring的JavaDoc UrlPathHelper#getPathWithinServletMapping更好地描述了映射过程中正在使用的内容:

返回给定请求的servlet映射内的路径,即,请求URL的超出调用servlet的部分,如果整个URL已用于标识servlet,则返回“”。

如果在RequestDispatcher包含中调用,则检测包含请求URL。

例如:servlet映射=“ / test / *”; 请求URI =“ / test / a”->“ / a”。

例如:servlet映射=“ / test”; 请求URI =“ / test”->“”。

例如:servlet映射=“ /*.test”; 请求URI =“ /a.test”->“”。

以上是 Spring MVC配置URL模式 的全部内容, 来源链接: utcz.com/qa/418539.html

回到顶部