I'm using ActiveMQ "Classic," and I want to use AMQP protocol.
For the moment I am trying to use AMQP 1.0 and the Java client Qpid JMS client 2.2.0 and qpid-amqp-1-0-client-jms 0.32 with Spring Boot 3 and jakarta
package.
The final goal is to fully use AMQP and after possibly replace ActiveMQ by another broker without changing my code, but I use VirtualTopic, and if I understand AMQP can do the same thing like VirtualTopic by using "routing key" with wildcard.
I have configure a simple Java sender and consumer and all work fine, but now i want to use "routing key" to publish a message on topic TEST.*
, but I'm stuck here and I don't know how to set my routing key with wildcard.