I am newbie to Apache Camel. How can i access Camel Default Idempotent Repository map in Java DSL.
Route:
from("file://C:/folderA?noop=true")
.to("file://C:/folderB")
.end();
When i say noop=true in route, then idempotent will be true. Now i need to get Idempotent map in java dsl. Please tell me how to access this?
Thanks in advance.
If you want to access the underlying map, you should specify your own
idempotentRepository
bean. Using the existingMemoryIdempotentRepository
should be pretty easy.