Re: Change from ApacheMQ to ArtemisMQ

2019-12-04 Thread Claus Ibsen
Hi spring boot has an artemis starter you can use, and then use camel's jms or sjms components, that should be able to plugin and use that. https://docs.spring.io/spring-boot/docs/2.0.x/reference/html/boot-features-messaging.html#boot-features-artemis On Wed, Dec 4, 2019 at 12:16 PM Tobias Letsch

Re: Change from ApacheMQ to ArtemisMQ

2019-12-04 Thread ski n
Hi Tobias, "I’m already using ApacheMQ and Springboot" I think you are using ActiveMQ client within a Sprint boot application. For Artemis I suggest trying the SJMS component ( https://camel.apache.org/components/latest/sjms-component.html). Example: org.apache.activemq.artemis.jms.client.Activ

Change from ApacheMQ to ArtemisMQ

2019-12-04 Thread Tobias Letschka
Hi camel riders, I have a question. I’m trying to change my application from apacheMQ to Artemis. I’m already using ApacheMQ and Springboot. At the moment I use this @Configuration. Do you know a better one? @Configuration public class ActiveMQ { @Value("${artemis.username}") String us