以下のエラーを報告する applicationContext.xml を使用した Maven Web アプリケーションがあります。
この行に複数の注釈が見つかりました: - cvc-complex-type.2.3: 型のコンテンツ タイプが要素のみであるため、要素 'beans' は文字 [子] を持つことはできません。
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: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.xsd
http://www.springframework.org/schema/tx
http://www.springframework.org/schema/tx/spring-tx.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-2.5.xsd">
${build.system.jobscheduler}
</beans>
${build.system.jobscheduler} を削除すると、エラーはなくなります。これは web/pom.xml で次のように宣言されています。
<build.system.jobscheduler><![CDATA[<!-- No job scheduler -->]]></build.system.jobscheduler>
何か案は?