Hello Folks,
This is a regular Spring framework question but it is also Spring Integration related, so I am posting it here.
I have started to use the new Spring Integration/AMQP XML tags like the following:-
<int-amqp:inbound-channel-adapter channel="testRabbitChannel"
queue-names="testQueue"
connection-factory="connectionFactory" />
Now, my rudimentary question is:- Which Spring class is really being used here? I guess this is a basic question that every Spring developer faces when moving to the new (actually not so new) XML notation. I was using the bean id="beanName" class="org.springframework.SomeClass" notation so far.
Is there a quick way I can find out (by looking at the source code?) which class is exactly being used?
Thanks.


Reply With Quote