0

そうしようとすると、次のようになります。

Caused by: org.springframework.beans.factory.xml.XmlBeanDefinitionStoreException: Line 35 in XML document from class path resource [META-INF/spring/camel-context.xml] is invalid; nested exception is org.xml.sax.SAXParseException; lineNumber: 35; columnNumber: 55; cvc-complex-type.2.4.a: Invalid content was found starting with element 'routeContextRef'. One of '{"http://camel.apache.org/schema/spring":redeliveryPolicyProfile, "http://camel.apache.org/schema/spring":onException, "http://camel.apache.org/schema/spring":onCompletion, "http://camel.apache.org/schema/spring":intercept, "http://camel.apache.org/schema/spring":interceptFrom, "http://camel.apache.org/schema/spring":interceptSendToEndpoint, "http://camel.apache.org/schema/spring":route}' is expected.

スキーマを確認すると、dataFormats 要素は routeContextRef 要素に従う必要があるため、dataFormat を使用できる routeContext 内でルートを定義することは明らかに不可能です。

routeContext の組織的アプローチを放棄して、すべてのルートを 1 つのファイルに入れる必要がありますか?

これは、ラクダのコンテキストの少しお辞儀をしたバージョンです。cContext で json を使用できるようにする必要があります。

<?xml version="1.0" ?>
<beans
   xmlns="http://www.springframework.org/schema/beans"  
   xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
   xsi:schemaLocation="
 http://camel.apache.org/schema/spring http://camel.apache.org/schema/spring/camel-spring.xsd
 http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd">

<bean id="jms" class="org.apache.camel.component.jms.JmsComponent">
    <property name="connectionFactory">
        <bean class="org.apache.activemq.ActiveMQConnectionFactory">
            <property name="brokerURL" value="tcp://localhost:61616"/>
        </bean>
    </property>
</bean>

<import resource="classBeanDefs.xml"/>
<import resource="a.xml"/>
<import resource="b.xml"/>
<import resource="c.xml"/>

<camelContext id="camel" trace="false" xmlns="http://camel.apache.org/schema/spring">
    <propertyPlaceholder id="properties"
                         location="classpath:route.properties"
                         xmlns="http://camel.apache.org/schema/spring"/>

    <dataFormats>
        <json id="json" library="Jackson"/>
    </dataFormats>

    <routeContextRef ref="aContext"/>
    <routeContextRef ref="bContext"/>
    <routeContextRef ref="cContext"/>
</camelContext>

</beans>

dataFormats 要素を routeContext に追加しようとすると、同様のエラーが発生しますが、スキーマが明らかに承認していません。

4

1 に答える 1

4

dataFormatsのに routeContextRef が必要です。

于 2013-05-25T05:23:52.803 に答える