From d9adbadd9fa14cb7174f6167c438a45e8176fd26 Mon Sep 17 00:00:00 2001 From: SZH <szh_hello@163.com> Date: 星期四, 23 二月 2023 15:22:04 +0800 Subject: [PATCH] 数据库连接池移除druid atomikos分布式事务使用com.mysql.cj.jdbc.MysqlXADataSource --- safePlatfrom-out-web/src/main/java/com/gkhy/safePlatform/accountController/LoginController.java | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/safePlatfrom-out-web/src/main/java/com/gkhy/safePlatform/accountController/LoginController.java b/safePlatfrom-out-web/src/main/java/com/gkhy/safePlatform/accountController/LoginController.java index c7b3ca3..1abbf63 100644 --- a/safePlatfrom-out-web/src/main/java/com/gkhy/safePlatform/accountController/LoginController.java +++ b/safePlatfrom-out-web/src/main/java/com/gkhy/safePlatform/accountController/LoginController.java @@ -34,6 +34,6 @@ @RequestMapping("/menu") public ResultVO<List<MenuRPCRespDTO>> getMenu(Authentication authentication, Long projectId){ ContextCacheUser currentUser = (ContextCacheUser) authentication.getPrincipal(); - return accountAuthService.getMenu(currentUser.getUid(), projectId); + return accountAuthService.getMenu(currentUser, projectId); } } -- Gitblit v1.9.2