From 0f5178809ee015b5bd4db09cd6dcede94a7ed429 Mon Sep 17 00:00:00 2001 From: memorylkf <312904636@qq.com> Date: Wed, 25 Mar 2026 18:23:36 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20[=E7=94=A8=E6=88=B7=E7=AE=A1=E7=90=86]?= =?UTF-8?q?=20=E5=AF=B9=E6=8E=A5=E5=9F=9F=E6=8E=A7=EF=BC=8C=E5=AF=B9?= =?UTF-8?q?=E6=8E=A5=E6=A8=A1=E5=9D=97=E7=9A=84nacos=E5=AF=86=E7=A0=81?= =?UTF-8?q?=E6=94=B9=E6=88=90=E5=85=B6=E4=BB=96=E4=B8=80=E8=87=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- hxhq-modules/hxhq-integration/src/main/resources/bootstrap.yml | 2 +- .../src/main/java/com/hxhq/system/controller/SysUserController.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/hxhq-modules/hxhq-integration/src/main/resources/bootstrap.yml b/hxhq-modules/hxhq-integration/src/main/resources/bootstrap.yml index 6020f8d..2be3855 100644 --- a/hxhq-modules/hxhq-integration/src/main/resources/bootstrap.yml +++ b/hxhq-modules/hxhq-integration/src/main/resources/bootstrap.yml @@ -15,7 +15,7 @@ spring: cloud: nacos: username: nacos - password: nacos + password: nacosHxhq discovery: # 服务注册地址 server-addr: 127.0.0.1:8848 diff --git a/hxhq-modules/hxhq-system/src/main/java/com/hxhq/system/controller/SysUserController.java b/hxhq-modules/hxhq-system/src/main/java/com/hxhq/system/controller/SysUserController.java index d8bab4d..d8318e0 100644 --- a/hxhq-modules/hxhq-system/src/main/java/com/hxhq/system/controller/SysUserController.java +++ b/hxhq-modules/hxhq-system/src/main/java/com/hxhq/system/controller/SysUserController.java @@ -297,7 +297,7 @@ public class SysUserController extends BaseController } @GetMapping("/checkExist") - public AjaxResult checkExist(@PathVariable("username") String username){ + public AjaxResult checkExist(String username){ AjaxResult exists = remoteIntegrationService.checkAccountExists(username); return exists; }