fix configuration to connect to Artemis from Sprint Boot for all environments
This commit is contained in:
@@ -59,8 +59,9 @@ dependencies {
|
||||
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
|
||||
implementation 'org.springframework.boot:spring-boot-starter-validation'
|
||||
implementation 'org.apache.camel.springboot:camel-spring-boot-starter'
|
||||
implementation 'org.apache.activemq:artemis-jakarta-client'
|
||||
implementation 'org.apache.camel.springboot:camel-jms-starter'
|
||||
implementation 'org.apache.activemq:artemis-jakarta-client'
|
||||
//implementation libs.artemis
|
||||
implementation 'org.springframework.boot:spring-boot-starter-actuator'
|
||||
developmentOnly 'org.springframework.boot:spring-boot-devtools'
|
||||
implementation 'io.micrometer:micrometer-registry-prometheus'
|
||||
|
||||
@@ -20,6 +20,7 @@ springboot = "3.2.5"
|
||||
springdependencies = "1.1.4"
|
||||
vaadin = "24.3.8"
|
||||
camel = "4.10.6"
|
||||
artemis = "2.41.0"
|
||||
lombok = "8.6"
|
||||
gson = "2.9.0"
|
||||
jackson = "2.16.1"
|
||||
@@ -45,6 +46,7 @@ sqlite-jdbc = { module = "org.xerial:sqlite-jdbc", version.ref = "sqlite" }
|
||||
hypersistence = { module = "io.hypersistence:hypersistence-utils-hibernate-63", version.ref = "hypersistence" }
|
||||
vaadin-bom = { module = "com.vaadin:vaadin-bom", version.ref = "vaadin" }
|
||||
camel-bom = { module = "org.apache.camel.springboot:camel-spring-boot-bom", version.ref = "camel"}
|
||||
artemis = { module = "org.apache.activemq:artemis-jms-server", version.ref = "artemis" }
|
||||
asciidoctorGradleJvmGems = { module = "org.asciidoctor:asciidoctor-gradle-jvm-gems", version.ref= "asciidoctor" }
|
||||
asciidoctorGradleJvm = { module = "org.asciidoctor:asciidoctor-gradle-jvm", version.ref= "asciidoctor" }
|
||||
asciidoctorGradleJvmPdf = { module = "org.asciidoctor:asciidoctor-gradle-jvm-pdf", version.ref= "asciidoctor" }
|
||||
|
||||
@@ -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