I'm trying to inject activemq properties from a yaml configuration file.
i initially used a property file, and it worked pretty well, but with the yaml file, the property spring.activemq.broker-url is apparently ignored by spring-jms, and the default broker url is used (tcp://localhost:61616) with as result a "Failed to connect to [tcp://localhost:61616] after: 10 attempt(s) continuing to retry" of course.
here's my yaml configuration
spring:
activemq:
broker-url: tcp://someIP:61616
user: admin
password: admin
pooled: true
The yaml file is loaded since other configuration properties were correctly detected, i don't know if there's any issue with using yaml to setup activemq configuration..
Any help would be much appreciated !