我有一个带有多个 .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")