Spring和/ * url模式

时间:2011-10-27 17:23:36

标签: spring-mvc

我们有一个“/ *”的url模式并请求到我们的控制器,但我们总是得到404。 这是我们的web.xml

<servlet>
    <servlet-name>bro</servlet-name>
    <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
    <init-param>
        <param-name>contextConfigLocation</param-name>
        <param-value>classpath:mo/config/mo-spring.xml</param-value>
    </init-param>
    <load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
    <servlet-name>bro</servlet-name>
    <url-pattern>/*</url-pattern>
</servlet-mapping>

MO-spring.xml:          

<bean id="viewResolver" class="org.springframework.web.servlet.view.InternalResourceViewResolver">
    <property name="suffix" value=".jsp"/>
</bean>

<mvc:resources mapping="/css/**" location="/css/" /> 
<mvc:resources mapping="/images/**" location="/images/" /> 
<mvc:resources mapping="/js/**" location="/js/" />
<mvc:resources mapping="/views/" location="/views/" />

控制器的一点点:

@RequestMapping(value="/signon", method=RequestMethod.GET)
public String signon(HttpServletRequest request) {
            ...
    return "/WEB-INF/index";
}

如果我在我的web.xml中使用/ xxx / *作为url-pattern,一切都按预期工作,但我们有一个dojo应用程序,我们真的不想修改它想要与/ *交谈而不是/ XXX / *

1 个答案:

答案 0 :(得分:2)

您有bro作为servlet名称,但引用brio作为server.xml中url映射的servlet名称

如果这不是问题,并且您正在讨论希望您的应用响应http://yourserver/ *而不是http://yourserver/yourcontext/ *,那么您需要将您的webapp部署为服务器的根网址。这是与tomcat Tomcat 6: How to change the ROOT application

中的那种配置有关的问题

编辑:从我的评论中复制 - 如果要将DispatcherServlet映射到webapp中的root,则需要http://static.springsource.org/spring/docs/3.0.x/spring-framework-reference/htmlsingle/spring-framework-reference.html#mvc-default-servlet-handler中提到的default-servlet配置