7

我想将 spring mvc 控制器映射到 root ( /**) 路径(而不是子文件夹,例如“/something”),同时使用mvc:resources(打开另一种方法)进行异常。

这应该是该框架的基础知识,但显然是一个非常复杂的问题。

app-servlet.xml有这些明显的映射异常:

<mvc:resources mapping="/favicon.ico" location="/favicon.ico" />
<mvc:resources mapping="/robots.txt" location="/robots.txt" />

我有这个控制器:

import java.util.Date;

import javax.servlet.http.HttpServletRequest;

import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;

@Controller
@RequestMapping("/**")
public class MainController {

    @RequestMapping(method = RequestMethod.GET)
    public String service(final HttpServletRequest request) {
        final String servlet_path = request.getServletPath();
        System.out.println(String.format("%s %s", new Date().toString(), servlet_path));
        return "test";
    }
}

现在,当我点击“/”或“/test”或“/test/page”时,我会得到如下输出:

Fri Aug 03 00:22:12 IDT 2012 /
Fri Aug 03 00:22:13 IDT 2012 /favicon.ico

.. 看?即使它被明确排除service(),也被要求!/favicon.ico

现在我猜对 XML 有一些“优先级” @Controller,但是,我如何使排除工作?

一个简单的要求 - 将网站放在“/”上。

PS这个答案回答了一个非常相似的问题。

另一个注意事项:这个问题与tomcat上下文无关。

4

2 回答 2

8

我想澄清一下,不是重写<mvc:annotation-driven/>一个可以更改处理程序指令的声明顺序:

<mvc:resources mapping="/favicon.ico" location="/favicon.ico" order="0"/>
<mvc:resources mapping="/robots.txt" location="/robots.txt" order="0"/>
<mvc:annotation-driven/>
于 2012-10-22T21:07:27.897 回答
7

这里的问题是,与注册的 HandlerMapping 相比,注册的底层HandlerMapping<mvc:resources的优先级非常低<mvc:annotation-driven/>。如果您的要求只是让某些东西响应“/”,那么更好的方法可能是使用不同的@RequestMapping,/**而不是说拥有它/home并按照以下方式定义一些东西:

<mvc:view-controller path="/" view-name="home" />

如果这不起作用,唯一的其他选择是降低底层 handlerMapping 的优先级<mvc:resources,这可以通过显式定义 HandlerMapping 来完成 - 有点复杂但可以完成。

更新 这里是一个可能的配置:

先试试这个:

<mvc:resources mapping="/favicon.ico" location="/favicon.ico" order="0"/>
<mvc:resources mapping="/robots.txt" location="/robots.txt" order="0"/>

如果仅此一项不起作用,<mvc:annotation-driven/>请在 Spring 3.1.x 中更改为以下内容:

<bean name="handlerAdapter" class="org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter">
    <property name="webBindingInitializer">
        <bean class="org.springframework.web.bind.support.ConfigurableWebBindingInitializer">
            <property name="conversionService" ref="conversionService"></property>
            <property name="validator">
                <bean class="org.springframework.validation.beanvalidation.LocalValidatorFactoryBean">
                    <property name="providerClass" value="org.hibernate.validator.HibernateValidator"></property>
                </bean>
            </property>
        </bean>
    </property>
    <property name="messageConverters">
        <list>
            <bean class="org.springframework.http.converter.ByteArrayHttpMessageConverter"></bean>
            <bean class="org.springframework.http.converter.StringHttpMessageConverter"></bean>
            <bean class="org.springframework.http.converter.ResourceHttpMessageConverter"></bean>
            <bean class="org.springframework.http.converter.xml.SourceHttpMessageConverter"></bean>
            <bean class="org.springframework.http.converter.xml.XmlAwareFormHttpMessageConverter"></bean>
            <bean class="org.springframework.http.converter.xml.Jaxb2RootElementHttpMessageConverter"></bean>
            <bean class="org.springframework.http.converter.json.MappingJacksonHttpMessageConverter"></bean>
        </list>
    </property>
</bean>

<bean name="handlerMapping" class="org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping">
    <property name="order" value="2"></property>
</bean>
于 2012-08-02T22:13:23.197 回答