I've a use case where I need to expose a rest end point to receive a request,
validate it and then post it to a Rabbitmq queue.
I'm thinking of using Java Rest DSL , spring boot components to build this
service out. I do have a few questions,
How do I enable connection pooling for my connections to Rabbit?
Does to("rabbitmq://localhost:5672/ex2") open and close a new connection
every time it is invoked?
how do I add json schema validation to validate inbound requests ?
Thanks much
GV
I'm planning to model my code after the spirng-boot-rest-jpa sample in the
camel examples
--
View this message in context:
http://camel.465427.n5.nabble.com/Java-Rest-DSL-Spring-boot-and-Rabbitmq-tp5799453.html
Sent from the Camel - Users mailing list archive at Nabble.com.