Add the properties for camel context
------------------------------------
Key: CAMEL-1425
URL: https://issues.apache.org/activemq/browse/CAMEL-1425
Project: Apache Camel
Issue Type: Improvement
Components: camel-spring
Reporter: Willem Jiang
Assignee: Willem Jiang
Fix For: 2.0.0
If we want to configure the some camel internal component such as
CachedOutputStream from camel context, we can use a map of properties to do
this kind of work.
With Java code
Map<String, String> properties = new HashMap<String, String>();
properties.put(CachedOutputStream.THRESHOLD, "1000");
camelContext..setProperties(properties);
With Spring configuration
<camelContext id="camel" xmlns="http://camel.apache.org/schema/spring">
<properties>
<property key="the key of perperties" value="the value as string"/>
</properties>
...
<camelContext>
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.