0

このspring-wsチュートリアルのステップバイステップ(基本的にはコピーして貼り付け)を実行していて、私はちょうど以下のように春-WS-servlet.xmlSpring WSチュートリアル:要素 'context:component-scan'エラーで宣言が見つかりません

<?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:context="http://www.springframework.org/schema/context" 
    xmlns:sws="http://www.springframework.org/schema/web-services" 
    xsi:schemaLocation="http://www.springframework.org/schema/beans 
    http://www.springframework.org/schema/beans/spring-beans-3.0.xsd 
    http://www.springframework.org/schema/web-services 
    http://www.springframework.org/schema/web-services/web-services-2.0.xsd"> 

    <context:component-scan base-package="com.mycompany.hr"/> 

    <sws:annotation-driven/> 

</beans> 

次の行を追加:

<context:component-scan base-package="com.mycompany.hr"/> 

をSTSは私であることを叫んで開始させます

cvc-complex-type.2.4.c: The matching wildcard is strict, 
but no declarationcan be found for element 'context:component-scan'. 

答えて

1

あなたが追加する必要があり、私は続行する方法がわからない

..: http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd

schemaLocationに

を追加します。

+0

ああ、コピーや貼り付けは、特定の時間に複雑になる可能性があります...ありがとう! – Gevorg

関連する問題