[ 
https://issues.apache.org/activemq/browse/CAMEL-2546?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=58229#action_58229
 ] 

Claus Ibsen commented on CAMEL-2546:
------------------------------------

trunk: 922808.

Both simple and bean language now supports a OGNL like notation.
Still to do is the shorthanded notation for getter style methods

> Simple language - Add lightweight OGNL to invoke methods on objects
> -------------------------------------------------------------------
>
>                 Key: CAMEL-2546
>                 URL: https://issues.apache.org/activemq/browse/CAMEL-2546
>             Project: Apache Camel
>          Issue Type: New Feature
>          Components: camel-core
>            Reporter: Claus Ibsen
>            Assignee: Claus Ibsen
>             Fix For: 2.3.0
>
>
> Just a very lightweight alternative to using mvel, ognl etc.
> For example if you need to invoke getName() on a User object stored in the 
> body of a Camel Message.
> {code}
> simple("${body.getName}")
> {code}
> But we should support bean properties
> {code}
> simple("${body.name}")
> {code}
> And chained method calls
> {code}
> simple("${body.address.street}")
> simple("${body.address.zip}")
> {code}

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.

Reply via email to