1

私は次のことを試みてきました:

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


<bean id="dateBean" class="org.apache.velocity.tools.generic.NumberTool"/>

<bean id="service" class="package.xyz">
    <property name="toolMap">
    <util:map map-class="java.util.HashMap">
        <entry key="number"><ref:bean="dateBean"/></entry>
    </util:map>
    </property>
</bean>

ご覧のとおり、これはVelocityToolConfiguration用です。

この例外が発生します:

Caused by: org.xml.sax.SAXParseException: cvc-complex-type.2.4.c: The matching wildcard is strict, but no declaration can be found for element 'util:map'.

cvc-complex-type.2.4.c: The matching wildcard is strict, but no declaration can be   found for element 'util:map'.

誰かがこの問題を解決するのを手伝ってもらえますか?

更新:XML宣言を追加しました。

4

2 に答える 2

2

XMLヘッダーは次のようになります(適切なヘッダー宣言に注意してください)。

<beans xmlns="http://www.springframework.org/schema/beans"
   xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
   xmlns:util="http://www.springframework.org/schema/util"
   xsi:schemaLocation="
       http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
       http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-3.0.xsd">

<!-- ... -->

C.2.2で説明されているようにutilスキーマ。

于 2012-05-17T20:10:50.000 に答える
2

<util:map>このユースケースには使用しないでください。これは実際にはのエイリアスですMapFactoryBean<map>代わりにクラシック要素を使用すると、機能するはずです。

于 2012-05-17T20:17:48.203 に答える