Details
-
New Feature
-
Status: Resolved
-
Minor
-
Resolution: Won't Fix
-
None
-
Unknown
Description
It would be nice to have a nice dsl set up a camel context in groovy similar to what it is possible with Spring or Blueprint DSL, something like
context { restConfiguration { .... } registry { bind 'myKey', 'myValue' } beans { bean('myProcessor') { exchange -> exchange.in.body = 'hello' } } from(t'imer:tick') .to('log:end') }