Ошибка после переезда: не найдено ни одного объявления для элемента 'mvc: annotation-driven' - PullRequest
0 голосов
/ 26 января 2012

У меня есть dispatcher-servlet.xml и applicationContext.xml.

Я занимался рефакторингом и переехал

<mvc:annotation-driven/>
<context:component-scan base-package="com.xxx"/>

из dispatcher-servlet.xml в applicationContext.xml.

Теперь я получаю эту ошибку:

2012-01-26 10:34:36.434:WARN::Nested in org.springframework.beans.factory.xml.XmlBeanDefinitionStoreException: Line 11 in XML document from ServletContext resource [/WEB-INF/applicationContext.xml] is invalid; nested exception is org.xml.sax.SAXParseException: cvc-complex-type.2.4.c: The matching wildcard is strict, but no declaration can be found for element 'context:component-scan'.:
org.xml.sax.SAXParseException: cvc-complex-type.2.4.c: The matching wildcard is strict, but no declaration can be found for element 'context:component-scan'.

Мое applicationContext.xml выглядит так:

    <?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xmlns:p="http://www.springframework.org/schema/p"
       xmlns:ehcache="http://ehcache-spring-annotations.googlecode.com/svn/schema/ehcache-spring"
       xsi:schemaLocation="
            http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
            http://ehcache-spring-annotations.googlecode.com/svn/schema/ehcache-spring http://ehcache-spring-annotations.googlecode.com/svn/schema/ehcache-spring/ehcache-spring-1.2.xsd"
       xmlns:context="http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd"
        >

    <mvc:annotation-driven/>
    <context:component-scan base-package="com.xxx"/>

    <bean id="templateErrorListener"
          class="com.stringtemplate.log.Slf4jStringTemplateErrorListener"/>

    <bean id="ehCacheManager" class="org.springframework.cache.ehcache.EhCacheManagerFactoryBean"
          p:config-location="/WEB-INF/ehcache.xml"/>

    <ehcache:annotation-driven cache-manager="ehCacheManager"/>

</beans>

и мой dispatcher-servlet.xml выглядит так:

<?xml version="1.0" encoding="UTF-8"?>

<beans xmlns="http://www.springframework.org/schema/beans"
       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">

    <bean class="org.springframework.web.servlet.view.ContentNegotiatingViewResolver">
        <property name="order" value="1"/>
        <property name="mediaTypes">
            <map>
                <entry key="json" value="application/json"/>
            </map>
        </property>
        <property name="defaultViews">
            <list>
                <bean class="org.springframework.web.servlet.view.json.MappingJacksonJsonView"/>
            </list>
        </property>
        <property name="ignoreAcceptHeader" value="true"/>
    </bean>

    <bean class="com.stringtemplate.StringTemplateViewResolver">
        <property name="templateErrorListener" ref="templateErrorListener"/>
        <property name="templateRoot" value="/WEB-INF/templates/"/>
        <property name="order" value="2"/>
    </bean>
    <!-- Resolves view names to protected .jsp resources within the /WEB-INF/views directory -->
    <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
        <property name="order" value="3"/>
        <property name="prefix" value="/WEB-INF/views/"/>
        <property name="suffix" value=".jsp"/>
    </bean>

    <bean class="org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter">
        <property name="messageConverters">
            <list>
                <ref bean="formHttpMessageConverter"/>
                <ref bean="stringHttpMessageConverter"/>
            </list>
        </property>
    </bean>

    <bean id="formHttpMessageConverter "
          class="org.springframework.http.converter.FormHttpMessageConverter "/>
    <bean id="stringHttpMessageConverter "
          class="org.springframework.http.converter.StringHttpMessageConverter "/>

    <bean id="restTemplate" class="org.springframework.web.client.RestTemplate"/>

    <bean id="applicationProperties" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
        <property name="locations">
            <list>
                <value>classpath:${systemTargetEnv}/app.properties</value>
                <value>classpath:/build.properties</value>
            </list>
        </property>
        <property name="systemPropertiesModeName">
            <value>SYSTEM_PROPERTIES_MODE_OVERRIDE</value>
        </property>
    </bean>
</beans>

1 Ответ

7 голосов
/ 26 января 2012

Я провел некоторый рефакторинг и переместил <mvc:annotation-driven/> с dispatcher-servlet.xml на applicationContext.xml.

Ты не хочешь этого делать. <mvc:annotation-driven/> предназначен для включения контроллеров MVC в стиле аннотаций, и эти контроллеры должны находиться в dispatcher-servlet.xml. Ввод <mvc:annotation-driven/> в applicationContext.xml не имеет смысла, он не будет иметь никакого значимого эффекта.

Вероятно, мне следует ответить на вопрос, и ответ таков: пока вы объявили пространство имен mvc, вы не сказали Spring, где найти схему для него. Добавить

http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc.xsd

в атрибут schemaLocation в applicationContext.xml

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...