-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
15 changed files
with
98 additions
and
90 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
3 changes: 0 additions & 3 deletions
3
sugoi-api-jms-store-provider/src/main/resources/application.properties
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
23 changes: 20 additions & 3 deletions
23
sugoi-api-jms-store-provider/src/test/resources/application.properties
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,25 @@ | ||
spring.activemq.broker-url=vm://embedded?broker.persistent=false,useShutdownHook=false | ||
spring.activemq.close-timeout=15000 | ||
spring.activemq.in-memory=true | ||
spring.activemq.non-blocking-redelivery=false | ||
spring.activemq.password=admin | ||
spring.activemq.user=admin | ||
spring.activemq.send-timeout=0 | ||
spring.activemq.packages.trust-all=false | ||
spring.activemq.packages.trusted=com.memorynotfound | ||
spring.activemq.pool.block-if-full=true | ||
spring.activemq.pool.block-if-full-timeout=-1 | ||
spring.activemq.pool.enabled=false | ||
spring.activemq.pool.idle-timeout=30000 | ||
spring.activemq.pool.max-connections=1 | ||
spring.activemq.pool.time-between-expiration-check=-1 | ||
spring.activemq.pool.use-anonymous-producers=true | ||
|
||
fr.insee.sugoi.jms.receiver.request.enabled=true | ||
fr.insee.sugoi.jms.queue.requests.name=queue.request | ||
fr.insee.sugoi.jms.queue.response.name=queue.response | ||
fr.insee.sugoi.jms.broker.url=vm://embedded?broker.persistent=false,useShutdownHook=false | ||
fr.insee.sugoi.jms.broker.username=admin | ||
fr.insee.sugoi.jms.broker.password=admin | ||
fr.insee.sugoi.jms.broker.url=${spring.activemq.broker-url} | ||
fr.insee.sugoi.jms.broker.username=${spring.activemq.user} | ||
fr.insee.sugoi.jms.broker.password=${spring.activemq.password}spring.activemq.broker-url=vm://embedded?broker.persistent=false,useShutdownHook=false | ||
fr.insee.sugoi.jms.broker.timeout=5000 | ||
sugoi.api.event.webhook.mail.secondaryMailAttribute= |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
5 changes: 0 additions & 5 deletions
5
sugoi-api-jms-utils/src/main/resources/application.properties
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,5 @@ | ||
spring.main.allow-bean-definition-overriding=true | ||
|
||
fr.insee.sugoi.jms.broker.url= | ||
fr.insee.sugoi.jms.broker.username= | ||
fr.insee.sugoi.jms.broker.password= | ||
fr.insee.sugoi.jms.broker.timeout= | ||
|
||
|
||
|
||
|
44 changes: 0 additions & 44 deletions
44
sugoi-api-jms-utils/src/test/java/fr/insee/sugoi/jms/JmsNoBrokerTests.java
This file was deleted.
Oops, something went wrong.
22 changes: 20 additions & 2 deletions
22
sugoi-api-jms-utils/src/test/resources/application-brokerEmbedded.properties
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,22 @@ | ||
|
||
# Embedded ActiveMQ Configuration Example | ||
spring.activemq.broker-url=vm://embedded?broker.persistent=false,useShutdownHook=false | ||
spring.activemq.close-timeout=15000 | ||
spring.activemq.in-memory=true | ||
spring.activemq.non-blocking-redelivery=false | ||
spring.activemq.password=admin | ||
spring.activemq.user=admin | ||
spring.activemq.send-timeout=0 | ||
spring.activemq.packages.trust-all=false | ||
spring.activemq.packages.trusted=com.memorynotfound | ||
spring.activemq.pool.block-if-full=true | ||
spring.activemq.pool.block-if-full-timeout=-1 | ||
spring.activemq.pool.enabled=false | ||
spring.activemq.pool.idle-timeout=30000 | ||
spring.activemq.pool.max-connections=1 | ||
spring.activemq.pool.time-between-expiration-check=-1 | ||
spring.activemq.pool.use-anonymous-producers=true | ||
|
||
fr.insee.sugoi.jms.broker.url=vm://embedded?broker.persistent=false,useShutdownHook=false | ||
fr.insee.sugoi.jms.broker.username=admin | ||
fr.insee.sugoi.jms.broker.password=admin | ||
fr.insee.sugoi.jms.broker.timeout=5000 | ||
fr.insee.sugoi.jms.broker.password=admin |
3 changes: 0 additions & 3 deletions
3
sugoi-api-jms-utils/src/test/resources/application-withoutBroker.properties
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters