1

我的 MVC 项目在没有 mvc 命名空间的情况下完美运行,但是当添加它时......

<beans xmlns="http://www.springframework.org/schema/beans"
    xmlns:context="http://www.springframework.org/schema/context"
    xmlns:mvc="http://www.springframework.org/schema/mvc"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="
        http://www.springframework.org/schema/beans     
        http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
        http://www.springframework.org/schema/context 
        http://www.springframework.org/schema/context/spring-context-3.0.xsd
        http://www.springframework.org/schema/mvc
        http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd
        ">

    <context:component-scan base-package="com.evgeni.msgdisp.controller" />

    <mvc:resources mapping="/resources/**" location="/resources/" /> 

    <bean id="templateResolver"
        class="org.thymeleaf.templateresolver.ServletContextTemplateResolver">
        <property name="prefix" value="/WEB-INF/pages/" />
        <property name="suffix" value=".html" />
        <property name="templateMode" value="HTML5" />
        <property name="cacheable" value="false" />
    </bean>

    <bean id="templateEngine" class="org.thymeleaf.spring3.SpringTemplateEngine">
        <property name="templateResolver" ref="templateResolver" />
    </bean>

    <bean class="org.thymeleaf.spring3.view.ThymeleafViewResolver">
        <property name="templateEngine" ref="templateEngine" />
        <property name="characterEncoding" value="UTF-8" />
    </bean>

</beans>

我得到 404 并且日志说No handler mapping found for [/node/manage]。jsp也是一样,所以不是Thimeleaf问题。我很确定它与xsd版本有关。我使用 Spring 3.2。

4

2 回答 2

2

通过添加解决

<mvc:annotation-driven/> 

显然默认行为在使用时被覆盖

<mvc:resources mapping="/resources/**" location="/resources/" /> 
于 2013-03-31T19:04:24.800 回答
0

感谢您对“注释”的评论。

使用注释驱动时要小心,两天前我的项目不适用于资源目录,因为我将 spring 3.2.8 与 hibernate 4.2.6 混合在一起。他们使用他自己的注释集。混合这两种技术,在 servlet 配置中使用两个注解标签:

<mvc:annotation-driven/> in controller and views configuration
<mvc:resources mapping=" ...
...

<tx:annotation-driven/> in transacional or hibernate configuration

资源映射仅适用于此标签组合,适用于不同的注释技术。

再见。

于 2014-04-30T14:42:46.400 回答