我必须写多个如果条件在 Camel 和我需要帮助去周围。
if(token is NULL)
if(condition is NULL)
if(Dates does not match)
Then execute this...
我想做的是
.choice
.when(token is NULL)
.when(condition is NULL)
.when(Dates does not match)
.log(update DB)
.endchoice()
这不起作用..请帮助
我必须写多个如果条件在 Camel 和我需要帮助去周围。
if(token is NULL)
if(condition is NULL)
if(Dates does not match)
Then execute this...
我想做的是
.choice
.when(token is NULL)
.when(condition is NULL)
.when(Dates does not match)
.log(update DB)
.endchoice()
这不起作用..请帮助
3条答案
按热度按时间eit6fx6z1#
两个条件:
合并这些条件:
然后在 Camel :
k7fdbhmy2#
最好的方法是使用
Predicate
s。你可以定义
Predicate
为私有字段,如果你正在使用Java DSL,通过使用表达式构建器,来构建多个条件,然后在你的when()
中使用 predicate ,你的路由会看起来更清晰和更容易阅读。nfeuvbwi3#
您需要在单个when中执行此操作,并使用和
&&
有多种方法可以做到这一点。
如果使用Java代码,则可以将多个 predicate 附加在一起:http://www.davsclaus.com/2009/02/apache-camel-and-using-compound.html