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 --- pom.xml | 33 ++++++++++++++++++++++++++++----- 1 file changed, 28 insertions(+), 5 deletions(-) (limited to 'pom.xml') diff --git a/pom.xml b/pom.xml index 67cafe0..4f0e7fe 100644 --- a/pom.xml +++ b/pom.xml @@ -21,6 +21,10 @@ 11 3.3.0 2.1.3.RELEASE + 2.6.2 + 2.3.1 + 1.1 + 2.9.3 @@ -37,20 +41,39 @@ cxf-spring-boot-starter-jaxws ${cxf.version} - + + + org.springframework.boot + spring-boot-starter-data-redis + ${springboot.version} + + + io.lettuce + lettuce-core + + + + + org.apache.commons + commons-pool2 + ${commonspool2.version} + + + redis.clients + jedis + ${jedisclient.version} + javax.xml.ws jaxws-api - 2.3.1 + ${jaxwsapi.version} - javax.jws javax.jws-api - 1.1 + ${jwsapi.version} - -- cgit v1.2.3