fix configuration to connect to Artemis from Sprint Boot for all environments

This commit is contained in:
Thomas Peetz
2025-07-04 00:29:15 +02:00
parent 5df3c1c47e
commit 4b8053c6e2
4 changed files with 21 additions and 73 deletions
@@ -24,12 +24,6 @@ spring:
multipart:
max-file-size: 10MB
max-request-size: 10MB
artemis:
mode: native
host: 127.0.0.1
port: 61616
user: artemis
password: artemis
camel:
cloud:
enabled: true
@@ -56,6 +50,10 @@ logging:
hibernate: INFO
springframework:
web: INFO
jms: DEBUG
apache:
activemq:
artemis: DEBUG
guru:
springframework:
controllers: DEBUG
@@ -78,6 +76,11 @@ spring:
url: jdbc:postgresql://postgres:5432/kontor
username: 'kontor'
password: 'kontor'
artemis:
mode: native
broker-url: tcp://activemq:61616
user: artemis
password: artemis
server:
port: 8000
---
@@ -91,5 +94,10 @@ spring:
url: jdbc:postgresql://localhost:5432/kontor
username: kontor
password: kontor
artemis:
mode: native
broker-url: tcp://localhost:61616
user: artemis
password: artemis
server:
port: 8085