diff --git a/pom.xml b/pom.xml index 278ee3c9c..439665363 100644 --- a/pom.xml +++ b/pom.xml @@ -51,8 +51,8 @@ - 2.4.1 - 2020.0.0 + 2.6.2 + 2021.0.0 3.15.0 0.8.13 1.7.5 @@ -67,8 +67,8 @@ 1.6.3 2.2.1 1.5 - 2.20.1 - 2.20.1 + 2.22.1 + 2.22.1 3.0.0-M1 1.5.2 diff --git a/spring-batch-lightmin-client/spring-batch-lightmin-client-core/src/main/java/org/tuxdevelop/spring/batch/lightmin/client/configuration/LightminClientProperties.java b/spring-batch-lightmin-client/spring-batch-lightmin-client-core/src/main/java/org/tuxdevelop/spring/batch/lightmin/client/configuration/LightminClientProperties.java index 131ff9cc9..6ccf38c76 100644 --- a/spring-batch-lightmin-client/spring-batch-lightmin-client-core/src/main/java/org/tuxdevelop/spring/batch/lightmin/client/configuration/LightminClientProperties.java +++ b/spring-batch-lightmin-client/spring-batch-lightmin-client-core/src/main/java/org/tuxdevelop/spring/batch/lightmin/client/configuration/LightminClientProperties.java @@ -91,7 +91,7 @@ public String getManagementUrl() { resultManagementUrl = this.append( this.append(this.getServiceUrl(), - this.managementServerProperties.getServlet().getContextPath()), + this.managementServerProperties.getBasePath()), this.webEndpointProperties.getBasePath()); } else { if (this.managementPort == null) { @@ -103,13 +103,13 @@ public String getManagementUrl() { final String hostAddress = this.getHostAddress(address); resultManagementUrl = this.append( this.append(this.createLocalUri(hostAddress, this.managementPort), - this.managementServerProperties.getServlet().getContextPath()), + this.managementServerProperties.getBasePath()), this.webEndpointProperties.getBasePath()); } else { resultManagementUrl = this.append( this.append(this.createLocalUri(this.determineHost(), this.managementPort), - this.managementServerProperties.getServlet().getContextPath()), + this.managementServerProperties.getBasePath()), this.webEndpointProperties.getBasePath()); } }