Ошибка в ресурсе mvc для вставки css - PullRequest
1 голос
/ 11 апреля 2019

Отображается ошибка как:

Multiple annotations found at this line:
  - Cannot locate BeanDefinitionParser for element [resources]
  - Configuration problem: Cannot locate BeanDefinitionParser for element [resources] Offending resource: 
   file

Я использую Spring 3.0.1 и Hibernate 4. Даже пробовал с другими версиями Spring, но все равно показывает то же самое.

   <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"
        xmlns:security="http://www.springframework.org/schema/security"
         xmlns:tx="http://www.springframework.org/schema/tx"
        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/tx 
       http://www.springframework.org/schema/tx/spring-tx-3.0.xsd
       http://www.springframework.org/schema/tool
       http://www.springframework.org/schema/tool/spring-tool-3.0.xsd
       http://www.springframework.org/schema/mvc
       https://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd">


        <context:component-scan
            base-package="Model,Controller,Dto,Service,Dao" />

         <bean
            class="org.springframework.web.servlet.view.InternalResourceViewResolver"
            id="jspViewResolver">
            <property name="viewClass"
                value="org.springframework.web.servlet.view.JstlView"></property>
            <property name="prefix" value="/WEB-INF/jsp/"></property>
            <property name="suffix" value=".jsp"></property>

        </bean>  





    <mvc:interceptors>
    <mvc:interceptor>
      <mvc:mapping path="/**"/>
      <bean id="localeChangeInterceptor"
       class="org.springframework.web.servlet.i18n.LocaleChangeInterceptor">
       <property name="paramName" value="locale" />
      </bean>
    </mvc:interceptor>

     </mvc:interceptors>




          <mvc:annotation-driven></mvc:annotation-driven>
      <mvc:resources location="/resources/" mapping="/resources/**" />

    </beans>

Мой код пружинного сервлета, как показано на рисунке

enter image description here

, прикрепил здесь код

Код прикрепленпожалуйста, посмотрите на него и попробуйте помочь решить эту проблему, которую я пробовал с весны 4, и он показывает то же самое

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