Well, I would expect the core to include all the core modules. So
"camel-core" should deliver on this. If there is need for a "smaller
core", than the "bigger core" should have it as a dependency. This leads
to awkward naming, because we have now got a "core core". For this "core
core" I would
The transacted DSL is built on top of Spring
PlatformTransactionManager. If you want to use the transacted with
Spring Boot, you need to make sure you can get
PlatformTransactionManager from the application context.
Willem Jiang
Twitter: willemjiang
Weibo: 姜宁willem
On Fri, Mar 8, 2019 at 4:46 A
I could not use .transacted() in camel route with SpringBoot, got exception
No bean could be found in the registry of type: PlatformTransactionManager"
Is it expected behavior for SpringBoot+Camel setup?
below is example of the code
https://github.com/apache/camel/blob/master/components/camel-sp
1. I am trying to process batches of records in camel from kafka, but I am
unable to get a batch, nor am I able to aggregate the records myself. I was
expecting to get 5 records in a batch because I set "maxPollRecords=5", and
then I could process them in a batch or split and process them indiv