hanzo2001 commented on pull request #7320:
URL: https://github.com/apache/camel/pull/7320#issuecomment-1085926804
@oscerd I am looking at
`org.apache.camel.component.springrabbit.SpringRabbitMQEndpoint` but I do not
see any mention to the documented skipping params:
- `camel.component.rabbitmq.skip-exchange-declarep`
- `camel.component.rabbitmq.skip-queue-declare`
- `camel.component.rabbitmq.skip-queue-bind`
To be honest, I have no experience working with Spring. I don't know if
there is magic involved that I don't understand.
I can't find any routine in `SpringRabbitMQProducer` that is in charge of
declaring anything.
`SpringRabbitMQConsumer` does reference `<Endpoint>::declareElements(...)`
```java
if (getEndpoint().isAutoDeclare()) {
// auto declare but without spring
getEndpoint().declareElements(listenerContainer);
}
```
However, after the routine has started, there is no mention to any skipping
parameters. I don't understand much of the code so I am hoping someone more
savvy with spring might help out.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]