Some components allow to configure component level options, which you do the <bean> style.
<bean id="http4" class="....HttpComponent"> <property ...> </bean> Which is standard blueprint / spring xml style. Then the Camel routes that use http4 (the id of the bean) is using that component. You can give the id any name you like instead of http4. On Mon, Jul 18, 2016 at 3:29 PM, Debraj Manna <[email protected]> wrote: > I want to change maxTotalConnections and connectionsPerRoute in camel > http4 component > via blueprint. > > Can some one please let me know is it possible to do this or I have to send > this as URI option? > > I am on camel 2.16.3 -- Claus Ibsen ----------------- http://davsclaus.com @davsclaus Camel in Action 2: https://www.manning.com/ibsen2
