Apache Camel条件路由

时间:2012-07-27 15:35:02

标签: java routing cxf apache-camel apache-karaf

我有一项服务,有两个操作。

RegisterUser
UpdateUser

我有一个骆驼溃败:

<camel:route id="myRoute">
    <camel:from uri="cxf:bean:myListenerEndpoint?dataFormat=POJO&amp;synchronous=true" />            
    <camel:bean ref="processor" method="processMessage"/>
    <camel:to uri="xslt:file:resources/service/2.0.0/UserRegistration.xsl"/>
    <camel:to uri="cxf:bean:myTargetEndpoint"/>
</camel:route>

在我的处理器bean中,当我指定:

RegisterUser registerUser = exchange.getIn().getBody(RegisterUser.class);

我得到了注册用户对象。一切正常。 问题是我希望camel有条件地路由我的请求,例如:

如果服务操作是RegisterUser,我想将消息路由到我的特定bean,如果服务操作是UpdateUser,我想将消息路由到另一个bean。

我曾尝试使用camel xPath,但它似乎无法正常工作。

<camel:route id="myRoute">
    <camel:from uri="cxf:bean:myListenerEndpoint?dataFormat=POJO&amp;synchronous=true" />  
    <camel:choice>
        <camel:when>
            <camel:xpath>
                //RegisterUser
            </camel:xpath>
            <camel:bean ref="processor" method="processMessage"/>
            <camel:to uri="xslt:file:resources/service/2.0.0/UserRegistration.xsl"/>
        </camel:when>
    </camel:choice>                        
    <camel:to uri="cxf:bean:myTargetEndpoint"/>
</camel:route>

我正在寻找如何设置骆驼路线到不同的目标,但没有找到任何东西。也许有人知道问题出在哪里?

4 个答案:

答案 0 :(得分:18)

所需操作的信息将在邮件的标题中。

您要查找的标题称为“operationName”

所以这是一个例子:

<camelContext xmlns="http://camel.apache.org/schema/blueprint">
    <route id="example">
        <from uri="cxf:bean:myListenerEndpoint?dataFormat=POJO&amp;synchronous=true" />
        <log message="The expected operation is :: ${headers.operationName}" />
        <choice>
            <when>
                <simple>${headers.operationName} == 'RegisterUser'</simple>
                    <bean ref="processor" method="processMessage"/>
                <to uri="xslt:file:resources/service/2.0.0/UserRegistration.xsl"/>
            </when>
            <when>
                <simple>${headers.operationName} == 'UpdateUser'</simple>
                <!-- Do the update user logic here -->
                <bean ref="processor" method="updateUser" />
            </when>
        </choice>
    <to uri="cxf:bean:myTargetEndpoint"/>
    </route>
</camelContext> 

(注意这个例子是使用apache aries blueprint - 但是除了命名空间之外,它对spring来说是相同的)

答案 1 :(得分:6)

尝试使用camel-simple表达式代替xpath ...

<when><simple>${body} is 'com.RegisterUser'</simple><to uri="..."/></when>

答案 2 :(得分:0)

Spring XML路由 在我的情况下,我使用入境Jetty EP。 我在请求中检查参数。 Invole网址http://localhost:8080/srv?alg=1

    <choice id="_choice1">
    <when id="_when1">
        <simple>${in.header.alg} == '1'</simple>
        <log id="_log10" message="LOG ALG 1"/>
    </when>
    ...
    <otherwise id="_otherwise1">
        <setFaultBody id="_setFaultBody1">
            <constant>Return message about ERROR</constant>
            </setFaultBody>
    </otherwise>
</choice>

答案 3 :(得分:-1)

final CamelContext context = exchange.getContext();
if (isAlive) {
    context.startRoute("table-reader-route");
    log.info("starting dailycase route= " + response);
} else {
    context.stopRoute("table-reader-route");
    log.info("stoping dailycase route= " + response);
}