0

以下のエラーを報告する 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>

何か案は?

4

1 に答える 1

0

このエラーは、xml スキーマが原因で発生します。

http://www.springframework.org/schema/beans/spring-beans.xsd

<beans>要素内でそのような式を許可しません。

${build.system.jobscheduler}の内容がわかりません。

クラス名の場合は、次のようなものを試すことができます。

<beans>
   <bean id="jobschedulerHolder" class="myapp.JobSchedulerHolder">
   <property name="jobschedulerClassName" value="${build.system.jobscheduler}" />
</beans>
于 2012-09-13T11:45:06.540 に答える