Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
... beanShell("someBeanShellExpression") ... 

Or the something like this in your Spring XML:

Code Block
xml
xml

<filter>
  <language language="beanshell">someBeanShellExpression</language>
  ...
Note
titleBeanShell Issues

You must use BeanShell 2.0b5 or greater. Note that as of 2.0b5 BeanShell cannot compile scripts, which causes most releases of Camel to fail when configured with BeanShell expressions.

For example you could use the beanShell function to create an Predicate in a Message Filter or as an Expression for a Recipient List

...