Since we're on a major migration process of this website, some component documents here are out of sync right now. In the meantime you may want to look at the early version of the new website
https://camel.apache.org/staging/
We would very much like to receive any feedback on the new site, please join the discussion on the Camel user mailing list.
ScriptAvailable as of Camel 2.16
Is used to execute a script which does not change the message (by default). This is useful when you need to invoke some logic that are not in Java code such as JavaScript, Groovy or any of the other Languages. The message body is not changed (by default) however the scripting context has access to the current Exchange and can essentially change the message or headers directly. But the return value from the script is discarded and not used. If the return value should be used as a changed message body then use Message Translator EIP instead. Using from Java DSLThe route below will read the file contents and validate them against a regular expression. from("file://inbox") .script().groovy("// some groovy code goes here") .to("bean:MyServiceBean.processLine"); Using from Spring DSLAnd from XML its easy as well <route> <from uri="file://inbox"/> <script> <groovy>// some groovy code goes here</groovy> </script> <beanRef ref="myServiceBean" method="processLine"/> </route> <bean id="myServiceBean" class="com.mycompany.MyServiceBean"/> Mind that you can use CDATA in XML if the groovy scrip uses < > etc
<route> <from uri="file://inbox"/> <script> <groovy><![CDATA[ some groovy script here that can be multiple lines and whatnot ]]></groovy> </script> <beanRef ref="myServiceBean" method="processLine"/> </route> <bean id="myServiceBean" class="com.mycompany.MyServiceBean"/> Using external script filesYou can refer to external script files instead of inlining the script. For example to load a groovy script from the classpath you need to prefix the value with resource: as shown: <route> <from uri="file://inbox"/> <script> <groovy>resource:classpath:com/foo/myscript.groovy</groovy> </script> <beanRef ref="myServiceBean" method="processLine"/> </route> <bean id="myServiceBean" class="com.mycompany.MyServiceBean"/> You can also refer to the script from the file system with file: instead of classpath: such as file:/var/myscript.groovy
Using This PatternIf you would like to use this EIP Pattern then please read the Getting Started, you may also find the Architecture useful particularly the description of Endpoint and URIs. Then you could try out some of the Examples first before trying this pattern out. |