Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Added note about the 'bean' attribute being deprecated.

...

Code Block
langxml
<route>
  <from uri="activemq:topic:OrdersTopic"/>
  <filter>
    <method beanref="myBean" method="isGoldCustomer"/>
    <to uri="activemq:BigSpendersQueue"/>
  </filter>
</route>
Tip
titleBean attribute now deprecated

Note, the bean attribute of the method expression element is now deprecated. You should now make use of ref attribute instead.

Writing the expression bean

...