blob: 79ec4d547a09d72ee8283d8b4aff00387344dba9 [file] [log] [blame]
= How do I configure endpoints?
There are a few different approaches to configuring components and
endpoints.
[[HowdoIconfigureendpoints-UsingJavaCode]]
== Using Java Code
You can explicitly configure a Component using Java
code as shown in this example
Or you can explicitly get hold of an Endpoint and
configure it using Java code as shown in the xref:components::mock-component.adoc[Mock endpoint examples].
[source,java]
----
SomeEndpoint endpoint = camelContext.getEndpoint("someURI", SomeEndpoint.class);
endpoint.setSomething("aValue");
----
[[HowdoIconfigureendpoints-UsingSpringXML]]
== Using Spring XML
You can configure your Component or Endpoint instances in your Spring XML as `<bean>` as follows:
[source,xml]
----
<bean id="activemq" class="org.apache.activemq.camel.component.ActiveMQComponent">
<property name="connectionFactory">
<bean class="org.apache.activemq.ActiveMQConnectionFactory">
<property name="brokerURL" value="vm://localhost?broker.persistent=false&amp;broker.useJmx=false"/>
</bean>
</property>
</bean>
----
Which allows you to configure a component using some name (activemq in
the above example), then you can refer to the component using
`activemq:[queue:|topic:]destinationName`. This works by the
`SpringCamelContext` lazily fetching components from the spring context
for the scheme name you use for Endpoint
URIs
[[HowdoIconfigureendpoints-UsingEndpointURIs]]
== Using Endpoint URIs
Another approach is to use the URI syntax. The URI syntax supports the
query notation. So for example with the xref:components::mail-component.adoc[Mail] component
you can configure the password property via the URI
[source,text]
----
pop3://host:port?password=foo
----
[[HowdoIconfigureendpoints-ReferringbeansfromEndpointURIs]]
=== Referring beans from Endpoint URIs
When configuring endpoints using the URI syntax you can refer to beans
in the Registry using the `#bean:id` notation.
NOTE: The older syntax with just `#id` has been deprecated due to ambiguity
as Camel supports a number of additional functions that start with the # notation.
If the URI parameter value starts with `#bean:` then Camel will lookup in
the Registry for a bean of the given type by id. For instance:
[source]
----
file://inbox?sorter=#bean:mySpecialFileSorter
----
Will lookup a bean with the id `mySpecialFileSorter` in the
Registry.
Camel also supports to refer to beans by their class type.
[[HowdoIconfigureendpoints-ReferringbeansbyclassfromEndpointURIs]]
=== Referring beans by class from Endpoint URIs
When configuring endpoints using URI syntax you can now refer to bean by its class name
using the `#class:fullyQualifiedName` notation.
If the parameter value starts with a `#class:` sign then Camel will load the
class with the given name, and create an instance of the bean using its _no-arg_ constructor:
[source,text]
----
file://inbox?sorter=#class:com.foo.MySpecialSorter
----
If you need to provide parameters to the constructor, then this is also possible
(limited to numbers, boolean, literal, and null values)
[source,text]
----
file://inbox?sorter=#class:com.foo.MySpecialSorter(10, 'Hello world', true)
----
[[HowdoIconfigureendpoints-ReferringbeansbytypefromEndpointURIs]]
=== Referring beans by type from Endpoint URIs
When configuring endpoints using URI syntax you can now refer to bean by its type which
are used to lookup the bean by the given type from the xref:ROOT:registry.adoc[Registry].
If there is one bean found in the registry of the given type, then that bean instance will be used;
otherwise an exception is thrown.
[source]
----
file://inbox?idempontentRepository=#type:org.apache.camel.spi.IdempotentRepository
----
[[HowdoIconfigureendpoints-Configuringparametervaluesusingrawvalues,egsuchaspasswords]]
=== Configuring parameter values using raw values, eg such as passwords
*Since Camel 2.11*
When configuring endpoint options using URI syntax, then the values is
by default URI encoded. This can be a problem if you want to configure
passwords and just use the value _as is_ without any encoding. For
example you may have a plus sign in the password, which would be decimal
encoded by default.
So from Camel 2.11 onwards we made this easier as you can denote a
parameter value to be *raw* using the following syntax `RAW(value)`, e.g.
the value starts with `RAW(` and then ends with the parenthesis `)`.
Here is a little example:
[source,java]
----
.to("ftp:joe@myftpserver.com?password=RAW(se+re?t&23)&binary=true")
----
In the above example, we have declare the password value as raw, and the
actual password would be as typed, eg `se+re?t&23`.
NOTE: you may find a corner case when you use both `)` and `&` character as part of your password (ie, `se+re)t&23`). The parser will interpret the `)` as closing the `RAW` function and having a parameter started by `&`. In such case, you can instead use the `RAW{}` notation to let you include the `)` character and have it decoded as part of the password (ie, `RAW{se+re)t&23}`). As a safe alternative you can also use `password=#property:myPass` and then have `myPass` a xref:ROOT:property-binding.adoc[property placeholder value].
==== Using ENV variables with raw values
*Since Camel 4.7*
If you need to use environment variables, for example as username or passwords then this is now possible by inlining
the xref:components:languages:simple-language.adoc[Simple] language
using `+++$simple{xxx}+++` syntax in `RAW(...)` as shown below:
[source,java]
----
.to("ftp:joe@myftpserver.com?password=RAW($simple{env:MY_FTP_PASSWORD})&binary=true")
----
[[HowdoIconfigureendpoints-Usingpropertyplaceholders]]
=== Using property placeholders
Camel has extensive support for using property placeholders, which you
can read more about here. For
example in the ftp example above we can externalize the password to a
`.properties` file.
For example configuring the property placeholder when using a
XML DSL, where we declare the location of the `.properties`
file. Though we can also define this in Java code. See the
documentation for more details.
[source,xml]
----
<camelContext>
<propertyPlaceholder id="properties" location="myftp.properties"/>
...
</camelContext>
----
And the Camel route now refers to the placeholder using the `{\{key}}`
notation:
[source,java]
----
.to("ftp:joe@myftpserver.com?password={{myFtpPassword}}&binary=true"
----
And have a `myftp.properties` file with password. Notice we still define
the `RAW(value)` style to ensure the password is used _as is_:
[source,text]
----
myFtpPassword=RAW(se+re?t&23)
----
We could still have used the `RAW(value)` in the Camel route instead:
[source,java]
----
.to("ftp:joe@myftpserver.com?password=RAW({{myFtpPassword}})&binary=true")
----
And then we would need to remove the `RAW` from the properties file:
[source]
----
myFtpPassword=se+re?t&23
----
To understand more about property placeholders, read the
documentation.
In Camel 3.4 you can use an alternative than RAW to refer to a property placeholder by its
key, as discussed in the following section.
=== Referring to a property placeholder
When using `{\{key}}` in configuring endpoint URIs then Camel will replace the `{\{key}}` while parsing the endpoint URI.
This has its pros but also a few cons, such as when using sensitive information such as passwords. As we have seen
in the previous section you can use RAW() syntax. Instead of using RAW() you can use `#property:key` notation,
as shown in the example below:
[source,java]
----
.to("ftp:joe@myftpserver.com?password=#property:myFtpPassword&binary=true")
----
... and in XML:
[source,xml]
----
<to uri="ftp:joe@myftpserver.com?password=#property:myFtpPassword&amp;binary=true"/>
----
[[HowdoIconfigureendpoints-Configuringurisusingendpointwithbeanpropertystyle]]
== Configuring URIs using endpoint with bean property style
Sometimes configuring endpoint URIs may have many options, and therefore
the URI can become long. In Java DSL you can break the URIs into new
lines as its just Java code, e.g. just concat the `String`. When using XML
DSL then the URI is an attribute, e.g. `<from uri="bla bla"/>`. From Camel
2.15 onwards you can configure the endpoint separately, and from the
routes refer to the endpoints using their shorthand ids.
[source,xml]
----
<camelContext>
<endpoint id="foo" uri="ftp://foo@myserver">
<property key="password" value="secret"/>
<property key="recursive" value="true"/>
<property key="ftpClient.dataTimeout" value="30000"/>
<property key="ftpClient.serverLanguageCode" value="fr"/>
</endpoint>
<route>
<from uri="ref:foo"/>
...
</route>
</camelContext>
----
In the example above, the endpoint with id `foo`, is defined using
`<endpoint>` which under the covers assembles this as an URI, with all the
options, as if you have defined all the options directly in the URI. You
can still configure some options in the URI, and then use `<property>`
style for additional options, or to override options from the URI, such
as:
[source]
----
<endpoint id="foo" uri="ftp://foo@myserver?recursive=true">
<property key="password" value="secret"/>
<property key="ftpClient.dataTimeout" value="30000"/>
<property key="ftpClient.serverLanguageCode" value="fr"/>
</endpoint>
----
[[HowdoIconfigureendpoints-Configuringlongurisusingnewlines]]
== Configuring long URIs using new lines
Sometimes configuring endpoint URIs may have many options, and therefore
the URI can become long. In Java DSL you can break the URIs into new
lines as its just Java code, e.g. just concat the `String`. When using XML
DSL then the URI is an attribute, e.g. `<from uri="bla bla"/>`. From Camel
2.15 onwards you can break the URI attribute using new line, such as
shown below:
[source,xml]
----
<route>
<from uri="ftp://foo@myserver?password=secret&amp;
recursive=true&amp;
ftpClient.dataTimeout=30000&amp;
ftpClientConfig.serverLanguageCode=fr"/>
<to uri="bean:doSomething"/>
</route>
----
Notice that it still requires escaping `&` as `&amp;amp;` in XML. Also you
can have multiple options in one line, eg this is the same:
[source,xml]
----
<route>
<from uri="ftp://foo@myserver?password=secret&amp;
recursive=true&amp;ftpClient.dataTimeout=30000&amp;
ftpClientConfig.serverLanguageCode=fr"/>
<to uri="bean:doSomething"/>
</route>
----