SimplePage edited by Claus IbsenSimple _expression_ LanguageThe Simple _expression_ Language is a really simple language you can use. Its primarily intended for being a really small and simple language for testing without requiring any new dependencies or knowledge of XPath; so its ideal for testing in camel-core. However for real world use cases you are generally recommended to choose a more expressive and powerful language such as:
The simple language uses ${body} placeholders for complex expressions where the _expression_ contains constant literals. The ${ } placeholders can be omitted if the _expression_ is only the token itself. To get the body of the in message: "body", or "in.body" or "${body}". A complex _expression_ must use ${ } placeholders, such as: "Hello ${in.header.name} how are you?". You can have multiple tokens in the same _expression_: "Hello ${in.header.name} this is ${in.header.me} speaking".
Variables
Operator supportAvailable as of Camel 2.0 To enable it the left value must be enclosed in ${ }. The syntax is: ${leftValue} OP rightValue Where the rightValue can be a String literal enclosed in ' ', null, a constant value or another _expression_ enclosed in ${ }.
And the following operators can be used to group expressions:
Notice: Currently and or or can only be used once in a simple language _expression_. This might change in the future. The syntax for AND is: ${leftValue} OP rightValue and ${leftValue} OP rightValue And the syntax for OR is: ${leftValue} OP rightValue or ${leftValue} OP rightValue Some examples: simple("${in.header.foo} == 'foo'") // ' ' can be omitted simple("${in.header.foo} == foo") // here Camel will type convert '100' into the type of in.header.bar and if its an Integer '100' will also be converter to an Integer simple("${in.header.bar} == '100'") simple("${in.header.bar} == 100") // 100 will be converter to the type of in.header.bar so we can do > comparison simple("${in.header.bar} > 100") // testing for null simple("${in.header.baz} == null") // testing for not null simple("${in.header.baz} != null") And a bit more advanced example where the right value is another _expression_ simple("${in.header.date} == ${date:now:yyyyMMdd}") simple("${in.header.type} == ${bean:orderService?method=getOrderType}") And an example with contains, testing if the title contains the word Camel
simple("${in.header.title} contains 'Camel'")
And an example with regex, testing if the number header is a 4 digit value:
simple("${in.header.number} regex '\d{4}'")
And finally an example if the header equals any of the values in the list. Each element must be separated by comma, and no space around.
simple("${in.header.type} in 'gold,silver'")
And for all the last 3 we also support the negate test using not:
simple("${in.header.type} not in 'gold,silver'")
And you can test for if the type is a certain instance, eg for instance a String
simple("${in.header.type} is 'java.lang.String'")
We have added a shorthand for all java.lang types so you can write it as:
simple("${in.header.type} is String")
Ranges is also supported. The range interval requires numbers and both from and end is inclusive. For instance to test whether a value is between 100 and 199:
simple("${in.header.number} range 100..199")
Notice we use .. in the range without spaces. Its based on the same syntax as Groovy.
Using and / orIf you have two expressions you can combine them with the and or or operator.
simple("${in.header.title} contains 'Camel' and ${in.header.type' == 'gold'")
And of course the or is also supported. The sample example would be:
simple("${in.header.title} contains 'Camel' or ${in.header.type' == 'gold'")
Notice: Currently and or or can only be used once in a simple language _expression_. This might change in the future.
simple("${in.header.title} contains 'Camel' and ${in.header.type' == 'gold' and ${in.header.number} range 100..200")
SamplesIn the Spring XML sample below we filter based on a header value: <from uri="seda:orders"> <filter> <simple>in.header.foo</simple> <to uri="mock:fooOrders"/> </filter> </from> The Simple language can be used for the predicate test above in the Message Filter pattern, where we test if the in message has a foo header (a header with the key foo exists). If the _expression_ evaluates to true then the message is routed to the mock:foo endpoint, otherwise its lost in the deep blue sea The same example in Java DSL: from("seda:orders") .filter().simple("in.header.foo").to("seda:fooOrders"); You can also use the simple language for simple text concatenations such as: from("direct:hello").transform().simple("Hello ${in.header.user} how are you?").to("mock:reply"); Notice that we must use ${ } placeholders in the _expression_ now to let Camel be able to parse it correctly. And this sample uses the date command to output current date. from("direct:hello").transform().simple("The today is ${date:now:yyyyMMdd} and its a great day.").to("mock:reply"); And in the sample below we invoke the bean language to invoke a method on a bean to be included in the returned string: from("direct:order").transform().simple("OrderId: ${bean:orderIdGenerator}").to("mock:reply"); Where orderIdGenerator is the id of the bean registered in the Registry. If using Spring then its the Spring bean id. If we want to declare which method to invoke on the order id generator bean we must prepend .method name such as below where we invoke the generateId method. from("direct:order").transform().simple("OrderId: ${bean:orderIdGenerator.generateId}").to("mock:reply"); And in Camel 2.0 we can use the ?method=methodname option that we are familiar with the Bean component itself: from("direct:order").transform().simple("OrderId: ${bean:orderIdGenerator?method=generateId}").to("mock:reply"); DependenciesThe Bean language is part of camel-core.
Change Notification Preferences
View Online
|
View Change
|
Add Comment
|
- [CONF] Apache Camel > Simple confluence
- [CONF] Apache Camel > Simple confluence
- [CONF] Apache Camel > Simple confluence
- [CONF] Apache Camel > Simple confluence
- [CONF] Apache Camel > Simple confluence
- [CONF] Apache Camel > Simple confluence
- [CONF] Apache Camel > Simple confluence
- [CONF] Apache Camel > Simple confluence
- [CONF] Apache Camel > Simple confluence
- [CONF] Apache Camel > Simple confluence
- [CONF] Apache Camel > Simple confluence
- [CONF] Apache Camel > Simple confluence
- [CONF] Apache Camel > Simple confluence