Script

The Script EIP is used for executing a coding script.

image

This is useful when you need to invoke some logic not in Java code such as JavaScript, Groovy or any of the other Languages.

The returned value from the script is discarded and not used. If the returned value should be set as the new message body, then use the Message Translator EIP instead.

Options

The Script eip supports 1 options, which are listed below.

Name Description Default Type

description

Sets the description of this node.

String

disabled

Whether to disable this EIP from the route during build time. Once an EIP has been disabled then it cannot be enabled later at runtime.

false

Boolean

expression

Required Expression to return the transformed message body (the new message body to use).

ExpressionDefinition

Using Script EIP

The route below will read the file contents and call a groovy script

Java
from("file:inbox")
  .script().groovy("some groovy code goes here")
  .to("bean:myServiceBean.processLine");
XML
<route>
  <from uri="file:inbox"/>
  <script>
    <groovy>some groovy code goes here</groovy>
  </script>
  <to uri="bean:myServiceBean.processLine"/>
</route>

Mind that you can use CDATA if the script uses < > etc:

<route>
  <from uri="file://inbox"/>
  <script>
    <groovy><![CDATA[ some groovy script here that can be multiple lines and whatnot ]]></groovy>
  </script>
  <to uri="bean:myServiceBean.processLine"/>
</route>

Scripting Context

The scripting context has access to the current Exchange and can essentially change the message or headers directly.

Using external script files

You 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>
  <to uri="bean:myServiceBean.processLine"/>
</route>

You can also refer to the script from the file system with file: instead of classpath: such as file:/var/myscript.groovy