<camelContext xmlns="http://camel.apache.org/schema/blueprint">
<route>
<from uri="direct:start"/>
<to uri="{`{env:SOMENAME}`}"/>
<to uri="{`{sys:MyJvmPropertyName}`}"/>
</route>
</camelContext>
<camelContext xmlns="http://camel.apache.org/schema/blueprint">
<route>
<from uri="direct:start"/>
<to uri="{`{env:SOMENAME}`}"/>
<to uri="{`{sys:MyJvmPropertyName}`}"/>
</route>
</camelContext>
Copy to Clipboard
Copied!
Toggle word wrap
Toggle overflow
<camelContext xmlns="http://camel.apache.org/schema/blueprint">
<route>
<from uri="direct:start"/>
<to uri="{`{env:SOMENAME:log:foo}`}"/>
<to uri="{`{sys:MyJvmPropertyName:log:bar}`}"/>
</route>
</camelContext>
<camelContext xmlns="http://camel.apache.org/schema/blueprint">
<route>
<from uri="direct:start"/>
<to uri="{`{env:SOMENAME:log:foo}`}"/>
<to uri="{`{sys:MyJvmPropertyName:log:bar}`}"/>
</route>
</camelContext>
Copy to Clipboard
Copied!
Toggle word wrap
Toggle overflow
export $FOO_SERVICE_HOST=myserver
export $FOO_SERVICE_PORT=8888
export $FOO_SERVICE_HOST=myserver
export $FOO_SERVICE_PORT=8888
Copy to Clipboard
Copied!
Toggle word wrap
Toggle overflow
<camelContext xmlns="http://camel.apache.org/schema/blueprint">
<route>
<from uri="direct:start"/>
<to uri="http://{`{service:FOO}`}/myapp"/>
</route>
</camelContext>
<camelContext xmlns="http://camel.apache.org/schema/blueprint">
<route>
<from uri="direct:start"/>
<to uri="http://{`{service:FOO}`}/myapp"/>
</route>
</camelContext>
Copy to Clipboard
Copied!
Toggle word wrap
Toggle overflow
<camelContext xmlns="http://camel.apache.org/schema/blueprint">
<route>
<from uri="direct:start"/>
<to uri="http://{`{service:FOO:localhost:8080}`}/myapp"/>
</route>
</camelContext>
<camelContext xmlns="http://camel.apache.org/schema/blueprint">
<route>
<from uri="direct:start"/>
<to uri="http://{`{service:FOO:localhost:8080}`}/myapp"/>
</route>
</camelContext>
Copy to Clipboard
Copied!
Toggle word wrap
Toggle overflow