Java

Evaluates a Java (Java compiled once at runtime) expression

What’s inside

Please refer to the above links for usage and configuration details.

Maven coordinates

<dependency>
    <groupId>org.apache.camel.springboot</groupId>
    <artifactId>camel-joor-starter</artifactId>
</dependency>

Spring Boot Auto-Configuration

The starter supports 8 options, which are listed below.

Name Description Default Type

camel.language.java.enabled

Whether to enable auto configuration of the java language. This is enabled by default.

Boolean

camel.language.java.pre-compile

Whether the expression should be pre compiled once during initialization phase. If this is turned off, then the expression is reloaded and compiled on each evaluation.

true

Boolean

camel.language.java.single-quotes

Whether single quotes can be used as replacement for double quotes. This is convenient when you need to work with strings inside strings.

true

Boolean

camel.language.java.trim

Whether to trim the source code to remove leading and trailing whitespaces and line breaks.

true

Boolean

camel.language.joor.enabled

Whether to enable auto configuration of the joor language. This is enabled by default.

Boolean

camel.language.joor.pre-compile

Whether the expression should be pre compiled once during initialization phase. If this is turned off, then the expression is reloaded and compiled on each evaluation.

true

Boolean

camel.language.joor.single-quotes

Whether single quotes can be used as replacement for double quotes. This is convenient when you need to work with strings inside strings.

true

Boolean

camel.language.joor.trim

Whether to trim the source code to remove leading and trailing whitespaces and line breaks.

true

Boolean