-
Notifications
You must be signed in to change notification settings - Fork 41.5k
Description
If the broker is present, an embedded broker is automatically started and configured (provided no broker URL is specified through configuration).
https://docs.spring.io/spring-boot/docs/current/reference/htmlsingle/#boot-features-activemq
wait where does this broker listen 0.0.0.0:9876? is it secure by default (password protected)? I'd guess it doesn't use any form of TLS, but can it?
Also, I had to grind through the docs, but spring.activemq.broker-url
the relaxed env vars docs mentions map keys... with a -, but I don't think this is a map key, might be nice to include the env var next to it, I think it's SPRING_ACTIVEMQ_BROKERURL
based on the docs.
... doing more research and code dives... does the activemq broker actually support over network brokerage? or is it in memory only? the actual default network url is tcp://0.0.0.0:61616 but when I use that it blows up with connection refused...