2016-06-12 13 views
2

にバインドされていない要素型「豆」に関連した属性「のxsi:schemaLocationの」の接頭辞「XSI」なぜ私はこのエラーが生じています

[致命的なエラー]:属性の接頭辞「XSI」要素タイプ "beans"に関連付けられた "xsi:schemaLocation"はバインドされていません。私のXMLファイルのヘッダで

<beans xmlns="http://www.springframework.org/schema/beans" 
     xmlns:p="http://www.springframework.org/schema/p" 
     xmlns:tx="http://www.springframework.org/schema/tx" 
     xsi:schemaLocation="http://www.springframework.org/schema/beans  
     http://www.springframework.org/schema/beans/spring-beans.xsd 
     http://www.springframework.org/schema/tx 
     http://www.springframework.org/schema/tx/spring-tx.xsd"> 

エラーが私のXML宣言の最後の行です。 このエラーを削除するにはどうすればよいですか?

答えて

4

単にそのエラーを解消するために、あなたのbean要素に

xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 

を追加します。

+0

私のためにも機能します! –

関連する問題