2011-08-20 17 views
16

を結合させ、このエラー要素の接頭辞「文脈」「コンテキスト:コンポーネント・スキャンは、」私はspring3のMVCに取り組んでいます

org.xml.sax.SAXParseExceptionを思い付いていない:の接頭辞「文脈」要素 "context:component-scan"はバインドされていません。コンテキスト宣言が、あなたはそれを宣言している:あなたはのxmlnsが欠落しているとき

は、ここに私のディスパッチャサーブレットエラーの

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

    <mvc:annotation-driven /> 

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

答えて

20

このような種類付属しています。間違ったコーディングについては、"com.web"パッケージのクラスをチェックしてください。

+1

私は同じエラーを持っているが、私は 'のxmlnsを宣言しました:context'と 'base-package'にエラーがない場合は、このエラーの他の理由を知っていますか?第三者のように質問に答えるために+1: –

+0

nvm、私はタイプミスが判明:) –

-2

spring-configuration.xmlファイルを作成するときには、次の手順に従います。「次へ」をクリックすると、「bean」、「mvc」、「context」を選択できるようになります。 、 'p'.noは、あなたの日食/春のサポートであるデフォルト設定を選択するため、いくつかのチェックボックスを表示します。

おかげで、

1

いつか問題は、名前空間を追加することを忘れています。設定ファイルを作成するウィザードや作成後の名前空間タブで行う必要があります。適切な名前空間を選択します。この場合、コンテキストにする必要があります。

0

ディスパッチャ-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" 
xmlns:p="http://www.springframework.org/schema/p" 
xmlns:aop="http://www.springframework.org/schema/aop" 
xmlns:tx="http://www.springframework.org/schema/tx" 
xmlns:context="http://www.springframework.org/schema/context" 
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd 
http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.5.xsd 
http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.5.xsd 
http://www.springframework.org/schema/jdbc http://www.springframework.org/schema/jdbc/spring-jdbc-4.0.xsd 
http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-4.0.xsd 
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.0.xsd"> 

<context:component-scan base-package="com.Project_name.Controller"></context:component-scan> 
</beans> 
関連する問題