fix configuration to connect to Artemis from Sprint Boot for all environments
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user