From 5ee2fdd40732aa8eca29e89b14fa5238385868e8 Mon Sep 17 00:00:00 2001 From: Christof Rabensteiner Date: Tue, 16 Apr 2019 11:49:56 +0200 Subject: Store incoming delivery request on redis server - Connect to Redis server and implement RedisRepository - Add redis dependencies (spring-boot-starter, jedis, apache commons io). Latter dependencies are apparently needed and not included in the sprint-boot-starter; See https://github.com/spring-projects/spring-boot/issues/5718 and https://www.concretepage.com/questions/599 - Connect DeliveryRequestHandler to RedisRepository - Rewrote Marshalling: replace JaxbContext with spring-oxm JaxbMarshaller - Catch and log all exceptions in App2MZSService; Former: certain exceptions would go unnoticed, e.g. ConnectionRefused --- src/main/resources/application.properties | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 src/main/resources/application.properties (limited to 'src/main/resources') diff --git a/src/main/resources/application.properties b/src/main/resources/application.properties new file mode 100644 index 0000000..7cf70bd --- /dev/null +++ b/src/main/resources/application.properties @@ -0,0 +1,2 @@ +spring.redis.host=172.17.0.2 +spring.redis.port=6379 -- cgit v1.2.3