10

我有一个有两个操作的服务。

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);

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

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

我曾尝试使用骆驼 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

4 回答 4

19

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

您要查找的标头称为“操作名称”

所以这是一个例子:

<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 蓝图 - 但对于 spring,除了命名空间之外,它将是相同的)

于 2012-07-27T20:45:40.100 回答
6

尝试为此使用骆驼简单表达式而不是xpath...

<when><simple>${body} is 'com.RegisterUser'</simple><to uri="..."/></when>
于 2012-07-27T18:31:13.513 回答
0

Spring XML route 就我而言,我使用入站 Jetty EP。我检查请求中的参数。输入 URL 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>
于 2018-05-27T18:32:29.163 回答
-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);
}
于 2019-11-25T12:21:27.723 回答