2012-09-01 35 views
9

私はSpringsource Tools Suite 3を使用しており、インターセプトを実装しようとしています。一致するワイルドカードは厳密ですが、要素の宣言が見つかりません

サーブレットのcontext.xml

<?xml version="1.0" encoding="UTF-8"?> 
<beans:beans xmlns="http://www.springframework.org/schema/mvc" 
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
    xmlns:beans="http://www.springframework.org/schema/beans" 
    xmlns:context="http://www.springframework.org/schema/context" 
    xsi:schemaLocation="http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd 
     http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd 
     http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd"> 

<annotation-driven /> 

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

<beans:bean class="org.springframework.web.servlet.view.InternalResourceViewResolver"> 
    <beans:property name="prefix" value="/WEB-INF/views/" /> 
    <beans:property name="suffix" value=".jsp" /> 
</beans:bean> 

<beans:bean id="authInterceptor" class="com.bank.accounting.authentication.AuthInterceptor" /> 
<beans:bean id="authUrlMapping" class="org.springframework.web.servlet.handler.SimpleUrlHandlerMapping"> 

を予期しない障害が発生Bean定義の解析中:設定問題:要素のBeanDefinitionParserを見つけることができません[リスト]

コードとエラーがコメントされています
<beans:property name="interceptors"> 
     <list> 

一致するワイルドカードは厳密ですが、要素 'リスト'。

  <ref bean="authInterceptor" /> 
     </list> 
    </beans:property> 
    <beans:property name="mappings"> 
     <props> 

マッチングワイルドカードは、厳密であるが、何の宣言は、要素「小道具」は見つかりませんすることができます。

  <prop key="/home">HomeController</prop> 
     </props> 
    </beans:property> 
</beans:bean> 
<beans:bean id="urlMapping" class="org.springframework.web.servlet.handler.SimpleUrlHandlerMapping"> 

ビーン定義の解析中に予期しない障害:構成の問題は:要素のBeanDefinitionParserが見つかりません[小道具]

<beans:property name="mappings"> 
     <props> 

マッチングワイルドカードは、厳密であるがない宣言が要素は見つかりませんことができ'小道具'。

  <prop key="/login">LoginController</prop> 
     </props> 
    </beans:property> 
</beans:bean> 
</beans:beans> 

答えて

33

<list><ref>タグutilnamespaceに属します。

xmlns:util="http://www.springframework.org/schema/util" 
xsi:schemaLocation=" 
    http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-3.0.xsd" 

をそして適切にこれらの宣言の前に付ける:最初にそれを追加します。また、<beans:util>

<util:list> 
    ... 

をしようとします。

+3

+1。私の場合は、schemaLocation宣言がありませんでした。 –