0

我有一个带有多个 .when() 案例的 .choice() 语句。但是,我每次都上传相同的文件,其中 MsgFmtVerNr=2 有时它会转到其他文件,有时它会通过 .when().xpath("/UpsBas/MsgHdr/MsgFmtVerNr = '2'")。我不知道为什么这个语句只在一半的时间内有效。是否有某些原因会直接跳到 .otherwise() 语句?感谢您的帮助。

 .choice()
                .when(body().startsWith(constant("A")))
                    .setHeader(MsgHdr.EVENT_CODE, simple(ErrorCodesLocal.UNSOLICITEDMSG_GIC_BSIS))
                    .beanRef("fromGICRoute", "setMessageHeadersForUnsolicitedMessage(*)")
                    .beanRef("logging", "debug(*, 'Messsage from " + FromGicSourceQueue + " is a unsolicited message')")
                    .multicast().parallelProcessing()
                        .to("direct:unsolicitedMessageToBoss", "direct:unsolicitedMessageToCmods", "direct:unsolicitedMessageToIsps")
                    .endChoice()
                .when(body().contains("<RtgPfl"))
                    .to(RATING_PROFILE_DESTINATION_QUEUE)
                .when().xpath("/UpsBas/MsgHdr/MsgFmtVerNr = '2'")//body().contains("<MsgFmtVerNr>2<"))
                    .to("direct:cv2")
                .otherwise()
                    .to("direct:commercialInvoice")
4

1 回答 1

0

我发现你们中的那些人遇到了类似的问题。我有两个捆绑包链接到我的服务器上的同一个队列,因此一个文件上传会去,正确的捆绑包,而另一个会去不正确的捆绑包。

于 2017-08-28T16:36:44.287 回答