From 077bf1cad4327325cf49c28577d0e115e3168247 Mon Sep 17 00:00:00 2001 From: zengxiaobo Date: Thu, 4 Jul 2024 19:00:33 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E8=8E=B7=E5=8F=96app=20step=205?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../foundation/web/support/context/AxContextInterceptor.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web-support-lib/src/main/java/cn/axzo/foundation/web/support/context/AxContextInterceptor.java b/web-support-lib/src/main/java/cn/axzo/foundation/web/support/context/AxContextInterceptor.java index 190a7f6..e495dab 100644 --- a/web-support-lib/src/main/java/cn/axzo/foundation/web/support/context/AxContextInterceptor.java +++ b/web-support-lib/src/main/java/cn/axzo/foundation/web/support/context/AxContextInterceptor.java @@ -32,7 +32,7 @@ public class AxContextInterceptor implements HandlerInterceptor { @Builder public AxContextInterceptor(AppRuntime appRuntime, String debugHost) { this.appRuntime = appRuntime; - this.supplierUrl = Optional.ofNullable(Strings.emptyToNull(debugHost)) + this.supplierUrl = Optional.ofNullable(Strings.emptyToNull(debugHost)).map(e -> e + "/pudge") .orElse("http://pudge:10099") + "/webApi/oauth/apisix/authentication"; }