diff --git a/.idea/shelf/Uncommitted_changes_before_Update_at_2024_5_2_19_15_[Changes]/shelved.patch b/.idea/shelf/Uncommitted_changes_before_Update_at_2024_5_2_19_15_[Changes]/shelved.patch new file mode 100644 index 0000000..c8c5f1b --- /dev/null +++ b/.idea/shelf/Uncommitted_changes_before_Update_at_2024_5_2_19_15_[Changes]/shelved.patch @@ -0,0 +1,1474 @@ +Index: bwie-modules/bwie-system/src/main/resources/mapper/MonitorPer.xml +IDEA additional info: +Subsystem: com.intellij.openapi.diff.impl.patch.BaseRevisionTextPatchEP +<+>\r\n\r\n\r\n\r\n \r\n\r\n +Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP +<+>UTF-8 +=================================================================== +diff --git a/bwie-modules/bwie-system/src/main/resources/mapper/MonitorPer.xml b/bwie-modules/bwie-system/src/main/resources/mapper/MonitorPer.xml +--- a/bwie-modules/bwie-system/src/main/resources/mapper/MonitorPer.xml (revision 2d23012c0f96b49a2cbaa1b70a111e30550d5c40) ++++ b/bwie-modules/bwie-system/src/main/resources/mapper/MonitorPer.xml (date 1714438484215) +@@ -1,7 +1,6 @@ + + + +- + +Index: bwie-auth/src/main/java/com/bwie/auth/service/impl/AuthServiceImpl.java +IDEA additional info: +Subsystem: com.intellij.openapi.diff.impl.patch.BaseRevisionTextPatchEP +<+>package com.bwie.auth.service.impl;\r\n\r\nimport cn.hutool.core.lang.Assert;\r\nimport cn.hutool.core.util.RandomUtil;\r\nimport cn.hutool.crypto.SecureUtil;\r\nimport com.alibaba.fastjson.JSON;\r\nimport com.alibaba.fastjson.JSONObject;\r\nimport com.bwie.auth.service.AuthService;\r\nimport com.bwie.common.constant.JwtConstants;\r\nimport com.bwie.common.constant.TokenConstants;\r\n\r\nimport com.bwie.common.domain.User;\r\nimport com.bwie.common.domain.request.LoginRequest;\r\n\r\nimport com.bwie.common.domain.request.PhoneLoginRequest;\r\nimport com.bwie.common.domain.request.UserReq;\r\nimport com.bwie.common.domain.request.UserResponse;\r\nimport com.bwie.common.redis.RedisCache;\r\nimport com.bwie.common.remote.system.RemoteUserService;\r\nimport com.bwie.common.result.BizException;\r\nimport com.bwie.common.result.Result;\r\nimport com.bwie.common.utils.JwtUtils;\r\nimport com.bwie.common.utils.SecurityUtils;\r\nimport com.bwie.common.utils.StringUtils;\r\nimport io.jsonwebtoken.Claims;\r\nimport org.springframework.beans.factory.annotation.Autowired;\r\nimport org.springframework.data.redis.core.StringRedisTemplate;\r\nimport org.springframework.stereotype.Service;\r\n\r\nimport javax.servlet.http.HttpServletRequest;\r\nimport java.util.HashMap;\r\nimport java.util.UUID;\r\nimport java.util.concurrent.TimeUnit;\r\n\r\n@Service\r\npublic class AuthServiceImpl implements AuthService {\r\n\r\n @Autowired\r\n private RemoteUserService remoteLoginService;\r\n\r\n @Autowired\r\n private StringRedisTemplate redisTemplate;\r\n\r\n @Autowired\r\n private RedisCache redisCache;\r\n\r\n @Autowired\r\n private HttpServletRequest request;\r\n\r\n\r\n @Override\r\n public UserResponse login(LoginRequest loginRequest) {\r\n\r\n Assert.isTrue(\r\n !StringUtils.isAnyBlank(loginRequest.getUserPwd(),\r\n loginRequest.getUserName()),\"账号或密码不能为空\"\r\n );\r\n Result result = remoteLoginService.login(loginRequest);\r\n User user = result.getData();\r\n Assert.notNull(user,\"该账号不是系统用户\");\r\n\r\n HashMap map = new HashMap<>();\r\n String userKey = UUID.randomUUID().toString().replaceAll(\"-\", \"\");\r\n map.put(JwtConstants.USER_KEY,userKey);\r\n map.put(JwtConstants.DETAILS_USERNAME,user.getUserName());\r\n map.put(JwtConstants.DETAILS_USER_ID,user.getUserId());\r\n String token = JwtUtils.createToken(map);\r\n redisCache.setCacheObject(\r\n TokenConstants.LOGIN_TOKEN_KEY+userKey,\r\n JSON.toJSONString(user),\r\n TokenConstants.EXPIRATION,\r\n TimeUnit.SECONDS\r\n );\r\n return UserResponse.builder()\r\n .token(token)\r\n .expired(TokenConstants.EXPIRATION)\r\n .build();\r\n }\r\n\r\n @Override\r\n public Result reg(UserReq userReq) {\r\n String password = SecureUtil.md5(userReq.getUserPwd() + \"|\" +\"\");\r\n Result result = remoteLoginService.register(\r\n User.builder()\r\n .userName(userReq.getUserName())\r\n .userPwd(password)\r\n .userPhone(userReq.getUserPhone())\r\n .userRole(userReq.getUserRole())\r\n .build()\r\n );\r\n return result;\r\n }\r\n\r\n @Override\r\n public Result sendCode(String userPhone) {\r\n Result result = remoteLoginService.findByPhone(userPhone);\r\n User user = result.getData();\r\n if(null == user){\r\n throw new BizException(408,\"请先注册手机号\");\r\n }\r\n String code = RandomUtil.randomNumbers(4);\r\n redisCache.setCacheObject(\"Send_sms_\"+userPhone,code);\r\n\r\n return Result.success(\"验证码为:\"+code,\"发送成功\");\r\n }\r\n\r\n\r\n @Override\r\n public Result sencCode(String userPhone) {\r\n Result result = remoteLoginService.phoneLogin(userPhone);\r\n if(StringUtils.isNull(result.getData())){\r\n return Result.error(\"手机号不存在\");\r\n }\r\n String code = RandomUtil.randomNumbers(4);\r\n System.out.println(\"验证码为:\"+code);\r\n redisTemplate.opsForValue().set(userPhone,code,5,TimeUnit.MINUTES);\r\n\r\n return result;\r\n }\r\n\r\n\r\n @Override\r\n public Result phoneLogin(PhoneLoginRequest phoneLoginRequest) {\r\n Result result = remoteLoginService.phoneLogin(phoneLoginRequest.getUserPhone());\r\n User user = result.getData();\r\n if(null==user){\r\n return Result.error(\"手机号不存在\");\r\n }\r\n if(!redisTemplate.hasKey(phoneLoginRequest.getUserPhone())){\r\n return Result.error(\"验证码过期\");\r\n }\r\n String code = redisTemplate.opsForValue().get(phoneLoginRequest.getUserPhone());\r\n if(!phoneLoginRequest.getUserCode().equals(code)){\r\n return Result.error(\"验证码错误\");\r\n }\r\n HashMap map = new HashMap<>();\r\n String userKey = UUID.randomUUID().toString().replaceAll(\"-\",\"\");\r\n map.put(JwtConstants.DETAILS_USERNAME,user.getUserName());\r\n map.put(JwtConstants.DETAILS_USER_ID,user.getUserId());\r\n map.put(JwtConstants.USER_KEY,userKey);\r\n String token = JwtUtils.createToken(map);\r\n redisCache.setCacheObject(TokenConstants.LOGIN_TOKEN_KEY, user, TokenConstants.EXPIRATION, TimeUnit.HOURS);\r\n\r\n UserResponse userResponse = new UserResponse();\r\n userResponse.setToken(token);\r\n userResponse.setExpired(TokenConstants.EXPIRATION);\r\n return Result.success(userResponse,\"登陆成功\");\r\n }\r\n\r\n @Override\r\n public User getInfo() {\r\n String token = request.getHeader(TokenConstants.TOKEN);\r\n Claims claims = JwtUtils.parseToken(token);\r\n String userKey = JwtUtils.getUserKey(claims);\r\n String cacheObject = redisCache.getCacheObject(TokenConstants.LOGIN_TOKEN_KEY + userKey);\r\n User user = JSONObject.parseObject(cacheObject, User.class);\r\n return user;\r\n }\r\n}\r\n +Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP +<+>UTF-8 +=================================================================== +diff --git a/bwie-auth/src/main/java/com/bwie/auth/service/impl/AuthServiceImpl.java b/bwie-auth/src/main/java/com/bwie/auth/service/impl/AuthServiceImpl.java +--- a/bwie-auth/src/main/java/com/bwie/auth/service/impl/AuthServiceImpl.java (revision 2d23012c0f96b49a2cbaa1b70a111e30550d5c40) ++++ b/bwie-auth/src/main/java/com/bwie/auth/service/impl/AuthServiceImpl.java (date 1714648135126) +@@ -1,5 +1,4 @@ + package com.bwie.auth.service.impl; +- + import cn.hutool.core.lang.Assert; + import cn.hutool.core.util.RandomUtil; + import cn.hutool.crypto.SecureUtil; +@@ -31,26 +30,18 @@ + import java.util.HashMap; + import java.util.UUID; + import java.util.concurrent.TimeUnit; +- + @Service + public class AuthServiceImpl implements AuthService { +- + @Autowired + private RemoteUserService remoteLoginService; +- + @Autowired + private StringRedisTemplate redisTemplate; +- + @Autowired + private RedisCache redisCache; +- + @Autowired + private HttpServletRequest request; +- +- + @Override + public UserResponse login(LoginRequest loginRequest) { +- + Assert.isTrue( + !StringUtils.isAnyBlank(loginRequest.getUserPwd(), + loginRequest.getUserName()),"账号或密码不能为空" +@@ -58,7 +49,6 @@ + Result result = remoteLoginService.login(loginRequest); + User user = result.getData(); + Assert.notNull(user,"该账号不是系统用户"); +- + HashMap map = new HashMap<>(); + String userKey = UUID.randomUUID().toString().replaceAll("-", ""); + map.put(JwtConstants.USER_KEY,userKey); +@@ -76,7 +66,6 @@ + .expired(TokenConstants.EXPIRATION) + .build(); + } +- + @Override + public Result reg(UserReq userReq) { + String password = SecureUtil.md5(userReq.getUserPwd() + "|" +""); +@@ -90,7 +79,6 @@ + ); + return result; + } +- + @Override + public Result sendCode(String userPhone) { + Result result = remoteLoginService.findByPhone(userPhone); +@@ -103,8 +91,6 @@ + + return Result.success("验证码为:"+code,"发送成功"); + } +- +- + @Override + public Result sencCode(String userPhone) { + Result result = remoteLoginService.phoneLogin(userPhone); +@@ -117,8 +103,6 @@ + + return result; + } +- +- + @Override + public Result phoneLogin(PhoneLoginRequest phoneLoginRequest) { + Result result = remoteLoginService.phoneLogin(phoneLoginRequest.getUserPhone()); +Index: bwie-auth/src/main/java/com/bwie/auth/controller/AuthController.java +IDEA additional info: +Subsystem: com.intellij.openapi.diff.impl.patch.BaseRevisionTextPatchEP +<+>package com.bwie.auth.controller;\r\n\r\nimport com.bwie.auth.service.AuthService;\r\nimport com.bwie.common.domain.User;\r\nimport com.bwie.common.domain.request.LoginRequest;\r\nimport com.bwie.common.domain.request.PhoneLoginRequest;\r\nimport com.bwie.common.domain.request.UserReq;\r\nimport com.bwie.common.domain.request.UserResponse;\r\nimport com.bwie.common.result.Result;\r\nimport org.springframework.web.bind.annotation.*;\r\n\r\n\r\n@RestController\r\npublic class AuthController {\r\n\r\n\r\n private final AuthService authService;\r\n\r\n public AuthController(AuthService authService) {\r\n this.authService = authService;\r\n }\r\n\r\n /**\r\n * 登录\r\n * @param loginRequest\r\n * @return\r\n */\r\n @PostMapping(\"/login\")\r\n public Result login(@RequestBody LoginRequest loginRequest){\r\n return Result.success(\r\n authService.login(loginRequest)\r\n );\r\n }\r\n\r\n /**\r\n * 注册\r\n * @param userReq\r\n * @return\r\n */\r\n @PostMapping(\"/reg\")\r\n public Result regUser(@RequestBody UserReq userReq){\r\n return authService.reg(userReq);\r\n }\r\n\r\n /**\r\n * 发送验证码\r\n * @param userPhone\r\n * @return\r\n */\r\n @GetMapping(\"/sendCode/{userPhone}\")\r\n public Result sencCode(@PathVariable(\"userPhone\") String userPhone){\r\n return authService.sendCode(userPhone);\r\n }\r\n\r\n /**\r\n * 手机号登录\r\n * @param userPhone\r\n * @return\r\n */\r\n @PostMapping(\"/sendCode/{userPhone}\")\r\n public Result sendCode(@PathVariable String userPhone){\r\n\r\n Result result = authService.sencCode(userPhone);\r\n\r\n return result;\r\n\r\n }\r\n\r\n /**\r\n * 获取验证码\r\n * @param phoneLoginRequest\r\n * @return\r\n */\r\n @PostMapping(\"/phoneLogin\")\r\n public Result phoneLogin1(@RequestBody PhoneLoginRequest phoneLoginRequest){\r\n Result result = authService.phoneLogin(phoneLoginRequest);\r\n\r\n return Result.success(result);\r\n }\r\n\r\n /**\r\n * 获取用户信息\r\n * @return\r\n */\r\n @GetMapping(\"/info\")\r\n public Result getInfo(){\r\n return Result.success(\r\n authService.getInfo()\r\n );\r\n }\r\n\r\n}\r\n +Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP +<+>UTF-8 +=================================================================== +diff --git a/bwie-auth/src/main/java/com/bwie/auth/controller/AuthController.java b/bwie-auth/src/main/java/com/bwie/auth/controller/AuthController.java +--- a/bwie-auth/src/main/java/com/bwie/auth/controller/AuthController.java (revision 2d23012c0f96b49a2cbaa1b70a111e30550d5c40) ++++ b/bwie-auth/src/main/java/com/bwie/auth/controller/AuthController.java (date 1714439572474) +@@ -1,5 +1,4 @@ + package com.bwie.auth.controller; +- + import com.bwie.auth.service.AuthService; + import com.bwie.common.domain.User; + import com.bwie.common.domain.request.LoginRequest; +@@ -8,18 +7,12 @@ + import com.bwie.common.domain.request.UserResponse; + import com.bwie.common.result.Result; + import org.springframework.web.bind.annotation.*; +- +- + @RestController + public class AuthController { +- +- + private final AuthService authService; +- + public AuthController(AuthService authService) { + this.authService = authService; + } +- + /** + * 登录 + * @param loginRequest +@@ -31,7 +24,6 @@ + authService.login(loginRequest) + ); + } +- + /** + * 注册 + * @param userReq +@@ -41,7 +33,6 @@ + public Result regUser(@RequestBody UserReq userReq){ + return authService.reg(userReq); + } +- + /** + * 发送验证码 + * @param userPhone +@@ -51,7 +42,6 @@ + public Result sencCode(@PathVariable("userPhone") String userPhone){ + return authService.sendCode(userPhone); + } +- + /** + * 手机号登录 + * @param userPhone +@@ -59,13 +49,9 @@ + */ + @PostMapping("/sendCode/{userPhone}") + public Result sendCode(@PathVariable String userPhone){ +- + Result result = authService.sencCode(userPhone); +- + return result; +- + } +- + /** + * 获取验证码 + * @param phoneLoginRequest +@@ -74,10 +60,8 @@ + @PostMapping("/phoneLogin") + public Result phoneLogin1(@RequestBody PhoneLoginRequest phoneLoginRequest){ + Result result = authService.phoneLogin(phoneLoginRequest); +- + return Result.success(result); + } +- + /** + * 获取用户信息 + * @return +@@ -88,5 +72,4 @@ + authService.getInfo() + ); + } +- + } +Index: bwie-modules/bwie-authentica/src/main/java/com/bwie/authentica/vo/IdCheckReq.java +IDEA additional info: +Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP +<+>UTF-8 +=================================================================== +diff --git a/bwie-modules/bwie-authentica/src/main/java/com/bwie/authentica/vo/IdCheckReq.java b/bwie-modules/bwie-authentica/src/main/java/com/bwie/authentica/vo/IdCheckReq.java +new file mode 100644 +--- /dev/null (date 1714529907190) ++++ b/bwie-modules/bwie-authentica/src/main/java/com/bwie/authentica/vo/IdCheckReq.java (date 1714529907190) +@@ -0,0 +1,13 @@ ++package com.bwie.authentica.vo; ++ ++import lombok.AllArgsConstructor; ++import lombok.Data; ++import lombok.NoArgsConstructor; ++ ++@Data ++@AllArgsConstructor ++@NoArgsConstructor ++public class IdCheckReq { ++ private String name; ++ private String idCardNo; ++} +Index: bwie-modules/bwie-authentica/src/main/java/com/bwie/authentica/vo/AuthenReq.java +IDEA additional info: +Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP +<+>UTF-8 +=================================================================== +diff --git a/bwie-modules/bwie-authentica/src/main/java/com/bwie/authentica/vo/AuthenReq.java b/bwie-modules/bwie-authentica/src/main/java/com/bwie/authentica/vo/AuthenReq.java +new file mode 100644 +--- /dev/null (date 1714620185292) ++++ b/bwie-modules/bwie-authentica/src/main/java/com/bwie/authentica/vo/AuthenReq.java (date 1714620185292) +@@ -0,0 +1,28 @@ ++package com.bwie.authentica.vo; ++ ++import lombok.AllArgsConstructor; ++import lombok.Data; ++import lombok.NoArgsConstructor; ++import org.springframework.web.multipart.MultipartFile; ++ ++@Data ++@AllArgsConstructor ++@NoArgsConstructor ++public class AuthenReq { ++ private String motions; ++ private String name; ++ private String idCord; ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++} +Index: bwie-modules/bwie-authentica/src/main/java/com/bwie/authentica/vo/IdData.java +IDEA additional info: +Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP +<+>UTF-8 +=================================================================== +diff --git a/bwie-modules/bwie-authentica/src/main/java/com/bwie/authentica/vo/IdData.java b/bwie-modules/bwie-authentica/src/main/java/com/bwie/authentica/vo/IdData.java +new file mode 100644 +--- /dev/null (date 1714529907184) ++++ b/bwie-modules/bwie-authentica/src/main/java/com/bwie/authentica/vo/IdData.java (date 1714529907184) +@@ -0,0 +1,16 @@ ++package com.bwie.authentica.vo; ++ ++import lombok.AllArgsConstructor; ++import lombok.Data; ++import lombok.NoArgsConstructor; ++ ++@Data ++@AllArgsConstructor ++@NoArgsConstructor ++public class IdData { ++ private Integer result;// 0: 一致,1: 不一致 ++ private String desc;//描述 ++ private String sex;//性别 ++ private String birthday; ++ private String address;//地址 ++} +Index: bwie-modules/bwie-authentica/src/main/java/com/bwie/authentica/vo/IdCheckResponse.java +IDEA additional info: +Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP +<+>UTF-8 +=================================================================== +diff --git a/bwie-modules/bwie-authentica/src/main/java/com/bwie/authentica/vo/IdCheckResponse.java b/bwie-modules/bwie-authentica/src/main/java/com/bwie/authentica/vo/IdCheckResponse.java +new file mode 100644 +--- /dev/null (date 1714532464436) ++++ b/bwie-modules/bwie-authentica/src/main/java/com/bwie/authentica/vo/IdCheckResponse.java (date 1714532464436) +@@ -0,0 +1,18 @@ ++package com.bwie.authentica.vo; ++ ++import lombok.AllArgsConstructor; ++import lombok.Data; ++import lombok.NoArgsConstructor; ++ ++@Data ++@AllArgsConstructor ++@NoArgsConstructor ++public class IdCheckResponse { ++ ++ private Integer code; ++ private String msg; ++ private String taskNo; // 本次请求号 ++ private IdData idData; ++ private String data; ++ ++} +Index: bwie-modules/bwie-authentica/src/main/java/com/bwie/authentica/vo/AliveData.java +IDEA additional info: +Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP +<+>UTF-8 +=================================================================== +diff --git a/bwie-modules/bwie-authentica/src/main/java/com/bwie/authentica/vo/AliveData.java b/bwie-modules/bwie-authentica/src/main/java/com/bwie/authentica/vo/AliveData.java +new file mode 100644 +--- /dev/null (date 1714529907222) ++++ b/bwie-modules/bwie-authentica/src/main/java/com/bwie/authentica/vo/AliveData.java (date 1714529907222) +@@ -0,0 +1,13 @@ ++package com.bwie.authentica.vo; ++ ++import lombok.Data; ++ ++@Data ++public class AliveData{ ++ private boolean passed; ++ private String feature_image_id; ++ private String hack_score; ++ private String order_no; ++ private String motions; ++ private AliveMotions aliveMotions; ++} +Index: bwie-modules/bwie-authentica/src/main/java/com/bwie/authentica/vo/AliveRes.java +IDEA additional info: +Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP +<+>UTF-8 +=================================================================== +diff --git a/bwie-modules/bwie-authentica/src/main/java/com/bwie/authentica/vo/AliveRes.java b/bwie-modules/bwie-authentica/src/main/java/com/bwie/authentica/vo/AliveRes.java +new file mode 100644 +--- /dev/null (date 1714529907231) ++++ b/bwie-modules/bwie-authentica/src/main/java/com/bwie/authentica/vo/AliveRes.java (date 1714529907231) +@@ -0,0 +1,19 @@ ++package com.bwie.authentica.vo; ++ ++import lombok.AllArgsConstructor; ++import lombok.Data; ++import lombok.NoArgsConstructor; ++ ++@Data ++@AllArgsConstructor ++@NoArgsConstructor ++public class AliveRes { ++ ++ private Integer code; ++ private String msg; ++ private String data; ++ private String success; ++ private AliveData aliveData; ++ ++ ++} +Index: bwie-modules/bwie-authentica/src/main/java/com/bwie/authentica/vo/OCRConfig.java +IDEA additional info: +Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP +<+>UTF-8 +=================================================================== +diff --git a/bwie-modules/bwie-authentica/src/main/java/com/bwie/authentica/vo/OCRConfig.java b/bwie-modules/bwie-authentica/src/main/java/com/bwie/authentica/vo/OCRConfig.java +new file mode 100644 +--- /dev/null (date 1714529907213) ++++ b/bwie-modules/bwie-authentica/src/main/java/com/bwie/authentica/vo/OCRConfig.java (date 1714529907213) +@@ -0,0 +1,13 @@ ++package com.bwie.authentica.vo; ++ ++import lombok.AllArgsConstructor; ++import lombok.Data; ++import lombok.NoArgsConstructor; ++ ++@Data ++@AllArgsConstructor ++@NoArgsConstructor ++public class OCRConfig { ++ private String side; ++ private String url; ++} +Index: bwie-modules/bwie-authentica/src/main/java/com/bwie/authentica/controller/AuthenticController.java +IDEA additional info: +Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP +<+>UTF-8 +=================================================================== +diff --git a/bwie-modules/bwie-authentica/src/main/java/com/bwie/authentica/controller/AuthenticController.java b/bwie-modules/bwie-authentica/src/main/java/com/bwie/authentica/controller/AuthenticController.java +new file mode 100644 +--- /dev/null (date 1714620185284) ++++ b/bwie-modules/bwie-authentica/src/main/java/com/bwie/authentica/controller/AuthenticController.java (date 1714620185284) +@@ -0,0 +1,90 @@ ++package com.bwie.authentica.controller; ++ ++import com.bwie.authentica.service.AuthenticaService; ++import com.bwie.authentica.vo.AliveReq; ++import com.bwie.authentica.vo.AuthenReq; ++import com.bwie.authentica.vo.IdCheckReq; ++import com.bwie.authentica.vo.OCRReq; ++import com.bwie.common.result.Result; ++import org.springframework.web.bind.annotation.PostMapping; ++import org.springframework.web.bind.annotation.RequestBody; ++import org.springframework.web.bind.annotation.RequestParam; ++import org.springframework.web.bind.annotation.RestController; ++import org.springframework.web.multipart.MultipartFile; ++ ++import java.io.IOException; ++import java.util.concurrent.ExecutionException; ++ ++@RestController ++public class AuthenticController { ++ private final AuthenticaService authenService; ++ ++ public AuthenticController(AuthenticaService authenService) { ++ this.authenService = authenService; ++ } ++ ++ /** ++ * 解析照片中的文字 ++ * @param ocrReq ++ * @return ++ * @throws IOException ++ */ ++ @PostMapping("ocrScan") ++ public Result ocrScan(@RequestParam String side,@RequestParam("file") MultipartFile url) throws IOException { ++ Result result = authenService.ocrScan(side,url); ++ return result; ++ } ++ ++ /** ++ * 线程异步 ++ * @param authenReq ++ * @return ++ * @throws ExecutionException ++ * @throws InterruptedException ++ */ ++ @PostMapping("commitAuthen") ++ public Result commitAuthen(@RequestBody AuthenReq authenReq, ++ @RequestParam("face") MultipartFile img1, ++ @RequestParam("back") MultipartFile img2, ++ @RequestParam("file") MultipartFile movie ++ ) throws ExecutionException, InterruptedException { ++ Result result = authenService.commitAuthen(authenReq,img1,img2,movie); ++ return result; ++ } ++ ++ ++ /** ++ * 正常上传图片 ++ * @param multipartFile ++ * @return ++ * @throws IOException ++ */ ++ @PostMapping("upload") ++ public Result upload(@RequestParam("file") MultipartFile multipartFile) throws IOException { ++ return authenService.upload(multipartFile); ++ } ++ ++ ++ /** ++ * 校验身份证中的内容 ++ * @param ocrReq ++ * @return ++ */ ++ @PostMapping("idCheck") ++ public Result idCheck(@RequestBody IdCheckReq ocrReq) { ++ Result result = authenService.idCheck(ocrReq); ++ return result; ++ } ++ ++ /** ++ * 活体检测 ++ * @param ocrReq ++ * @return ++ */ ++ @PostMapping("alive") ++ public Result alive(@RequestBody AliveReq ocrReq) { ++ Result result = authenService.alive(ocrReq); ++ return result; ++ } ++ ++} +Index: bwie-modules/bwie-authentica/src/main/java/com/bwie/authentica/vo/AliveMotions.java +IDEA additional info: +Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP +<+>UTF-8 +=================================================================== +diff --git a/bwie-modules/bwie-authentica/src/main/java/com/bwie/authentica/vo/AliveMotions.java b/bwie-modules/bwie-authentica/src/main/java/com/bwie/authentica/vo/AliveMotions.java +new file mode 100644 +--- /dev/null (date 1714529907242) ++++ b/bwie-modules/bwie-authentica/src/main/java/com/bwie/authentica/vo/AliveMotions.java (date 1714529907242) +@@ -0,0 +1,11 @@ ++package com.bwie.authentica.vo; ++ ++import lombok.Data; ++ ++@Data ++public class AliveMotions{ ++ private Double score; ++ private String motion; ++ private boolean passed; ++ ++} +Index: bwie-modules/bwie-authentica/src/main/java/com/bwie/authentica/service/AuthenticaService.java +IDEA additional info: +Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP +<+>UTF-8 +=================================================================== +diff --git a/bwie-modules/bwie-authentica/src/main/java/com/bwie/authentica/service/AuthenticaService.java b/bwie-modules/bwie-authentica/src/main/java/com/bwie/authentica/service/AuthenticaService.java +new file mode 100644 +--- /dev/null (date 1714620185297) ++++ b/bwie-modules/bwie-authentica/src/main/java/com/bwie/authentica/service/AuthenticaService.java (date 1714620185297) +@@ -0,0 +1,59 @@ ++package com.bwie.authentica.service; ++ ++import com.bwie.authentica.vo.AliveReq; ++import com.bwie.authentica.vo.AuthenReq; ++import com.bwie.authentica.vo.IdCheckReq; ++import com.bwie.authentica.vo.OCRReq; ++import com.bwie.common.result.Result; ++import org.springframework.web.multipart.MultipartFile; ++ ++import java.io.IOException; ++import java.util.concurrent.ExecutionException; ++ ++public interface AuthenticaService { ++ ++ /** ++ *上传照片,解析照片中的文字 ++ * @param ocrReq ++ * @return ++ * @throws IOException ++ */ ++ Result ocrScan(String side,MultipartFile url) throws IOException; ++ ++ /** ++ * 线程异步解决的方法 ++ * @param authenReq ++ * @return ++ * @throws ExecutionException ++ * @throws InterruptedException ++ */ ++ Result commitAuthen(AuthenReq authenReq, ++ MultipartFile img1, ++ MultipartFile img2, ++ MultipartFile movie ++ ) throws ExecutionException, InterruptedException; ++ ++ ++ /** ++ * 图片上传 ++ * @param multipartFile ++ * @return ++ * @throws IOException ++ */ ++ Result upload(MultipartFile multipartFile) throws IOException; ++ ++ ++ /** ++ * 校验身份证中的内容 ++ * @param ocrReq ++ * @return ++ */ ++ Result idCheck(IdCheckReq ocrReq); ++ ++ /** ++ * 活体检测 ++ * @param ocrReq ++ * @return ++ */ ++ Result alive(AliveReq ocrReq); ++} +Index: bwie-modules/bwie-authentica/src/main/java/com/bwie/authentica/util/OCRUtil.java +IDEA additional info: +Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP +<+>UTF-8 +=================================================================== +diff --git a/bwie-modules/bwie-authentica/src/main/java/com/bwie/authentica/util/OCRUtil.java b/bwie-modules/bwie-authentica/src/main/java/com/bwie/authentica/util/OCRUtil.java +new file mode 100644 +--- /dev/null (date 1714533640267) ++++ b/bwie-modules/bwie-authentica/src/main/java/com/bwie/authentica/util/OCRUtil.java (date 1714533640267) +@@ -0,0 +1,84 @@ ++package com.bwie.authentica.util; ++ ++import cn.hutool.core.codec.Base64; ++import cn.hutool.http.HttpUtil; ++import com.alibaba.fastjson.JSON; ++import com.alibaba.fastjson.JSONObject; ++ ++import com.bwie.authentica.vo.OCRReq; ++import com.bwie.authentica.vo.OCRResponse; ++import org.springframework.beans.factory.annotation.Value; ++import org.springframework.context.annotation.Configuration; ++import org.springframework.web.multipart.MultipartFile; ++ ++import java.io.IOException; ++ ++ ++@Configuration ++public class OCRUtil { ++ @Value("${ocr.appcode}") ++ private String appcode; ++ @Value("${ocr.host}") ++ private String host; ++ @Value("${ocr.Content-Type}") ++ private String contentType; ++ @Value("${ocr.path}") ++ private String path; ++ ++ public OCRResponse send(String side, MultipartFile url) throws IOException { ++ ++ ++// 对图像进行base64编码 ++ ++ String encode = Base64.encode(url.getBytes()); ++ ++// 拼装请求body的json字符串 ++ JSONObject requestObj = new JSONObject(); ++ requestObj.put("image", encode); ++ requestObj.put("side", side); // 假设ocrReq有getSide()方法返回要识别的身份证面(正/反) ++// 如果API还有其他配置参数,可以从ocrReq中获取并添加到requestObj中 ++ ++ String bodys = requestObj.toString(); ++ ++ try { ++ // 创建并执行POST请求 ++ String result = HttpUtil.createPost(host + path) // 不在URL中拼接查询参数,因为我们将它们放在请求体中 ++ .header("Authorization", "APPCODE " + appcode) ++ .header("Content-Type", contentType) // 确保这里与headers中的Content-Type一致 ++ .body(bodys) // 设置请求体 ++ .execute() ++ .body(); ++ ++ System.out.println("result = " + result); ++ ++ OCRResponse msgResponse = JSON.parseObject(result, OCRResponse.class); ++ ++ // 检查是否成功,而不是使用Assert(Assert通常用于测试) ++ if (!msgResponse.equals("true")) { ++ // 处理失败情况,例如记录日志或返回错误信息给调用者 ++ throw new RuntimeException("扫描失败" ); // 假设OCRResponse有一个getErrorMessage方法 ++ } ++ ++ // 成功处理逻辑 ++ return msgResponse; ++ } catch (Exception e) { ++ // 处理异常,例如记录日志或返回错误信息给调用者 ++ e.printStackTrace(); ++ throw new RuntimeException("请求OCR服务时发生异常", e); ++ } ++ ++ } ++ ++ ++ ++ ++} ++ ++ ++ ++ ++ ++ ++ ++ ++ +Index: bwie-modules/bwie-authentica/src/main/java/com/bwie/authentica/service/impl/AuthenticaServiceImpl.java +IDEA additional info: +Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP +<+>UTF-8 +=================================================================== +diff --git a/bwie-modules/bwie-authentica/src/main/java/com/bwie/authentica/service/impl/AuthenticaServiceImpl.java b/bwie-modules/bwie-authentica/src/main/java/com/bwie/authentica/service/impl/AuthenticaServiceImpl.java +new file mode 100644 +--- /dev/null (date 1714631203319) ++++ b/bwie-modules/bwie-authentica/src/main/java/com/bwie/authentica/service/impl/AuthenticaServiceImpl.java (date 1714631203319) +@@ -0,0 +1,156 @@ ++package com.bwie.authentica.service.impl; ++ ++import com.bwie.authentica.service.AuthenticaService; ++import com.bwie.authentica.util.*; ++import com.bwie.authentica.vo.*; ++import com.bwie.common.result.Result; ++import lombok.extern.log4j.Log4j2; ++import org.springframework.stereotype.Service; ++import org.springframework.web.multipart.MultipartFile; ++ ++import java.io.*; ++import java.util.concurrent.CompletableFuture; ++import java.util.concurrent.ExecutionException; ++import java.util.concurrent.ThreadPoolExecutor; ++ ++@Service ++@Log4j2 ++public class AuthenticaServiceImpl implements AuthenticaService{ ++ ++ private final OSSupload osSupload; ++ private final IdCheckUtil idCheckUtil; ++ private final OCRUtil ocrUtil; ++ private final AliveUtil aliveUtil; ++ private final ThreadPoolExecutorConfig config; ++ ++ ++ public AuthenticaServiceImpl(OSSupload osSupload, IdCheckUtil idCheckUtil, OCRUtil ocrUtil, AliveUtil aliveUtil, ThreadPoolExecutorConfig config) { ++ this.osSupload = osSupload; ++ this.idCheckUtil = idCheckUtil; ++ this.ocrUtil = ocrUtil; ++ this.aliveUtil = aliveUtil; ++ this.config = config; ++ } ++ ++ /** ++ *处理图片中的文字,上传文件 ++ * @param ++ * @return ++ * @throws IOException ++ */ ++ // private String side; ++ // private MultipartFile url; ++ @Override ++ public Result ocrScan(String side,MultipartFile url) throws IOException { ++ OCRResponse send = ocrUtil.send(side,url); ++ return Result.success(send); ++ } ++ ++ /** ++ *异步线程解决方案 ++ * @param authenReq ++ * @return ++ * @throws ExecutionException ++ * @throws InterruptedException ++ */ ++ @Override ++ public Result commitAuthen(AuthenReq authenReq,MultipartFile img1,MultipartFile img2,MultipartFile movie) throws ExecutionException, InterruptedException { ++ ThreadPoolExecutor threadPoolExecutor = config.threadPoolExecutor(); ++ CompletableFuture f1 = CompletableFuture.supplyAsync(() -> { ++ IdCheckReq idCheckReq = new IdCheckReq(); ++ idCheckReq.setName(authenReq.getName()); ++ idCheckReq.setIdCardNo(authenReq.getIdCord()); ++ IdCheckResponse idcheck = idCheckUtil.idcheck(idCheckReq); ++ return idcheck.getIdData().getResult(); ++ },threadPoolExecutor); ++ CompletableFuture f2= CompletableFuture.supplyAsync(() -> { ++ String upload = null; ++ try { ++ upload = osSupload.upload(movie); ++ } catch (IOException e) { ++ throw new RuntimeException(e); ++ } ++ if(upload==null){ ++ return false; ++ } ++ //url添加数据库 ++ AliveReq aliveReq = new AliveReq(); ++ aliveReq.setUrl(upload); ++ aliveReq.setMotions(authenReq.getMotions()); ++ AliveRes alive = aliveUtil.alive(aliveReq); ++ String success = alive.getSuccess(); ++ return success; ++ },threadPoolExecutor); ++ CompletableFuture f3 = CompletableFuture.supplyAsync(() -> { ++ String upload = null; ++ try { ++ upload = osSupload.upload(img2); ++ } catch (IOException e) { ++ throw new RuntimeException(e); ++ } ++ String upload2 = null; ++ try { ++ upload2 = osSupload.upload(movie); ++ } catch (IOException e) { ++ throw new RuntimeException(e); ++ } ++ if(upload==null ||upload2==null){ ++ return 1; ++ } ++ //存入数据库 ++ return 0; ++ },threadPoolExecutor); ++ ++ Integer i = f1.get(); ++ Serializable serializable = f2.get(); ++ Integer b1 = f3.get(); ++ ++ if ((i == 0) && serializable.equals("true")||b1==0) { ++ return Result.success(); ++ } ++ return Result.error(); ++ } ++ ++ /** ++ *图片上传功能 ++ * @param multipartFile ++ * @return ++ * @throws IOException ++ */ ++ @Override ++ public Result upload(MultipartFile multipartFile) throws IOException { ++ String upload = osSupload.upload(multipartFile); ++ if(upload==null && upload.equals("")){ ++ return Result.error("图片上传失败,请检查一下!!!!!"); ++ } ++ return Result.success(upload); ++ } ++ ++ /** ++ *身份证信息校验 ++ * @param ocrReq ++ * @return ++ */ ++ @Override ++ public Result idCheck(IdCheckReq ocrReq) { ++ IdCheckResponse idcheck = idCheckUtil.idcheck(ocrReq); ++ if(idcheck!=null && !idcheck.getCode().equals(200)){ ++ return Result.error("需要上传的图片不是正确的图片"); ++ } ++ return Result.success(idcheck); ++ } ++ ++ /** ++ * 活体视频上传 ++ * @param ocrReq ++ * @return ++ */ ++ @Override ++ public Result alive(AliveReq ocrReq) { ++ AliveRes alive = aliveUtil.alive(ocrReq); ++ if(alive!=null && alive.getCode().equals(200)){ ++ return Result.error("需要上传的视频不过关,请重新上传!!!!!"); ++ } ++ return Result.success(alive); ++ } ++} +Index: bwie-modules/bwie-authentica/src/main/java/com/bwie/authentica/util/IdCheckUtil.java +IDEA additional info: +Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP +<+>UTF-8 +=================================================================== +diff --git a/bwie-modules/bwie-authentica/src/main/java/com/bwie/authentica/util/IdCheckUtil.java b/bwie-modules/bwie-authentica/src/main/java/com/bwie/authentica/util/IdCheckUtil.java +new file mode 100644 +--- /dev/null (date 1714530040403) ++++ b/bwie-modules/bwie-authentica/src/main/java/com/bwie/authentica/util/IdCheckUtil.java (date 1714530040403) +@@ -0,0 +1,66 @@ ++package com.bwie.authentica.util; ++ ++import cn.hutool.http.HttpUtil; ++import com.alibaba.fastjson.JSON; ++ ++import com.bwie.authentica.vo.IdCheckReq; ++import com.bwie.authentica.vo.IdCheckResponse; ++import com.bwie.authentica.vo.IdData; ++import org.springframework.beans.factory.annotation.Value; ++import org.springframework.context.annotation.Configuration; ++ ++import java.util.HashMap; ++import java.util.Map; ++ ++@Configuration ++public class IdCheckUtil { ++ @Value("${idcheck.appcode}") ++ private String appcode; ++ @Value("${idcheck.host}") ++ private String host; ++ @Value("${idcheck.path}") ++ private String path; ++ ++ ++public IdCheckResponse idcheck(IdCheckReq idCheckReq){ ++ ++ Map stringStringMap = new HashMap<>(); ++ stringStringMap.put("name", idCheckReq.getName()); ++ stringStringMap.put("idCardNo", idCheckReq.getIdCardNo()); ++ String result = HttpUtil.createPost(host + path) // 不在URL中拼接查询参数,因为我们将它们放在请求体中 ++ .header("Authorization", "APPCODE " + appcode) ++ .form(stringStringMap) ++ .execute() ++ .body(); ++ System.out.println("result = " + result); ++ IdCheckResponse msgResponse = JSON.parseObject(result, IdCheckResponse.class); ++ IdData idData = JSON.parseObject(msgResponse.getData(), IdData.class); ++ msgResponse.setIdData(idData); ++ if(msgResponse.getCode()!=200){ ++ System.out.println("msgResponse = -------------------" + msgResponse); ++ throw new RuntimeException(msgResponse.getMsg()); ++ } ++ return msgResponse; ++ ++ ++ ++ ++} ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++} +Index: bwie-modules/bwie-authentica/src/main/java/com/bwie/authentica/util/AliveUtil.java +IDEA additional info: +Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP +<+>UTF-8 +=================================================================== +diff --git a/bwie-modules/bwie-authentica/src/main/java/com/bwie/authentica/util/AliveUtil.java b/bwie-modules/bwie-authentica/src/main/java/com/bwie/authentica/util/AliveUtil.java +new file mode 100644 +--- /dev/null (date 1714530040418) ++++ b/bwie-modules/bwie-authentica/src/main/java/com/bwie/authentica/util/AliveUtil.java (date 1714530040418) +@@ -0,0 +1,63 @@ ++package com.bwie.authentica.util; ++ ++import cn.hutool.http.HttpUtil; ++import com.alibaba.fastjson.JSON; ++ ++import com.bwie.authentica.vo.AliveData; ++import com.bwie.authentica.vo.AliveMotions; ++import com.bwie.authentica.vo.AliveReq; ++import com.bwie.authentica.vo.AliveRes; ++import org.springframework.beans.factory.annotation.Value; ++import org.springframework.context.annotation.Configuration; ++ ++import java.util.HashMap; ++import java.util.Map; ++ ++ ++@Configuration ++public class AliveUtil { ++ @Value("${alive.appcode}") ++ private String appcode; ++ @Value("${alive.host}") ++ private String host; ++ ++ public AliveRes alive(AliveReq aliveReq){ ++ Map stringStringMap = new HashMap<>(); ++ stringStringMap.put("url", aliveReq.getUrl()); ++ stringStringMap.put("motions", aliveReq.getMotions()); ++ String result = HttpUtil.createPost(host ) // 不在URL中拼接查询参数,因为我们将它们放在请求体中 ++ .header("Authorization", "APPCODE " + appcode) ++ .form(stringStringMap) ++ .execute() ++ .body(); ++ System.out.println("result = " + result); ++ AliveRes aliveRes = JSON.parseObject(result, AliveRes.class); ++ AliveData aliveData = JSON.parseObject(aliveRes.getData(), AliveData.class); ++ AliveMotions aliveMotions = JSON.parseObject(aliveData.getMotions(), AliveMotions.class); ++ aliveData.setAliveMotions(aliveMotions); ++ aliveRes.setAliveData(aliveData); ++// msgResponse.setIdData(idData); ++ if(aliveRes.getCode()!=200){ ++ System.out.println("msgResponse = -------------------" + aliveRes.getMsg()); ++ throw new RuntimeException(aliveRes.getMsg()); ++ } ++ return aliveRes; ++ ++ } ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++} +Index: bwie-modules/bwie-authentica/src/main/java/com/bwie/authentica/mapper/AuthenticaMapper.java +IDEA additional info: +Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP +<+>UTF-8 +=================================================================== +diff --git a/bwie-modules/bwie-authentica/src/main/java/com/bwie/authentica/mapper/AuthenticaMapper.java b/bwie-modules/bwie-authentica/src/main/java/com/bwie/authentica/mapper/AuthenticaMapper.java +new file mode 100644 +--- /dev/null (date 1714528976387) ++++ b/bwie-modules/bwie-authentica/src/main/java/com/bwie/authentica/mapper/AuthenticaMapper.java (date 1714528976387) +@@ -0,0 +1,5 @@ ++package com.bwie.authentica.mapper; ++ ++public interface AuthenticaMapper { ++ ++} +Index: bwie-modules/bwie-authentica/src/main/java/com/bwie/authentica/util/OSSupload.java +IDEA additional info: +Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP +<+>UTF-8 +=================================================================== +diff --git a/bwie-modules/bwie-authentica/src/main/java/com/bwie/authentica/util/OSSupload.java b/bwie-modules/bwie-authentica/src/main/java/com/bwie/authentica/util/OSSupload.java +new file mode 100644 +--- /dev/null (date 1714529907226) ++++ b/bwie-modules/bwie-authentica/src/main/java/com/bwie/authentica/util/OSSupload.java (date 1714529907226) +@@ -0,0 +1,105 @@ ++package com.bwie.authentica.util; ++ ++import com.aliyun.oss.OSSClient; ++import com.aliyun.oss.model.ObjectMetadata; ++import lombok.extern.log4j.Log4j2; ++import org.springframework.beans.factory.annotation.Value; ++import org.springframework.context.annotation.Configuration; ++import org.springframework.web.multipart.MultipartFile; ++ ++import java.io.ByteArrayInputStream; ++import java.io.IOException; ++import java.security.SecureRandom; ++import java.text.SimpleDateFormat; ++import java.util.Date; ++@Log4j2 ++@Configuration ++public class OSSupload { ++ @Value("${aliyun.end-point}") ++ private String endPoint; ++ ++ ++ @Value("${aliyun.access-key-id}") ++ private String accessKeyId; ++ ++ @Value("${aliyun.access-key-secret}") ++ private String accesskeySecret; ++ ++// @Value("${aliyun.access-pre}") ++// private String accessPre; ++ ++ @Value("${aliyun.bucket-name}") ++ private String bucketName; ++ ++ public String upload(MultipartFile multipartFile) throws IOException { ++ ++ ++ OSSClient ossClient = new OSSClient(endPoint, accessKeyId, accesskeySecret); ++ SimpleDateFormat sdf = new SimpleDateFormat("yyyyMMdd"); ++// 获取文件名 ++ String fileName = multipartFile.getOriginalFilename(); ++// 获取文件后缀名 ++ String suffixName = fileName.substring(fileName.lastIndexOf(".")); ++// 最后上传生成的文件名 ++ String finalFileName = System.currentTimeMillis() + "" + new SecureRandom().nextInt(0x0400) + suffixName; ++// oss中的文件夹名 ++ String objectName = sdf.format(new Date()) + "/" + finalFileName; ++// 创建上传文件的元信息,可以通过文件元信息设置HTTP header(设置了才能通过返回的链接直接访问)。 ++ ObjectMetadata objectMetadata = new ObjectMetadata(); ++ String contentType = getcontentType(suffixName.substring(suffixName.lastIndexOf("."))); // 注意这里加1 ++ objectMetadata.setContentType(contentType); ++ // 设置Content-Disposition为inline ++ objectMetadata.setContentDisposition("inline"); ++// 文件上传 ++ ossClient.putObject(bucketName, objectName, new ByteArrayInputStream(multipartFile.getBytes()), objectMetadata); ++//// 设置URL过期时间为1小时。 ++// Date expiration = new Date(System.currentTimeMillis() + 3600 * 1000); ++ // 构造对象的完整URL ++ String url = "http://" + bucketName + "." + endPoint + "/" + objectName; ++ ++ log.info("阿里云OSS的文件url:{}", url); ++ ossClient.shutdown(); ++ return url; ++ } ++ public static String getcontentType(String FilenameExtension) { ++ if (FilenameExtension.equalsIgnoreCase(".bmp")) { ++ return "image/bmp"; ++ } ++ if (FilenameExtension.equalsIgnoreCase(".gif")) { ++ return "image/gif"; ++ } ++ if (FilenameExtension.equalsIgnoreCase(".jpeg") || ++ FilenameExtension.equalsIgnoreCase(".jpg") || ++ FilenameExtension.equalsIgnoreCase(".png")) { ++ return "image/jpg"; ++ } ++ if (FilenameExtension.equalsIgnoreCase(".html")) { ++ return "text/html"; ++ } ++ if (FilenameExtension.equalsIgnoreCase(".txt")) { ++ return "text/plain"; ++ } ++ if (FilenameExtension.equalsIgnoreCase(".vsd")) { ++ return "application/vnd.visio"; ++ } ++ if (FilenameExtension.equalsIgnoreCase(".pptx") || ++ FilenameExtension.equalsIgnoreCase(".ppt")) { ++ return "application/vnd.ms-powerpoint"; ++ } ++ if (FilenameExtension.equalsIgnoreCase(".docx") || ++ FilenameExtension.equalsIgnoreCase(".doc")) { ++ return "application/msword"; ++ } ++ if (FilenameExtension.equalsIgnoreCase(".xml")) { ++ return "text/xml"; ++ } ++ return "image/jpg"; ++ } ++ ++ ++ ++ ++ ++ ++ ++} +Index: bwie-modules/bwie-authentica/src/main/java/com/bwie/authentica/util/ThreadPoolExecutorConfig.java +IDEA additional info: +Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP +<+>UTF-8 +=================================================================== +diff --git a/bwie-modules/bwie-authentica/src/main/java/com/bwie/authentica/util/ThreadPoolExecutorConfig.java b/bwie-modules/bwie-authentica/src/main/java/com/bwie/authentica/util/ThreadPoolExecutorConfig.java +new file mode 100644 +--- /dev/null (date 1714529907217) ++++ b/bwie-modules/bwie-authentica/src/main/java/com/bwie/authentica/util/ThreadPoolExecutorConfig.java (date 1714529907217) +@@ -0,0 +1,31 @@ ++package com.bwie.authentica.util; ++ ++import lombok.extern.log4j.Log4j2; ++import org.springframework.beans.factory.annotation.Value; ++import org.springframework.context.annotation.Bean; ++import org.springframework.context.annotation.Configuration; ++ ++import java.util.concurrent.LinkedBlockingQueue; ++import java.util.concurrent.ThreadPoolExecutor; ++import java.util.concurrent.TimeUnit; ++ ++@Configuration ++@Log4j2 ++public class ThreadPoolExecutorConfig { ++ @Value("${authen.coreSize}") ++ private Integer coreSize; ++ @Value("${authen.coreMax}") ++ private Integer coreMax; ++ ++ ++ ++ @Bean ++ public ThreadPoolExecutor threadPoolExecutor(){ ++// int coreSize = 3 * Runtime.getRuntime().availableProcessors(); ++// int coreMax = coreSize + 30; ++ ThreadPoolExecutor threadPoolExecutor = new ThreadPoolExecutor(coreSize, coreMax, 5, TimeUnit.SECONDS, ++ new LinkedBlockingQueue<>(100)); ++ return threadPoolExecutor; ++ } ++ ++} +Index: bwie-modules/bwie-authentica/src/main/resources/bootstrap.yml +IDEA additional info: +Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP +<+>UTF-8 +=================================================================== +diff --git a/bwie-modules/bwie-authentica/src/main/resources/bootstrap.yml b/bwie-modules/bwie-authentica/src/main/resources/bootstrap.yml +new file mode 100644 +--- /dev/null (date 1714531039894) ++++ b/bwie-modules/bwie-authentica/src/main/resources/bootstrap.yml (date 1714531039894) +@@ -0,0 +1,56 @@ ++# Tomcat ++server: ++ port: 9002 ++# Spring ++spring: ++ main: ++ allow-circular-references: true ++ allow-bean-definition-overriding: true ++ jackson: ++ date-format: yyyy-MM-dd HH:mm:ss ++ time-zone: GMT+8 ++ application: ++ # 应用名称 ++ name: bwie-User ++ profiles: ++ # 环境配置 ++ active: dev ++ cloud: ++ nacos: ++ discovery: ++ # 服务注册地址 ++ server-addr: 124.221.30.134:8848 ++ config: ++ # 配置中心地址 ++ server-addr: 124.221.30.134:8848 ++ # 配置文件格式 ++ file-extension: yml ++ # 共享配置 ++ shared-configs: ++ - application-${spring.profiles.active}.${spring.cloud.nacos.config.file-extension} ++ ++aliyun: ++ end-point: oss-cn-shanghai.aliyuncs.com ++ access-key-id: LTAI5tLHZKYrEbp5FVPa1r6g ++ access-key-secret: 5gvXdYPNlD7orfh8NpVqVhP3m6c0Ki ++ # access-pre: https://dongxiaojie.oss-cn-shanghai.aliyuncs.com ++ bucket-name: yaoguai ++ocr: ++ host: https://cardnumber.market.alicloudapi.com ++ path: /rest/160601/ocr/ocr_idcard.json ++ appcode: b68e7fad75214f59ba0b2799b7fb9e7c ++ Content-Type: application/json; charset=UTF-8 ++ ++idcheck: ++ host: https://jumdata.market.alicloudapi.com ++ path: /idcard/validate ++ appcode: b68e7fad75214f59ba0b2799b7fb9e7c ++ ++alive: ++ appcode: b68e7fad75214f59ba0b2799b7fb9e7c ++ host: https://life.shumaidata.com/checklife ++ ++ ++authen: ++ coreSize: 21 ++ coreMax: 51 +Index: bwie-modules/pom.xml +IDEA additional info: +Subsystem: com.intellij.openapi.diff.impl.patch.BaseRevisionTextPatchEP +<+>\r\n\r\n 4.0.0\r\n \r\n com.bwie\r\n shopping_project\r\n 1.0.0\r\n \r\n\r\n bwie-modules\r\n pom\r\n \r\n bwie-system\r\n bwie-team\r\n bwie-alipay\r\n \r\n\r\n \r\n 8\r\n 8\r\n UTF-8\r\n \r\n\r\n\r\n +Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP +<+>UTF-8 +=================================================================== +diff --git a/bwie-modules/pom.xml b/bwie-modules/pom.xml +--- a/bwie-modules/pom.xml (revision 2d23012c0f96b49a2cbaa1b70a111e30550d5c40) ++++ b/bwie-modules/pom.xml (date 1714526333537) +@@ -15,6 +15,7 @@ + bwie-system + bwie-team + bwie-alipay ++ bwie-authentica + + + +Index: bwie-modules/bwie-authentica/src/main/java/com/bwie/authentica/vo/OCRReq.java +IDEA additional info: +Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP +<+>UTF-8 +=================================================================== +diff --git a/bwie-modules/bwie-authentica/src/main/java/com/bwie/authentica/vo/OCRReq.java b/bwie-modules/bwie-authentica/src/main/java/com/bwie/authentica/vo/OCRReq.java +new file mode 100644 +--- /dev/null (date 1714529907173) ++++ b/bwie-modules/bwie-authentica/src/main/java/com/bwie/authentica/vo/OCRReq.java (date 1714529907173) +@@ -0,0 +1,14 @@ ++package com.bwie.authentica.vo; ++ ++import lombok.Data; ++import lombok.NoArgsConstructor; ++import org.springframework.web.multipart.MultipartFile; ++ ++@Data ++@NoArgsConstructor ++public class OCRReq { ++ private String side; ++ private MultipartFile url; ++ ++ ++} +Index: .idea/encodings.xml +IDEA additional info: +Subsystem: com.intellij.openapi.diff.impl.patch.BaseRevisionTextPatchEP +<+>\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n +Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP +<+>UTF-8 +=================================================================== +diff --git a/.idea/encodings.xml b/.idea/encodings.xml +--- a/.idea/encodings.xml (revision 2d23012c0f96b49a2cbaa1b70a111e30550d5c40) ++++ b/.idea/encodings.xml (date 1714526345328) +@@ -8,6 +8,7 @@ + + + ++ + + + +Index: bwie-modules/bwie-authentica/src/main/java/com/bwie/authentica/vo/OCRResponse.java +IDEA additional info: +Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP +<+>UTF-8 +=================================================================== +diff --git a/bwie-modules/bwie-authentica/src/main/java/com/bwie/authentica/vo/OCRResponse.java b/bwie-modules/bwie-authentica/src/main/java/com/bwie/authentica/vo/OCRResponse.java +new file mode 100644 +--- /dev/null (date 1714532776619) ++++ b/bwie-modules/bwie-authentica/src/main/java/com/bwie/authentica/vo/OCRResponse.java (date 1714532776619) +@@ -0,0 +1,19 @@ ++package com.bwie.authentica.vo; ++ ++import lombok.AllArgsConstructor; ++import lombok.Data; ++import lombok.NoArgsConstructor; ++ ++@Data ++@AllArgsConstructor ++@NoArgsConstructor ++public class OCRResponse { ++ ++ private String address; ++ private String name; ++ private String sex; ++ private String num; ++ private String birth; ++ private boolean success; ++ ++} +Index: bwie-modules/bwie-authentica/src/main/java/com/bwie/authentica/vo/AliveReq.java +IDEA additional info: +Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP +<+>UTF-8 +=================================================================== +diff --git a/bwie-modules/bwie-authentica/src/main/java/com/bwie/authentica/vo/AliveReq.java b/bwie-modules/bwie-authentica/src/main/java/com/bwie/authentica/vo/AliveReq.java +new file mode 100644 +--- /dev/null (date 1714529907249) ++++ b/bwie-modules/bwie-authentica/src/main/java/com/bwie/authentica/vo/AliveReq.java (date 1714529907249) +@@ -0,0 +1,14 @@ ++package com.bwie.authentica.vo; ++ ++import lombok.AllArgsConstructor; ++import lombok.Data; ++import lombok.NoArgsConstructor; ++ ++ ++@Data ++@AllArgsConstructor ++@NoArgsConstructor ++public class AliveReq { ++ private String url; ++ private String motions; ++} +Index: bwie-modules/bwie-authentica/src/main/java/com/bwie/authentica/AuthemticaApplication.java +IDEA additional info: +Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP +<+>UTF-8 +=================================================================== +diff --git a/bwie-modules/bwie-authentica/src/main/java/com/bwie/authentica/AuthemticaApplication.java b/bwie-modules/bwie-authentica/src/main/java/com/bwie/authentica/AuthemticaApplication.java +new file mode 100644 +--- /dev/null (date 1714530040409) ++++ b/bwie-modules/bwie-authentica/src/main/java/com/bwie/authentica/AuthemticaApplication.java (date 1714530040409) +@@ -0,0 +1,12 @@ ++package com.bwie.authentica; ++ ++import org.springframework.boot.SpringApplication; ++import org.springframework.boot.autoconfigure.SpringBootApplication; ++ ++@SpringBootApplication ++public class AuthemticaApplication { ++ ++ public static void main(String[] args) { ++ SpringApplication.run(AuthemticaApplication.class); ++ } ++} +Index: bwie-modules/bwie-alipay/src/main/java/com/bwie/alipay/demo/service/SubscriberImpl.java +IDEA additional info: +Subsystem: com.intellij.openapi.diff.impl.patch.BaseRevisionTextPatchEP +<+>package com.bwie.alipay.demo.service;\r\n\r\nimport com.bwie.alipay.demo.Subscriber;\r\nimport lombok.AllArgsConstructor;\r\nimport lombok.Data;\r\n\r\n@Data\r\n@AllArgsConstructor\r\npublic class SubscriberImpl implements Subscriber {\r\n private String name;\r\n\r\n @Override\r\n public void update(String message) {\r\n System.out.println(name + \"---接到消息: \" + message);\r\n }\r\n\r\n}\r\n +Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP +<+>UTF-8 +=================================================================== +diff --git a/bwie-modules/bwie-alipay/src/main/java/com/bwie/alipay/demo/service/SubscriberImpl.java b/bwie-modules/bwie-alipay/src/main/java/com/bwie/alipay/demo/service/SubscriberImpl.java +--- a/bwie-modules/bwie-alipay/src/main/java/com/bwie/alipay/demo/service/SubscriberImpl.java (revision 2d23012c0f96b49a2cbaa1b70a111e30550d5c40) ++++ b/bwie-modules/bwie-alipay/src/main/java/com/bwie/alipay/demo/service/SubscriberImpl.java (date 1714444003758) +@@ -1,17 +1,13 @@ + package com.bwie.alipay.demo.service; +- + import com.bwie.alipay.demo.Subscriber; + import lombok.AllArgsConstructor; + import lombok.Data; +- + @Data + @AllArgsConstructor + public class SubscriberImpl implements Subscriber { + private String name; +- + @Override + public void update(String message) { + System.out.println(name + "---接到消息: " + message); + } +- + } +Index: bwie-modules/bwie-authentica/src/main/resources/mapper/MonitorPer.xml +IDEA additional info: +Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP +<+>UTF-8 +=================================================================== +diff --git a/bwie-modules/bwie-authentica/src/main/resources/mapper/MonitorPer.xml b/bwie-modules/bwie-authentica/src/main/resources/mapper/MonitorPer.xml +new file mode 100644 +--- /dev/null (date 1714528976406) ++++ b/bwie-modules/bwie-authentica/src/main/resources/mapper/MonitorPer.xml (date 1714528976406) +@@ -0,0 +1,5 @@ ++ ++ ++ ++ ++ +Index: bwie-modules/bwie-authentica/pom.xml +IDEA additional info: +Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP +<+>UTF-8 +=================================================================== +diff --git a/bwie-modules/bwie-authentica/pom.xml b/bwie-modules/bwie-authentica/pom.xml +new file mode 100644 +--- /dev/null (date 1714529907201) ++++ b/bwie-modules/bwie-authentica/pom.xml (date 1714529907201) +@@ -0,0 +1,67 @@ ++ ++ ++ 4.0.0 ++ ++ com.bwie ++ bwie-modules ++ 1.0.0 ++ ++ ++ bwie-authentica ++ ++ ++ 17 ++ 17 ++ UTF-8 ++ ++ ++ ++ ++ com.bwie ++ bwie-common ++ ++ ++ ++ org.springframework.boot ++ spring-boot-starter-web ++ ++ ++ ++ ++ com.alibaba ++ druid-spring-boot-starter ++ 1.2.8 ++ ++ ++ ++ mysql ++ mysql-connector-java ++ ++ ++ ++ org.mybatis.spring.boot ++ mybatis-spring-boot-starter ++ 2.2.2 ++ ++ ++ ++ ++ com.github.pagehelper ++ pagehelper-spring-boot-starter ++ 1.4.1 ++ ++ ++ ++ org.springframework.boot ++ spring-boot-starter-test ++ test ++ ++ ++ com.aliyun.oss ++ aliyun-sdk-oss ++ 3.10.2 ++ ++ ++ diff --git a/.idea/shelf/Uncommitted_changes_before_Update_at_2024_5_2_19_15__Changes_.xml b/.idea/shelf/Uncommitted_changes_before_Update_at_2024_5_2_19_15__Changes_.xml new file mode 100644 index 0000000..54b626c --- /dev/null +++ b/.idea/shelf/Uncommitted_changes_before_Update_at_2024_5_2_19_15__Changes_.xml @@ -0,0 +1,4 @@ + + \ No newline at end of file diff --git a/.idea/uiDesigner.xml b/.idea/uiDesigner.xml new file mode 100644 index 0000000..2b63946 --- /dev/null +++ b/.idea/uiDesigner.xml @@ -0,0 +1,124 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/workspace.xml b/.idea/workspace.xml new file mode 100644 index 0000000..7d5c207 --- /dev/null +++ b/.idea/workspace.xml @@ -0,0 +1,205 @@ + + + + + + + + + + + + + { + "associatedIndex": 8 +} + + + + + { + "keyToString": { + "ApiPost:METDOD_SEND_RECORD:bwie-auth": "{\"/login\":[{\"url\":\"http://localhost:9001/login\",\"header\":[{\"is_checked\":1.0,\"type\":\"Text\",\"value\":\"\"}],\"query\":[{\"is_checked\":1.0,\"type\":\"Text\",\"value\":\"\"}],\"rest\":[{\"is_checked\":1.0,\"type\":\"Text\",\"value\":\"\"}],\"requestBody\":\"{\\n \\\"userName\\\": \\\"admin\\\",\\n \\\"userPwd\\\": \\\"000\\\"\\n}\",\"responseBody\":\"{\\n \\\"code\\\": 500,\\n \\\"msg\\\": \\\"该账号不是系统用户\\\",\\n \\\"data\\\": null,\\n \\\"error\\\": true,\\n \\\"success\\\": false\\n}\",\"selectedItem\":\"POST\",\"time\":{\"date\":{\"year\":2024.0,\"month\":4.0,\"day\":29.0},\"time\":{\"hour\":14.0,\"minute\":25.0,\"second\":28.0,\"nano\":2.264379E8}}},{\"url\":\"http://localhost:9001/login\",\"header\":[{\"is_checked\":1.0,\"type\":\"Text\",\"value\":\"\"}],\"query\":[{\"is_checked\":1.0,\"type\":\"Text\",\"value\":\"\"}],\"rest\":[{\"is_checked\":1.0,\"type\":\"Text\",\"value\":\"\"}],\"requestBody\":\"{\\n \\\"userName\\\": \\\"admin\\\",\\n \\\"userPwd\\\": \\\"123456\\\"\\n}\",\"responseBody\":\"{\\n \\\"code\\\": 500,\\n \\\"msg\\\": \\\"该账号不是系统用户\\\",\\n \\\"data\\\": null,\\n \\\"error\\\": true,\\n \\\"success\\\": false\\n}\",\"selectedItem\":\"POST\",\"time\":{\"date\":{\"year\":2024.0,\"month\":4.0,\"day\":29.0},\"time\":{\"hour\":14.0,\"minute\":27.0,\"second\":29.0,\"nano\":3.82806E8}}},{\"url\":\"http://localhost:9001/login\",\"header\":[{\"is_checked\":1.0,\"type\":\"Text\",\"value\":\"\"}],\"query\":[{\"is_checked\":1.0,\"type\":\"Text\",\"value\":\"\"}],\"rest\":[{\"is_checked\":1.0,\"type\":\"Text\",\"value\":\"\"}],\"requestBody\":\"{\\n \\\"userName\\\": \\\"admin\\\",\\n \\\"userPwd\\\": \\\"123456\\\"\\n}\",\"responseBody\":\"{\\n \\\"code\\\": 500,\\n \\\"msg\\\": \\\"该账号不是系统用户\\\",\\n \\\"data\\\": null,\\n \\\"error\\\": true,\\n \\\"success\\\": false\\n}\",\"selectedItem\":\"POST\",\"time\":{\"date\":{\"year\":2024.0,\"month\":4.0,\"day\":29.0},\"time\":{\"hour\":14.0,\"minute\":28.0,\"second\":46.0,\"nano\":8.904594E8}}},{\"url\":\"http://localhost:9001/login\",\"header\":[{\"is_checked\":1.0,\"type\":\"Text\",\"value\":\"\"}],\"query\":[{\"is_checked\":1.0,\"type\":\"Text\",\"value\":\"\"}],\"rest\":[{\"is_checked\":1.0,\"type\":\"Text\",\"value\":\"\"}],\"requestBody\":\"{\\n \\\"userName\\\": \\\"admin\\\",\\n \\\"userPwd\\\": \\\"123456\\\"\\n}\",\"responseBody\":\"{\\n \\\"code\\\": 500,\\n \\\"msg\\\": \\\"该账号不是系统用户\\\",\\n \\\"data\\\": null,\\n \\\"error\\\": true,\\n \\\"success\\\": false\\n}\",\"selectedItem\":\"POST\",\"time\":{\"date\":{\"year\":2024.0,\"month\":4.0,\"day\":29.0},\"time\":{\"hour\":14.0,\"minute\":32.0,\"second\":3.0,\"nano\":5.55144E8}}},{\"url\":\"http://localhost:9001/login\",\"header\":[{\"is_checked\":1.0,\"type\":\"Text\",\"value\":\"\"}],\"query\":[{\"is_checked\":1.0,\"type\":\"Text\",\"value\":\"\"}],\"rest\":[{\"is_checked\":1.0,\"type\":\"Text\",\"value\":\"\"}],\"requestBody\":\"{\\n \\\"userName\\\": \\\"admin\\\",\\n \\\"userPwd\\\": \\\"123456\\\"\\n}\",\"responseBody\":\"{\\n \\\"code\\\": 500,\\n \\\"msg\\\": \\\"该账号不是系统用户\\\",\\n \\\"data\\\": null,\\n \\\"error\\\": true,\\n \\\"success\\\": false\\n}\",\"selectedItem\":\"POST\",\"time\":{\"date\":{\"year\":2024.0,\"month\":4.0,\"day\":29.0},\"time\":{\"hour\":14.0,\"minute\":32.0,\"second\":15.0,\"nano\":5.710001E8}}},{\"url\":\"http://localhost:9001/login\",\"header\":[{\"is_checked\":1.0,\"type\":\"Text\",\"value\":\"\"}],\"query\":[{\"is_checked\":1.0,\"type\":\"Text\",\"value\":\"\"}],\"rest\":[{\"is_checked\":1.0,\"type\":\"Text\",\"value\":\"\"}],\"requestBody\":\"{\\n \\\"userName\\\": \\\"admin\\\",\\n \\\"userPwd\\\": \\\"123456\\\"\\n}\",\"responseBody\":\"{\\n \\\"code\\\": 500,\\n \\\"msg\\\": \\\"该账号不是系统用户\\\",\\n \\\"data\\\": null,\\n \\\"error\\\": true,\\n \\\"success\\\": false\\n}\",\"selectedItem\":\"POST\",\"time\":{\"date\":{\"year\":2024.0,\"month\":4.0,\"day\":29.0},\"time\":{\"hour\":14.0,\"minute\":58.0,\"second\":22.0,\"nano\":6.880014E8}}},{\"url\":\"http://localhost:9002/login\",\"header\":[{\"is_checked\":1.0,\"type\":\"Text\",\"value\":\"\"}],\"query\":[{\"is_checked\":1.0,\"type\":\"Text\",\"value\":\"\"}],\"rest\":[{\"is_checked\":1.0,\"type\":\"Text\",\"value\":\"\"}],\"requestBody\":\"{\\n \\\"userName\\\": \\\"admin\\\",\\n \\\"userPwd\\\": \\\"123456\\\"\\n}\",\"responseBody\":\"{\\n \\\"code\\\": 500,\\n \\\"msg\\\": \\\"该账号不是系统用户\\\",\\n \\\"data\\\": null,\\n \\\"error\\\": true,\\n \\\"success\\\": false\\n}\",\"selectedItem\":\"POST\",\"time\":{\"date\":{\"year\":2024.0,\"month\":4.0,\"day\":29.0},\"time\":{\"hour\":14.0,\"minute\":58.0,\"second\":45.0,\"nano\":9.638717E8}}},{\"url\":\"http://localhost:9001/login\",\"header\":[{\"is_checked\":1.0,\"type\":\"Text\",\"value\":\"\"}],\"query\":[{\"is_checked\":1.0,\"type\":\"Text\",\"value\":\"\"}],\"rest\":[{\"is_checked\":1.0,\"type\":\"Text\",\"value\":\"\"}],\"requestBody\":\"{\\n \\\"userName\\\": \\\"admin\\\",\\n \\\"userPwd\\\": \\\"admin\\\"\\n}\",\"responseBody\":\"{\\n \\\"code\\\": 200,\\n \\\"msg\\\": \\\"操作成功\\\",\\n \\\"data\\\": {\\n \\\"token\\\": \\\"eyJhbGciOiJIUzUxMiJ9.eyJ1c2VyX2lkIjo0LCJ1c2VyX2tleSI6ImNlZDk0M2YwODBjODQ2ZjI5NzdjZTc4MzIxMjljMWVjIiwidXNlcm5hbWUiOiJhZG1pbiJ9.NyQc8d7Fk74QfQOhQfXknPJiSiHgcFe4DDVFKwFwJUWdtUHcZoz82_3Oa-S5ZV1zGjLftKobpRgnmKIWO6hWUg\\\",\\n \\\"expired\\\": 720\\n },\\n \\\"error\\\": false,\\n \\\"success\\\": true\\n}\",\"selectedItem\":\"POST\",\"time\":{\"date\":{\"year\":2024.0,\"month\":4.0,\"day\":29.0},\"time\":{\"hour\":15.0,\"minute\":13.0,\"second\":52.0,\"nano\":1.5467E7}}},{\"url\":\"http://localhost:9001/login\",\"header\":[{\"is_checked\":1.0,\"type\":\"Text\",\"value\":\"\"}],\"query\":[{\"is_checked\":1.0,\"type\":\"Text\",\"value\":\"\"}],\"rest\":[{\"is_checked\":1.0,\"type\":\"Text\",\"value\":\"\"}],\"requestBody\":\"{\\n \\\"userName\\\": \\\"admin\\\",\\n \\\"userPwd\\\": \\\"admin\\\"\\n}\",\"responseBody\":\"{\\n \\\"code\\\": 200,\\n \\\"msg\\\": \\\"操作成功\\\",\\n \\\"data\\\": {\\n \\\"token\\\": \\\"eyJhbGciOiJIUzUxMiJ9.eyJ1c2VyX2lkIjo0LCJ1c2VyX2tleSI6IjkwZjg5ZDA1ZjAyYTRkNmNiY2I4ZmRhMjRlMGUzZDE3IiwidXNlcm5hbWUiOiJhZG1pbiJ9.r0h0DoB00193DfehKqjwGSfnTgTCZ4Rll22_vYVNLrS1hl4MIJmhbo72DezVmr5SVJSh--xqBP2vZ66y7eiWTw\\\",\\n \\\"expired\\\": 720\\n },\\n \\\"error\\\": false,\\n \\\"success\\\": true\\n}\",\"selectedItem\":\"POST\",\"time\":{\"date\":{\"year\":2024.0,\"month\":4.0,\"day\":29.0},\"time\":{\"hour\":15.0,\"minute\":39.0,\"second\":46.0,\"nano\":2.739539E8}}}],\"/reg\":[{\"url\":\"http://localhost:9001/reg\",\"header\":[{\"is_checked\":1.0,\"type\":\"Text\",\"value\":\"\"}],\"query\":[{\"is_checked\":1.0,\"type\":\"Text\",\"value\":\"\"}],\"rest\":[{\"is_checked\":1.0,\"type\":\"Text\",\"value\":\"\"}],\"requestBody\":\"{\\n \\\"userName\\\": \\\"admin\\\",\\n \\\"userPassword\\\": \\\"123456\\\",\\n \\\"userPhone\\\": \\\"15831598495\\\"\\n}\",\"responseBody\":\"{\\n \\\"code\\\": 200,\\n \\\"msg\\\": \\\"操作成功\\\",\\n \\\"data\\\": null,\\n \\\"error\\\": false,\\n \\\"success\\\": true\\n}\",\"selectedItem\":\"POST\",\"time\":{\"date\":{\"year\":2024.0,\"month\":4.0,\"day\":29.0},\"time\":{\"hour\":14.0,\"minute\":27.0,\"second\":6.0,\"nano\":3.206043E8}}},{\"url\":\"http://localhost:9001/reg\",\"header\":[{\"is_checked\":1.0,\"type\":\"Text\",\"value\":\"\"}],\"query\":[{\"is_checked\":1.0,\"type\":\"Text\",\"value\":\"\"}],\"rest\":[{\"is_checked\":1.0,\"type\":\"Text\",\"value\":\"\"}],\"requestBody\":\"{\\n \\\"userName\\\": \\\"admin\\\",\\n \\\"userPassword\\\": \\\"admin\\\",\\n \\\"userPhone\\\": \\\"1537571017\\\"\\n}\",\"responseBody\":\"{\\n \\\"code\\\": 200,\\n \\\"msg\\\": \\\"操作成功\\\",\\n \\\"data\\\": null,\\n \\\"error\\\": false,\\n \\\"success\\\": true\\n}\",\"selectedItem\":\"POST\",\"time\":{\"date\":{\"year\":2024.0,\"month\":4.0,\"day\":29.0},\"time\":{\"hour\":15.0,\"minute\":3.0,\"second\":59.0,\"nano\":2.036074E8}}}],\"/sendCode/{userPhone}\":[{\"url\":\"http://localhost:9001/sendCode/{userPhone}\",\"header\":[{\"is_checked\":1.0,\"type\":\"Text\",\"value\":\"\"}],\"query\":[{\"is_checked\":1.0,\"type\":\"Text\",\"value\":\"\"}],\"rest\":[{\"description\":\"\",\"is_checked\":1.0,\"key\":\"userPhone\",\"type\":\"Text\",\"not_null\":\"1\",\"field_type\":\"String\",\"value\":\"15831598495\"},{\"is_checked\":1.0,\"type\":\"Text\",\"value\":\"\"}],\"requestBody\":\"\",\"responseBody\":\"{\\n \\\"code\\\": 500,\\n \\\"msg\\\": \\\"手机号不存在\\\",\\n \\\"data\\\": null,\\n \\\"error\\\": true,\\n \\\"success\\\": false\\n}\",\"selectedItem\":\"POST\",\"time\":{\"date\":{\"year\":2024.0,\"month\":4.0,\"day\":29.0},\"time\":{\"hour\":14.0,\"minute\":30.0,\"second\":16.0,\"nano\":1.098135E8}}},{\"url\":\"http://localhost:9001/sendCode/{userPhone}\",\"header\":[{\"is_checked\":1.0,\"type\":\"Text\",\"value\":\"\"}],\"query\":[{\"is_checked\":1.0,\"type\":\"Text\",\"value\":\"\"}],\"rest\":[{\"description\":\"\",\"is_checked\":1.0,\"key\":\"userPhone\",\"type\":\"Text\",\"not_null\":\"1\",\"field_type\":\"String\",\"value\":\"15831598495\"},{\"is_checked\":1.0,\"type\":\"Text\",\"value\":\"\"}],\"requestBody\":\"\",\"responseBody\":\"There was an error accessing to URL: http://localhost:9001/sendCode/15831598495\\n\\nConnectException: Connection refused: connect\",\"selectedItem\":\"POST\",\"time\":{\"date\":{\"year\":2024.0,\"month\":4.0,\"day\":29.0},\"time\":{\"hour\":14.0,\"minute\":33.0,\"second\":39.0,\"nano\":1.089583E8}}},{\"url\":\"http://localhost:9001/sendCode/{userPhone}\",\"header\":[{\"is_checked\":1.0,\"type\":\"Text\",\"value\":\"\"}],\"query\":[{\"is_checked\":1.0,\"type\":\"Text\",\"value\":\"\"}],\"rest\":[{\"description\":\"\",\"is_checked\":1.0,\"key\":\"userPhone\",\"type\":\"Text\",\"not_null\":\"1\",\"field_type\":\"String\",\"value\":\"15831598495\"},{\"is_checked\":1.0,\"type\":\"Text\",\"value\":\"\"}],\"requestBody\":\"\",\"responseBody\":\"{\\n \\\"code\\\": 500,\\n \\\"msg\\\": \\\"手机号不存在\\\",\\n \\\"data\\\": null,\\n \\\"error\\\": true,\\n \\\"success\\\": false\\n}\",\"selectedItem\":\"POST\",\"time\":{\"date\":{\"year\":2024.0,\"month\":4.0,\"day\":29.0},\"time\":{\"hour\":14.0,\"minute\":34.0,\"second\":3.0,\"nano\":5.423478E8}}},{\"url\":\"http://localhost:9001/sendCode/{userPhone}\",\"header\":[{\"is_checked\":1.0,\"type\":\"Text\",\"value\":\"\"}],\"query\":[{\"is_checked\":1.0,\"type\":\"Text\",\"value\":\"\"}],\"rest\":[{\"description\":\"\",\"is_checked\":1.0,\"key\":\"userPhone\",\"type\":\"Text\",\"not_null\":\"1\",\"field_type\":\"String\",\"value\":\"15831598495\"},{\"is_checked\":1.0,\"type\":\"Text\",\"value\":\"\"}],\"requestBody\":\"\",\"responseBody\":\"{\\n \\\"code\\\": 500,\\n \\\"msg\\\": \\\"手机号不存在\\\",\\n \\\"data\\\": null,\\n \\\"error\\\": true,\\n \\\"success\\\": false\\n}\",\"selectedItem\":\"POST\",\"time\":{\"date\":{\"year\":2024.0,\"month\":4.0,\"day\":29.0},\"time\":{\"hour\":14.0,\"minute\":38.0,\"second\":5.0,\"nano\":8.073844E8}}},{\"url\":\"http://localhost:9001/sendCode/{userPhone}\",\"header\":[{\"is_checked\":1.0,\"type\":\"Text\",\"value\":\"\"}],\"query\":[{\"is_checked\":1.0,\"type\":\"Text\",\"value\":\"\"}],\"rest\":[{\"description\":\"\",\"is_checked\":1.0,\"key\":\"userPhone\",\"type\":\"Text\",\"not_null\":\"1\",\"field_type\":\"String\",\"value\":\"15831598495\"},{\"is_checked\":1.0,\"type\":\"Text\",\"value\":\"\"}],\"requestBody\":\"\",\"responseBody\":\"{\\n \\\"code\\\": 500,\\n \\\"msg\\\": \\\"手机号不存在\\\",\\n \\\"data\\\": null,\\n \\\"error\\\": true,\\n \\\"success\\\": false\\n}\",\"selectedItem\":\"POST\",\"time\":{\"date\":{\"year\":2024.0,\"month\":4.0,\"day\":29.0},\"time\":{\"hour\":14.0,\"minute\":38.0,\"second\":10.0,\"nano\":3.427827E8}}},{\"url\":\"http://localhost:9001/sendCode/{userPhone}\",\"header\":[{\"is_checked\":1.0,\"type\":\"Text\",\"value\":\"\"}],\"query\":[{\"is_checked\":1.0,\"type\":\"Text\",\"value\":\"\"}],\"rest\":[{\"description\":\"\",\"is_checked\":1.0,\"key\":\"userPhone\",\"type\":\"Text\",\"not_null\":\"1\",\"field_type\":\"String\",\"value\":\"15831598495\"},{\"is_checked\":1.0,\"type\":\"Text\",\"value\":\"\"}],\"requestBody\":\"\",\"responseBody\":\"{\\n \\\"code\\\": 200,\\n \\\"msg\\\": \\\"操作成功\\\",\\n \\\"data\\\": {\\n \\\"userId\\\": 2,\\n \\\"userName\\\": \\\"admin\\\",\\n \\\"userPwd\\\": \\\"3e591928a638a95f652c742a233f65e4\\\",\\n \\\"userPhone\\\": \\\"15831598495\\\",\\n \\\"userRole\\\": 1,\\n \\\"userGrade\\\": 1,\\n \\\"createTime\\\": \\\"2024-04-22 06:24:34\\\",\\n \\\"updateTime\\\": null,\\n \\\"isDelete\\\": 1\\n },\\n \\\"error\\\": false,\\n \\\"success\\\": true\\n}\",\"selectedItem\":\"POST\",\"time\":{\"date\":{\"year\":2024.0,\"month\":4.0,\"day\":29.0},\"time\":{\"hour\":14.0,\"minute\":40.0,\"second\":51.0,\"nano\":7.434709E8}}},{\"url\":\"http://localhost:9001/sendCode/{userPhone}\",\"header\":[{\"is_checked\":1.0,\"type\":\"Text\",\"value\":\"\"}],\"query\":[{\"is_checked\":1.0,\"type\":\"Text\",\"value\":\"\"}],\"rest\":[{\"description\":\"\",\"is_checked\":1.0,\"key\":\"userPhone\",\"type\":\"Text\",\"not_null\":\"1\",\"field_type\":\"String\",\"value\":\"15831598495\"},{\"is_checked\":1.0,\"type\":\"Text\",\"value\":\"\"}],\"requestBody\":\"\",\"responseBody\":\"{\\n \\\"code\\\": 200,\\n \\\"msg\\\": \\\"发送成功\\\",\\n \\\"data\\\": \\\"验证码为:9778\\\",\\n \\\"error\\\": false,\\n \\\"success\\\": true\\n}\",\"selectedItem\":\"GET\",\"time\":{\"date\":{\"year\":2024.0,\"month\":4.0,\"day\":29.0},\"time\":{\"hour\":14.0,\"minute\":41.0,\"second\":9.0,\"nano\":8.704586E8}}}],\"/phoneLogin\":[{\"url\":\"http://localhost:9001/phoneLogin\",\"header\":[{\"is_checked\":1.0,\"type\":\"Text\",\"value\":\"\"}],\"query\":[{\"is_checked\":1.0,\"type\":\"Text\",\"value\":\"\"}],\"rest\":[{\"is_checked\":1.0,\"type\":\"Text\",\"value\":\"\"}],\"requestBody\":\"{\\n \\\"userPhone\\\": \\\"15831598495\\\",\\n \\\"userCode\\\": \\\"9778\\\"\\n}\",\"responseBody\":\"{\\n \\\"code\\\": 200,\\n \\\"msg\\\": \\\"操作成功\\\",\\n \\\"data\\\": {\\n \\\"code\\\": 500,\\n \\\"msg\\\": \\\"验证码错误\\\",\\n \\\"data\\\": null,\\n \\\"error\\\": true,\\n \\\"success\\\": false\\n },\\n \\\"error\\\": false,\\n \\\"success\\\": true\\n}\",\"selectedItem\":\"POST\",\"time\":{\"date\":{\"year\":2024.0,\"month\":4.0,\"day\":29.0},\"time\":{\"hour\":14.0,\"minute\":41.0,\"second\":20.0,\"nano\":4.840428E8}}},{\"url\":\"http://localhost:9001/phoneLogin\",\"header\":[{\"is_checked\":1.0,\"type\":\"Text\",\"value\":\"\"}],\"query\":[{\"is_checked\":1.0,\"type\":\"Text\",\"value\":\"\"}],\"rest\":[{\"is_checked\":1.0,\"type\":\"Text\",\"value\":\"\"}],\"requestBody\":\"{\\n \\\"userPhone\\\": \\\"15831598495\\\",\\n \\\"userCode\\\": \\\"2866\\\"\\n}\",\"responseBody\":\"{\\n \\\"code\\\": 200,\\n \\\"msg\\\": \\\"操作成功\\\",\\n \\\"data\\\": {\\n \\\"code\\\": 200,\\n \\\"msg\\\": \\\"登陆成功\\\",\\n \\\"data\\\": {\\n \\\"token\\\": \\\"eyJhbGciOiJIUzUxMiJ9.eyJ1c2VyX2tleSI6ImIzMjNhMTUxMzQ4YTRhOGViYzg4YjY5NTQyOWNlNTMxIn0.v_orMLakfl5wygXAm8pZjGnwEh8mRvAwt-aCmTifoRrWtB4MArbd2bTdHmDt9RLDvkHh3HLHlmTt1jHNZ5f0Iw\\\",\\n \\\"expired\\\": 720\\n },\\n \\\"error\\\": false,\\n \\\"success\\\": true\\n },\\n \\\"error\\\": false,\\n \\\"success\\\": true\\n}\",\"selectedItem\":\"POST\",\"time\":{\"date\":{\"year\":2024.0,\"month\":4.0,\"day\":29.0},\"time\":{\"hour\":14.0,\"minute\":41.0,\"second\":31.0,\"nano\":7.62137E7}}},{\"url\":\"http://localhost:9001/phoneLogin\",\"header\":[{\"is_checked\":1.0,\"type\":\"Text\",\"value\":\"\"}],\"query\":[{\"is_checked\":1.0,\"type\":\"Text\",\"value\":\"\"}],\"rest\":[{\"is_checked\":1.0,\"type\":\"Text\",\"value\":\"\"}],\"requestBody\":\"{\\n \\\"userPhone\\\": \\\"15831598495\\\",\\n \\\"userCode\\\": \\\"2866\\\"\\n}\",\"responseBody\":\"{\\n \\\"code\\\": 200,\\n \\\"msg\\\": \\\"操作成功\\\",\\n \\\"data\\\": {\\n \\\"code\\\": 200,\\n \\\"msg\\\": \\\"登陆成功\\\",\\n \\\"data\\\": {\\n \\\"token\\\": \\\"eyJhbGciOiJIUzUxMiJ9.eyJ1c2VyX2tleSI6ImM3Mjc4ZWFjMjBiZTRiYWY5ZmM2NjQ0ZWNjMzEwN2I5In0.pFYjGZevYa2qQhTi3nPXo7WUabpfDXO6bvpHHMEfhdbcbJd-8Jj2dFj1UwKR8cKjIcJYcbw2CESPjXEDykTPCw\\\",\\n \\\"expired\\\": 720\\n },\\n \\\"error\\\": false,\\n \\\"success\\\": true\\n },\\n \\\"error\\\": false,\\n \\\"success\\\": true\\n}\",\"selectedItem\":\"POST\",\"time\":{\"date\":{\"year\":2024.0,\"month\":4.0,\"day\":29.0},\"time\":{\"hour\":14.0,\"minute\":41.0,\"second\":31.0,\"nano\":1.888419E8}}}],\"/info\":[{\"url\":\"http://localhost:9001/info\",\"header\":[{\"is_checked\":1.0,\"key\":\"token\",\"type\":\"Text\",\"value\":\"eyJhbGciOiJIUzUxMiJ9.eyJ1c2VyX2tleSI6ImM3Mjc4ZWFjMjBiZTRiYWY5ZmM2NjQ0ZWNjMzEwN2I5In0.pFYjGZevYa2qQhTi3nPXo7WUabpfDXO6bvpHHMEfhdbcbJd-8Jj2dFj1UwKR8cKjIcJYcbw2CESPjXEDykTPCw\"},{\"is_checked\":1.0,\"type\":\"Text\",\"value\":\"\"}],\"query\":[{\"is_checked\":1.0,\"type\":\"Text\",\"value\":\"\"}],\"rest\":[{\"is_checked\":1.0,\"type\":\"Text\",\"value\":\"\"}],\"requestBody\":\"\",\"responseBody\":\"{\\n \\\"code\\\": 200,\\n \\\"msg\\\": \\\"操作成功\\\",\\n \\\"data\\\": null,\\n \\\"error\\\": false,\\n \\\"success\\\": true\\n}\",\"selectedItem\":\"GET\",\"time\":{\"date\":{\"year\":2024.0,\"month\":4.0,\"day\":29.0},\"time\":{\"hour\":14.0,\"minute\":42.0,\"second\":2.0,\"nano\":8.334929E8}}},{\"url\":\"http://localhost:9001/info\",\"header\":[{\"is_checked\":1.0,\"key\":\"token\",\"type\":\"Text\",\"value\":\"\\\\\"},{\"is_checked\":1.0,\"type\":\"Text\",\"value\":\"\"}],\"query\":[{\"is_checked\":1.0,\"type\":\"Text\",\"value\":\"\"}],\"rest\":[{\"is_checked\":1.0,\"type\":\"Text\",\"value\":\"\"}],\"requestBody\":\"\",\"responseBody\":\"There was an error accessing to URL: http://localhost:9001/info\\n\\n\\u003chtml\\u003e\\u003cbody\\u003e\\u003ch1\\u003eWhitelabel Error Page\\u003c/h1\\u003e\\u003cp\\u003eThis application has no explicit mapping for /error, so you are seeing this as a fallback.\\u003c/p\\u003e\\u003cdiv id\\u003d\\u0027created\\u0027\\u003eMon Apr 29 14:42:12 CST 2024\\u003c/div\\u003e\\u003cdiv\\u003eThere was an unexpected error (type\\u003dInternal Server Error, status\\u003d500).\\u003c/div\\u003e\\u003c/body\\u003e\\u003c/html\\u003e\",\"selectedItem\":\"GET\",\"time\":{\"date\":{\"year\":2024.0,\"month\":4.0,\"day\":29.0},\"time\":{\"hour\":14.0,\"minute\":42.0,\"second\":12.0,\"nano\":8.4871E7}}},{\"url\":\"http://localhost:9001/info\",\"header\":[{\"is_checked\":1.0,\"key\":\"token\",\"type\":\"Text\",\"value\":\"\\\\\"},{\"is_checked\":1.0,\"type\":\"Text\",\"value\":\"\"}],\"query\":[{\"is_checked\":1.0,\"type\":\"Text\",\"value\":\"\"}],\"rest\":[{\"is_checked\":1.0,\"type\":\"Text\",\"value\":\"\"}],\"requestBody\":\"\",\"responseBody\":\"There was an error accessing to URL: http://localhost:9001/info\\n\\n\\u003chtml\\u003e\\u003cbody\\u003e\\u003ch1\\u003eWhitelabel Error Page\\u003c/h1\\u003e\\u003cp\\u003eThis application has no explicit mapping for /error, so you are seeing this as a fallback.\\u003c/p\\u003e\\u003cdiv id\\u003d\\u0027created\\u0027\\u003eMon Apr 29 14:42:12 CST 2024\\u003c/div\\u003e\\u003cdiv\\u003eThere was an unexpected error (type\\u003dInternal Server Error, status\\u003d500).\\u003c/div\\u003e\\u003c/body\\u003e\\u003c/html\\u003e\",\"selectedItem\":\"GET\",\"time\":{\"date\":{\"year\":2024.0,\"month\":4.0,\"day\":29.0},\"time\":{\"hour\":14.0,\"minute\":42.0,\"second\":12.0,\"nano\":2.95767E8}}},{\"url\":\"http://localhost:9001/info\",\"header\":[{\"is_checked\":1.0,\"key\":\"token\",\"type\":\"Text\",\"value\":\"JSONObject.parseObject(cacheObject, User.class);\"},{\"is_checked\":1.0,\"type\":\"Text\",\"value\":\"\"}],\"query\":[{\"is_checked\":1.0,\"type\":\"Text\",\"value\":\"\"}],\"rest\":[{\"is_checked\":1.0,\"type\":\"Text\",\"value\":\"\"}],\"requestBody\":\"\",\"responseBody\":\"There was an error accessing to URL: http://localhost:9001/info\\n\\n\\u003chtml\\u003e\\u003cbody\\u003e\\u003ch1\\u003eWhitelabel Error Page\\u003c/h1\\u003e\\u003cp\\u003eThis application has no explicit mapping for /error, so you are seeing this as a fallback.\\u003c/p\\u003e\\u003cdiv id\\u003d\\u0027created\\u0027\\u003eMon Apr 29 14:43:36 CST 2024\\u003c/div\\u003e\\u003cdiv\\u003eThere was an unexpected error (type\\u003dInternal Server Error, status\\u003d500).\\u003c/div\\u003e\\u003c/body\\u003e\\u003c/html\\u003e\",\"selectedItem\":\"GET\",\"time\":{\"date\":{\"year\":2024.0,\"month\":4.0,\"day\":29.0},\"time\":{\"hour\":14.0,\"minute\":43.0,\"second\":36.0,\"nano\":4.448627E8}}},{\"url\":\"http://localhost:9001/info\",\"header\":[{\"is_checked\":1,\"key\":\"token\",\"type\":\"Text\",\"value\":\"eyJhbGciOiJIUzUxMiJ9.eyJ1c2VyX2lkIjo0LCJ1c2VyX2tleSI6IjkwZjg5ZDA1ZjAyYTRkNmNiY2I4ZmRhMjRlMGUzZDE3IiwidXNlcm5hbWUiOiJhZG1pbiJ9.r0h0DoB00193DfehKqjwGSfnTgTCZ4Rll22_vYVNLrS1hl4MIJmhbo72DezVmr5SVJSh--xqBP2vZ66y7eiWTw\"},{\"is_checked\":1,\"type\":\"Text\",\"value\":\"\"}],\"query\":[{\"is_checked\":1,\"type\":\"Text\",\"value\":\"\"}],\"rest\":[{\"is_checked\":1,\"type\":\"Text\",\"value\":\"\"}],\"requestBody\":\"\",\"responseBody\":\"{\\n \\\"code\\\": 200,\\n \\\"msg\\\": \\\"操作成功\\\",\\n \\\"data\\\": {\\n \\\"userId\\\": 4,\\n \\\"userName\\\": \\\"admin\\\",\\n \\\"userPwd\\\": \\\"798eb904e68d29dc9259ba4e8a1c2984\\\",\\n \\\"userPhone\\\": \\\"1537571017\\\",\\n \\\"userRole\\\": null,\\n \\\"userGrade\\\": null,\\n \\\"createTime\\\": null,\\n \\\"updateTime\\\": null,\\n \\\"isDelete\\\": null\\n },\\n \\\"error\\\": false,\\n \\\"success\\\": true\\n}\",\"selectedItem\":\"GET\",\"time\":{\"date\":{\"year\":2024,\"month\":4,\"day\":29},\"time\":{\"hour\":15,\"minute\":40,\"second\":3,\"nano\":2939700}}}]}", + "ApiPost:METDOD_SEND_RECORD:bwie-system": "{\"/login\":[{\"url\":\"http://localhost:9002/login\",\"header\":[{\"is_checked\":1.0,\"type\":\"Text\",\"value\":\"\"}],\"query\":[{\"is_checked\":1.0,\"type\":\"Text\",\"value\":\"\"}],\"rest\":[{\"is_checked\":1.0,\"type\":\"Text\",\"value\":\"\"}],\"requestBody\":\"{\\n \\\"userName\\\": \\\"admin\\\",\\n \\\"userPwd\\\": \\\"000\\\"\\n}\",\"responseBody\":\"There was an error accessing to URL: http://localhost:9002/login\\n\\n\\u003chtml\\u003e\\u003cbody\\u003e\\u003ch1\\u003eWhitelabel Error Page\\u003c/h1\\u003e\\u003cp\\u003eThis application has no explicit mapping for /error, so you are seeing this as a fallback.\\u003c/p\\u003e\\u003cdiv id\\u003d\\u0027created\\u0027\\u003eMon Apr 29 14:25:44 CST 2024\\u003c/div\\u003e\\u003cdiv\\u003eThere was an unexpected error (type\\u003dInternal Server Error, status\\u003d500).\\u003c/div\\u003e\\u003c/body\\u003e\\u003c/html\\u003e\",\"selectedItem\":\"POST\",\"time\":{\"date\":{\"year\":2024.0,\"month\":4.0,\"day\":29.0},\"time\":{\"hour\":14.0,\"minute\":25.0,\"second\":44.0,\"nano\":3.675583E8}}},{\"url\":\"http://localhost:9002/login\",\"header\":[{\"is_checked\":1.0,\"type\":\"Text\",\"value\":\"\"}],\"query\":[{\"is_checked\":1.0,\"type\":\"Text\",\"value\":\"\"}],\"rest\":[{\"is_checked\":1.0,\"type\":\"Text\",\"value\":\"\"}],\"requestBody\":\"{\\n \\\"userName\\\": \\\"admin\\\",\\n \\\"userPwd\\\": \\\"000\\\"\\n}\",\"responseBody\":\"{\\n \\\"code\\\": 200,\\n \\\"msg\\\": \\\"操作成功\\\",\\n \\\"data\\\": null,\\n \\\"error\\\": false,\\n \\\"success\\\": true\\n}\",\"selectedItem\":\"POST\",\"time\":{\"date\":{\"year\":2024.0,\"month\":4.0,\"day\":29.0},\"time\":{\"hour\":14.0,\"minute\":26.0,\"second\":34.0,\"nano\":6.709618E8}}},{\"url\":\"http://localhost:9002/login\",\"header\":[{\"is_checked\":1.0,\"type\":\"Text\",\"value\":\"\"}],\"query\":[{\"is_checked\":1.0,\"type\":\"Text\",\"value\":\"\"}],\"rest\":[{\"is_checked\":1.0,\"type\":\"Text\",\"value\":\"\"}],\"requestBody\":\"{\\n \\\"userName\\\": \\\"admin\\\",\\n \\\"userPwd\\\": \\\"123456\\\"\\n}\",\"responseBody\":\"{\\n \\\"code\\\": 200,\\n \\\"msg\\\": \\\"操作成功\\\",\\n \\\"data\\\": null,\\n \\\"error\\\": false,\\n \\\"success\\\": true\\n}\",\"selectedItem\":\"POST\",\"time\":{\"date\":{\"year\":2024.0,\"month\":4.0,\"day\":29.0},\"time\":{\"hour\":14.0,\"minute\":26.0,\"second\":41.0,\"nano\":4.643295E8}}},{\"url\":\"http://localhost:9002/login\",\"header\":[{\"is_checked\":1.0,\"type\":\"Text\",\"value\":\"\"}],\"query\":[{\"is_checked\":1.0,\"type\":\"Text\",\"value\":\"\"}],\"rest\":[{\"is_checked\":1.0,\"type\":\"Text\",\"value\":\"\"}],\"requestBody\":\"{\\n \\\"userName\\\": \\\"admin\\\",\\n \\\"userPwd\\\": \\\"123456\\\"\\n}\",\"responseBody\":\"{\\n \\\"code\\\": 200,\\n \\\"msg\\\": \\\"操作成功\\\",\\n \\\"data\\\": null,\\n \\\"error\\\": false,\\n \\\"success\\\": true\\n}\",\"selectedItem\":\"POST\",\"time\":{\"date\":{\"year\":2024.0,\"month\":4.0,\"day\":29.0},\"time\":{\"hour\":14.0,\"minute\":29.0,\"second\":18.0,\"nano\":4.641771E8}}},{\"url\":\"http://localhost:9002/login\",\"header\":[{\"is_checked\":1.0,\"type\":\"Text\",\"value\":\"\"}],\"query\":[{\"is_checked\":1.0,\"type\":\"Text\",\"value\":\"\"}],\"rest\":[{\"is_checked\":1.0,\"type\":\"Text\",\"value\":\"\"}],\"requestBody\":\"{\\n \\\"userName\\\": \\\"admin\\\",\\n \\\"userPwd\\\": \\\"123456\\\"\\n}\",\"responseBody\":\"{\\n \\\"code\\\": 200,\\n \\\"msg\\\": \\\"操作成功\\\",\\n \\\"data\\\": null,\\n \\\"error\\\": false,\\n \\\"success\\\": true\\n}\",\"selectedItem\":\"POST\",\"time\":{\"date\":{\"year\":2024.0,\"month\":4.0,\"day\":29.0},\"time\":{\"hour\":14.0,\"minute\":58.0,\"second\":58.0,\"nano\":3.555137E8}}},{\"url\":\"http://localhost:9002/login\",\"header\":[{\"is_checked\":1.0,\"type\":\"Text\",\"value\":\"\"}],\"query\":[{\"is_checked\":1.0,\"type\":\"Text\",\"value\":\"\"}],\"rest\":[{\"is_checked\":1.0,\"type\":\"Text\",\"value\":\"\"}],\"requestBody\":\"{\\n \\\"userName\\\": \\\"admin\\\",\\n \\\"userPwd\\\": \\\"123456\\\"\\n}\",\"responseBody\":\"{\\n \\\"code\\\": 200,\\n \\\"msg\\\": \\\"操作成功\\\",\\n \\\"data\\\": null,\\n \\\"error\\\": false,\\n \\\"success\\\": true\\n}\",\"selectedItem\":\"POST\",\"time\":{\"date\":{\"year\":2024.0,\"month\":4.0,\"day\":29.0},\"time\":{\"hour\":15.0,\"minute\":2.0,\"second\":3.0,\"nano\":5.312802E8}}},{\"url\":\"http://localhost:9002/login\",\"header\":[{\"is_checked\":1.0,\"type\":\"Text\",\"value\":\"\"}],\"query\":[{\"is_checked\":1.0,\"type\":\"Text\",\"value\":\"\"}],\"rest\":[{\"is_checked\":1.0,\"type\":\"Text\",\"value\":\"\"}],\"requestBody\":\"{\\n \\\"userName\\\": \\\"admin\\\",\\n \\\"userPwd\\\": \\\"123456\\\"\\n}\",\"responseBody\":\"{\\n \\\"code\\\": 200,\\n \\\"msg\\\": \\\"操作成功\\\",\\n \\\"data\\\": null,\\n \\\"error\\\": false,\\n \\\"success\\\": true\\n}\",\"selectedItem\":\"POST\",\"time\":{\"date\":{\"year\":2024.0,\"month\":4.0,\"day\":29.0},\"time\":{\"hour\":15.0,\"minute\":3.0,\"second\":4.0,\"nano\":2.395659E8}}},{\"url\":\"http://localhost:9002/login\",\"header\":[{\"is_checked\":1.0,\"type\":\"Text\",\"value\":\"\"}],\"query\":[{\"is_checked\":1.0,\"type\":\"Text\",\"value\":\"\"}],\"rest\":[{\"is_checked\":1.0,\"type\":\"Text\",\"value\":\"\"}],\"requestBody\":\"{\\n \\\"userName\\\": \\\"admin\\\",\\n \\\"userPwd\\\": \\\"admin\\\"\\n}\",\"responseBody\":\"{\\n \\\"code\\\": 200,\\n \\\"msg\\\": \\\"操作成功\\\",\\n \\\"data\\\": null,\\n \\\"error\\\": false,\\n \\\"success\\\": true\\n}\",\"selectedItem\":\"POST\",\"time\":{\"date\":{\"year\":2024.0,\"month\":4.0,\"day\":29.0},\"time\":{\"hour\":15.0,\"minute\":4.0,\"second\":9.0,\"nano\":9.616023E8}}},{\"url\":\"http://localhost:9002/login\",\"header\":[{\"is_checked\":1.0,\"type\":\"Text\",\"value\":\"\"}],\"query\":[{\"is_checked\":1.0,\"type\":\"Text\",\"value\":\"\"}],\"rest\":[{\"is_checked\":1.0,\"type\":\"Text\",\"value\":\"\"}],\"requestBody\":\"{\\n \\\"userName\\\": \\\"admin\\\",\\n \\\"userPwd\\\": \\\"admi\\\"\\n}\",\"responseBody\":\"{\\n \\\"code\\\": 200,\\n \\\"msg\\\": \\\"操作成功\\\",\\n \\\"data\\\": null,\\n \\\"error\\\": false,\\n \\\"success\\\": true\\n}\",\"selectedItem\":\"POST\",\"time\":{\"date\":{\"year\":2024.0,\"month\":4.0,\"day\":29.0},\"time\":{\"hour\":15.0,\"minute\":4.0,\"second\":22.0,\"nano\":1.252416E8}}},{\"url\":\"http://localhost:9002/login\",\"header\":[{\"is_checked\":1.0,\"type\":\"Text\",\"value\":\"\"}],\"query\":[{\"is_checked\":1.0,\"type\":\"Text\",\"value\":\"\"}],\"rest\":[{\"is_checked\":1.0,\"type\":\"Text\",\"value\":\"\"}],\"requestBody\":\"{\\n \\\"userName\\\": \\\"admin\\\",\\n \\\"userPwd\\\": \\\"admin\\\"\\n}\",\"responseBody\":\"\",\"selectedItem\":\"POST\",\"time\":{\"date\":{\"year\":2024.0,\"month\":4.0,\"day\":29.0},\"time\":{\"hour\":15.0,\"minute\":5.0,\"second\":10.0,\"nano\":9.895309E8}}},{\"url\":\"http://localhost:9002/login\",\"header\":[{\"is_checked\":1.0,\"type\":\"Text\",\"value\":\"\"}],\"query\":[{\"is_checked\":1.0,\"type\":\"Text\",\"value\":\"\"}],\"rest\":[{\"is_checked\":1.0,\"type\":\"Text\",\"value\":\"\"}],\"requestBody\":\"{\\n \\\"userName\\\": \\\"admin\\\",\\n \\\"userPwd\\\": \\\"admin\\\"\\n}\",\"responseBody\":\"\",\"selectedItem\":\"POST\",\"time\":{\"date\":{\"year\":2024.0,\"month\":4.0,\"day\":29.0},\"time\":{\"hour\":15.0,\"minute\":5.0,\"second\":17.0,\"nano\":1.71933E7}}},{\"url\":\"http://localhost:9002/login\",\"header\":[{\"is_checked\":1,\"type\":\"Text\",\"value\":\"\"}],\"query\":[{\"is_checked\":1,\"type\":\"Text\",\"value\":\"\"}],\"rest\":[{\"is_checked\":1,\"type\":\"Text\",\"value\":\"\"}],\"requestBody\":\"{\\n \\\"userName\\\": \\\"admin\\\",\\n \\\"userPwd\\\": \\\"admin\\\"\\n}\",\"responseBody\":\"{\\n \\\"code\\\": 200,\\n \\\"msg\\\": \\\"操作成功\\\",\\n \\\"data\\\": {\\n \\\"userId\\\": 4,\\n \\\"userName\\\": \\\"admin\\\",\\n \\\"userPwd\\\": \\\"798eb904e68d29dc9259ba4e8a1c2984\\\",\\n \\\"userPhone\\\": \\\"1537571017\\\",\\n \\\"userRole\\\": null,\\n \\\"userGrade\\\": null,\\n \\\"createTime\\\": null,\\n \\\"updateTime\\\": null,\\n \\\"isDelete\\\": null\\n },\\n \\\"error\\\": false,\\n \\\"success\\\": true\\n}\",\"selectedItem\":\"POST\",\"time\":{\"date\":{\"year\":2024,\"month\":4,\"day\":29},\"time\":{\"hour\":15,\"minute\":13,\"second\":37,\"nano\":22458100}}}],\"/findByPhone/{userPhone}\":[{\"url\":\"http://localhost:9002/findByPhone/{userPhone}\",\"header\":[{\"is_checked\":1.0,\"type\":\"Text\",\"value\":\"\"}],\"query\":[{\"is_checked\":1.0,\"type\":\"Text\",\"value\":\"\"}],\"rest\":[{\"is_checked\":1.0,\"key\":\"userPhone\",\"type\":\"Text\",\"not_null\":\"1\",\"field_type\":\"String\",\"value\":\"15831598495\"},{\"is_checked\":1.0,\"type\":\"Text\",\"value\":\"\"}],\"requestBody\":\"\",\"responseBody\":\"There was an error accessing to URL: http://localhost:9002/findByPhone/15831598495\\n\\n\\u003chtml\\u003e\\u003cbody\\u003e\\u003ch1\\u003eWhitelabel Error Page\\u003c/h1\\u003e\\u003cp\\u003eThis application has no explicit mapping for /error, so you are seeing this as a fallback.\\u003c/p\\u003e\\u003cdiv id\\u003d\\u0027created\\u0027\\u003eMon Apr 29 14:37:16 CST 2024\\u003c/div\\u003e\\u003cdiv\\u003eThere was an unexpected error (type\\u003dInternal Server Error, status\\u003d500).\\u003c/div\\u003e\\u003c/body\\u003e\\u003c/html\\u003e\",\"selectedItem\":\"GET\",\"time\":{\"date\":{\"year\":2024.0,\"month\":4.0,\"day\":29.0},\"time\":{\"hour\":14.0,\"minute\":37.0,\"second\":16.0,\"nano\":7.97042E7}}},{\"url\":\"http://localhost:9002/findByPhone/{userPhone}\",\"header\":[{\"is_checked\":1.0,\"type\":\"Text\",\"value\":\"\"}],\"query\":[{\"is_checked\":1.0,\"type\":\"Text\",\"value\":\"\"}],\"rest\":[{\"is_checked\":1.0,\"key\":\"userPhone\",\"type\":\"Text\",\"not_null\":\"1\",\"field_type\":\"String\",\"value\":\"15831598495\"},{\"is_checked\":1.0,\"type\":\"Text\",\"value\":\"\"}],\"requestBody\":\"\",\"responseBody\":\"There was an error accessing to URL: http://localhost:9002/findByPhone/15831598495\\n\\n\\u003chtml\\u003e\\u003cbody\\u003e\\u003ch1\\u003eWhitelabel Error Page\\u003c/h1\\u003e\\u003cp\\u003eThis application has no explicit mapping for /error, so you are seeing this as a fallback.\\u003c/p\\u003e\\u003cdiv id\\u003d\\u0027created\\u0027\\u003eMon Apr 29 14:37:24 CST 2024\\u003c/div\\u003e\\u003cdiv\\u003eThere was an unexpected error (type\\u003dInternal Server Error, status\\u003d500).\\u003c/div\\u003e\\u003c/body\\u003e\\u003c/html\\u003e\",\"selectedItem\":\"GET\",\"time\":{\"date\":{\"year\":2024.0,\"month\":4.0,\"day\":29.0},\"time\":{\"hour\":14.0,\"minute\":37.0,\"second\":24.0,\"nano\":4.189073E8}}},{\"url\":\"http://localhost:9002/findByPhone/{userPhone}\",\"header\":[{\"is_checked\":1.0,\"type\":\"Text\",\"value\":\"\"}],\"query\":[{\"is_checked\":1.0,\"type\":\"Text\",\"value\":\"\"}],\"rest\":[{\"is_checked\":1.0,\"key\":\"userPhone\",\"type\":\"Text\",\"not_null\":\"1\",\"field_type\":\"String\",\"value\":\"15831598495\"},{\"is_checked\":1.0,\"type\":\"Text\",\"value\":\"\"}],\"requestBody\":\"\",\"responseBody\":\"{\\n \\\"code\\\": 200,\\n \\\"msg\\\": \\\"操作成功\\\",\\n \\\"data\\\": {\\n \\\"userId\\\": 2,\\n \\\"userName\\\": \\\"admin\\\",\\n \\\"userPwd\\\": \\\"3e591928a638a95f652c742a233f65e4\\\",\\n \\\"userPhone\\\": \\\"15831598495\\\",\\n \\\"userRole\\\": 1,\\n \\\"userGrade\\\": 1,\\n \\\"createTime\\\": \\\"2024-04-22 06:24:34\\\",\\n \\\"updateTime\\\": null,\\n \\\"isDelete\\\": 1\\n },\\n \\\"error\\\": false,\\n \\\"success\\\": true\\n}\",\"selectedItem\":\"GET\",\"time\":{\"date\":{\"year\":2024.0,\"month\":4.0,\"day\":29.0},\"time\":{\"hour\":14.0,\"minute\":37.0,\"second\":51.0,\"nano\":2.45637E8}}}]}", + "ApiPost:METDOD_SEND_RECORD:bwie-team": "{\"/shouall\":[{\"url\":\"http://localhost:9004/shouall\",\"header\":[{\"is_checked\":1.0,\"type\":\"Text\",\"value\":\"\"}],\"query\":[{\"is_checked\":1.0,\"type\":\"Text\",\"value\":\"\"}],\"rest\":[{\"is_checked\":1.0,\"type\":\"Text\",\"value\":\"\"}],\"requestBody\":\"\",\"responseBody\":\"There was an error accessing to URL: http://localhost:9004/shouall\\n\\n\\u003chtml\\u003e\\u003cbody\\u003e\\u003ch1\\u003eWhitelabel Error Page\\u003c/h1\\u003e\\u003cp\\u003eThis application has no explicit mapping for /error, so you are seeing this as a fallback.\\u003c/p\\u003e\\u003cdiv id\\u003d\\u0027created\\u0027\\u003eThu Apr 25 14:06:35 CST 2024\\u003c/div\\u003e\\u003cdiv\\u003eThere was an unexpected error (type\\u003dInternal Server Error, status\\u003d500).\\u003c/div\\u003e\\u003c/body\\u003e\\u003c/html\\u003e\",\"selectedItem\":\"POST\",\"time\":{\"date\":{\"year\":2024.0,\"month\":4.0,\"day\":25.0},\"time\":{\"hour\":14.0,\"minute\":6.0,\"second\":35.0,\"nano\":1.043965E8}}},{\"url\":\"http://localhost:9004/shouall\",\"header\":[{\"is_checked\":1,\"type\":\"Text\",\"value\":\"\"}],\"query\":[{\"is_checked\":1,\"type\":\"Text\",\"value\":\"\"}],\"rest\":[{\"is_checked\":1,\"type\":\"Text\",\"value\":\"\"}],\"requestBody\":\"\",\"responseBody\":\"{\\n \\\"code\\\": 200,\\n \\\"msg\\\": \\\"操作成功\\\",\\n \\\"data\\\": [\\n {\\n \\\"id\\\": 7,\\n \\\"name\\\": \\\"华为mate30pro\\\",\\n \\\"goodSales\\\": null,\\n \\\"goodInventory\\\": null,\\n \\\"categoryId\\\": 225,\\n \\\"publishStatus\\\": 1,\\n \\\"keyWords\\\": null,\\n \\\"goodBrief\\\": null,\\n \\\"goodUnit\\\": null,\\n \\\"goodFreight\\\": null,\\n \\\"createTime\\\": \\\"2020-03-21 00:54:21\\\",\\n \\\"updateTime\\\": \\\"2022-03-30 16:33:58\\\",\\n \\\"isDelete\\\": null\\n },\\n {\\n \\\"id\\\": 8,\\n \\\"name\\\": \\\"华为mate30pro\\\",\\n \\\"goodSales\\\": null,\\n \\\"goodInventory\\\": null,\\n \\\"categoryId\\\": 225,\\n \\\"publishStatus\\\": 1,\\n \\\"keyWords\\\": null,\\n \\\"goodBrief\\\": null,\\n \\\"goodUnit\\\": null,\\n \\\"goodFreight\\\": null,\\n \\\"createTime\\\": \\\"2020-03-21 12:19:34\\\",\\n \\\"updateTime\\\": \\\"2022-03-30 16:33:58\\\",\\n \\\"isDelete\\\": null\\n },\\n {\\n \\\"id\\\": 9,\\n \\\"name\\\": \\\"华为mate30pro\\\",\\n \\\"goodSales\\\": null,\\n \\\"goodInventory\\\": null,\\n \\\"categoryId\\\": 225,\\n \\\"publishStatus\\\": 1,\\n \\\"keyWords\\\": null,\\n \\\"goodBrief\\\": null,\\n \\\"goodUnit\\\": null,\\n \\\"goodFreight\\\": null,\\n \\\"createTime\\\": \\\"2020-03-21 12:34:56\\\",\\n \\\"updateTime\\\": \\\"2022-03-30 16:33:58\\\",\\n \\\"isDelete\\\": null\\n },\\n {\\n \\\"id\\\": 10,\\n \\\"name\\\": \\\"华为mate30pro7\\\",\\n \\\"goodSales\\\": null,\\n \\\"goodInventory\\\": null,\\n \\\"categoryId\\\": 225,\\n \\\"publishStatus\\\": 1,\\n \\\"keyWords\\\": null,\\n \\\"goodBrief\\\": null,\\n \\\"goodUnit\\\": null,\\n \\\"goodFreight\\\": null,\\n \\\"createTime\\\": \\\"2020-03-21 12:46:59\\\",\\n \\\"updateTime\\\": \\\"2022-03-30 16:33:58\\\",\\n \\\"isDelete\\\": null\\n },\\n {\\n \\\"id\\\": 11,\\n \\\"name\\\": \\\"华为mate30pro7\\\",\\n \\\"goodSales\\\": null,\\n \\\"goodInventory\\\": null,\\n \\\"categoryId\\\": 250,\\n \\\"publishStatus\\\": 1,\\n \\\"keyWords\\\": null,\\n \\\"goodBrief\\\": null,\\n \\\"goodUnit\\\": null,\\n \\\"goodFreight\\\": null,\\n \\\"createTime\\\": \\\"2020-03-21 13:07:59\\\",\\n \\\"updateTime\\\": \\\"2022-03-30 16:33:58\\\",\\n \\\"isDelete\\\": null\\n }\\n ],\\n \\\"error\\\": false,\\n \\\"success\\\": true\\n}\",\"selectedItem\":\"POST\",\"time\":{\"date\":{\"year\":2024,\"month\":4,\"day\":25},\"time\":{\"hour\":14,\"minute\":7,\"second\":31,\"nano\":114365400}}}]}", + "RequestMappingsPanelOrder0": "0", + "RequestMappingsPanelOrder1": "1", + "RequestMappingsPanelWidth0": "75", + "RequestMappingsPanelWidth1": "75", + "RunOnceActivity.OpenProjectViewOnStart": "true", + "RunOnceActivity.ShowReadmeOnStart": "true", + "WebServerToolWindowFactoryState": "false", + "jdk.selected.JAVA_MODULE": "17", + "last_opened_file_path": "D:/background/shopping_project/bwie-modules/bwie-authentica/src/main/java/com/bwie/authentica", + "node.js.detected.package.eslint": "true", + "node.js.detected.package.tslint": "true", + "node.js.selected.package.eslint": "(autodetect)", + "node.js.selected.package.tslint": "(autodetect)", + "project.structure.last.edited": "Modules", + "project.structure.proportion": "0.17", + "project.structure.side.proportion": "0.28975266", + "vue.rearranger.settings.migration": "true" + } +} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1713925855926 + + + + + + + + + + \ No newline at end of file diff --git a/applogs/xxl-job/xxl-job-executor-sample-springboot.log b/applogs/xxl-job/xxl-job-executor-sample-springboot.log new file mode 100644 index 0000000..32be5fe --- /dev/null +++ b/applogs/xxl-job/xxl-job-executor-sample-springboot.log @@ -0,0 +1,419 @@ +2024-04-28 16:05:01,563 INFO [background-preinit] o.h.validator.internal.util.Version [Version.java : 21] HV000001: Hibernate Validator 6.2.0.Final +2024-04-28 16:05:02,035 INFO [main] c.alibaba.nacos.common.remote.client [RpcClientFactory.java : 80] [RpcClientFactory] create a new rpc client of dbf08289-9c67-4b69-8f4c-2a8e0965020c_config-0 +2024-04-28 16:05:02,086 INFO [main] org.reflections.Reflections [Reflections.java : 232] Reflections took 25 ms to scan 1 urls, producing 3 keys and 6 values +2024-04-28 16:05:02,112 INFO [main] org.reflections.Reflections [Reflections.java : 232] Reflections took 9 ms to scan 1 urls, producing 4 keys and 9 values +2024-04-28 16:05:02,125 INFO [main] org.reflections.Reflections [Reflections.java : 232] Reflections took 11 ms to scan 1 urls, producing 3 keys and 10 values +2024-04-28 16:05:02,128 WARN [main] org.reflections.Reflections [Reflections.java : 179] given scan urls are empty. set urls in the configuration +2024-04-28 16:05:02,132 INFO [main] org.reflections.Reflections [Reflections.java : 232] Reflections took 3 ms to scan 1 urls, producing 1 keys and 5 values +2024-04-28 16:05:02,138 INFO [main] org.reflections.Reflections [Reflections.java : 232] Reflections took 5 ms to scan 1 urls, producing 1 keys and 7 values +2024-04-28 16:05:02,146 INFO [main] org.reflections.Reflections [Reflections.java : 232] Reflections took 4 ms to scan 1 urls, producing 2 keys and 8 values +2024-04-28 16:05:02,147 WARN [main] org.reflections.Reflections [Reflections.java : 179] given scan urls are empty. set urls in the configuration +2024-04-28 16:05:02,147 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [dbf08289-9c67-4b69-8f4c-2a8e0965020c_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} +2024-04-28 16:05:02,148 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [dbf08289-9c67-4b69-8f4c-2a8e0965020c_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$464/0x0000026f203a9ed0 +2024-04-28 16:05:02,148 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [dbf08289-9c67-4b69-8f4c-2a8e0965020c_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$465/0x0000026f203aa0f0 +2024-04-28 16:05:02,148 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [dbf08289-9c67-4b69-8f4c-2a8e0965020c_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 +2024-04-28 16:05:02,149 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [dbf08289-9c67-4b69-8f4c-2a8e0965020c_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 +2024-04-28 16:05:02,154 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [dbf08289-9c67-4b69-8f4c-2a8e0965020c_config-0] Try to connect to server on start up, server: {serverIp = '124.221.30.134', server main port = 8848} +2024-04-28 16:05:03,046 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [dbf08289-9c67-4b69-8f4c-2a8e0965020c_config-0] Success to connect to server [124.221.30.134:8848] on start up, connectionId = 1714291502295_114.95.173.7_54517 +2024-04-28 16:05:03,047 INFO [com.alibaba.nacos.client.remote.worker] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [dbf08289-9c67-4b69-8f4c-2a8e0965020c_config-0] Notify connected event to listeners. +2024-04-28 16:05:03,048 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [dbf08289-9c67-4b69-8f4c-2a8e0965020c_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler +2024-04-28 16:05:03,048 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [dbf08289-9c67-4b69-8f4c-2a8e0965020c_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$479/0x0000026f204e38c0 +2024-04-28 16:05:03,128 WARN [main] c.a.c.n.c.NacosPropertySourceBuilder [NacosPropertySourceBuilder.java : 87] Ignore the empty nacos configuration and get it based on dataId[bwie-alipay] & group[DEFAULT_GROUP] +2024-04-28 16:05:03,141 WARN [main] c.a.c.n.c.NacosPropertySourceBuilder [NacosPropertySourceBuilder.java : 87] Ignore the empty nacos configuration and get it based on dataId[bwie-alipay.yml] & group[DEFAULT_GROUP] +2024-04-28 16:05:03,156 WARN [main] c.a.c.n.c.NacosPropertySourceBuilder [NacosPropertySourceBuilder.java : 87] Ignore the empty nacos configuration and get it based on dataId[bwie-alipay-dev.yml] & group[DEFAULT_GROUP] +2024-04-28 16:05:03,156 INFO [main] o.s.c.b.c.PropertySourceBootstrapConfiguration [PropertySourceBootstrapConfiguration.java : 109] Located property source: [BootstrapPropertySource {name='bootstrapProperties-bwie-alipay-dev.yml,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-bwie-alipay.yml,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-bwie-alipay,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-application-dev.yml,DEFAULT_GROUP'}] +2024-04-28 16:05:03,162 INFO [main] com.bwie.alipay.AlipayApplication [SpringApplication.java : 639] The following profiles are active: dev +2024-04-28 16:05:03,215 WARN [main] o.s.b.w.s.c.AnnotationConfigServletWebServerApplicationContext [AbstractApplicationContext.java : 591] Exception encountered during context initialization - cancelling refresh attempt: org.springframework.beans.factory.BeanDefinitionStoreException: Failed to parse configuration class [com.bwie.alipay.AlipayApplication]; nested exception is org.springframework.context.annotation.ConflictingBeanDefinitionException: Annotation-specified bean name 'Zhifupay' for bean class [com.bwie.alipay.utils.service.AlipayWay] conflicts with existing, non-compatible bean definition of same name and class [com.bwie.alipay.utils.AlipayWay] +2024-04-28 16:05:03,237 ERROR [main] o.s.boot.SpringApplication [SpringApplication.java : 819] Application run failed +org.springframework.beans.factory.BeanDefinitionStoreException: Failed to parse configuration class [com.bwie.alipay.AlipayApplication]; nested exception is org.springframework.context.annotation.ConflictingBeanDefinitionException: Annotation-specified bean name 'Zhifupay' for bean class [com.bwie.alipay.utils.service.AlipayWay] conflicts with existing, non-compatible bean definition of same name and class [com.bwie.alipay.utils.AlipayWay] + at org.springframework.context.annotation.ConfigurationClassParser.parse(ConfigurationClassParser.java:189) + at org.springframework.context.annotation.ConfigurationClassPostProcessor.processConfigBeanDefinitions(ConfigurationClassPostProcessor.java:331) + at org.springframework.context.annotation.ConfigurationClassPostProcessor.postProcessBeanDefinitionRegistry(ConfigurationClassPostProcessor.java:247) + at org.springframework.context.support.PostProcessorRegistrationDelegate.invokeBeanDefinitionRegistryPostProcessors(PostProcessorRegistrationDelegate.java:311) + at org.springframework.context.support.PostProcessorRegistrationDelegate.invokeBeanFactoryPostProcessors(PostProcessorRegistrationDelegate.java:112) + at org.springframework.context.support.AbstractApplicationContext.invokeBeanFactoryPostProcessors(AbstractApplicationContext.java:746) + at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:564) + at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:145) + at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:730) + at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:412) + at org.springframework.boot.SpringApplication.run(SpringApplication.java:302) + at org.springframework.boot.SpringApplication.run(SpringApplication.java:1301) + at org.springframework.boot.SpringApplication.run(SpringApplication.java:1290) + at com.bwie.alipay.AlipayApplication.main(AlipayApplication.java:17) +Caused by: org.springframework.context.annotation.ConflictingBeanDefinitionException: Annotation-specified bean name 'Zhifupay' for bean class [com.bwie.alipay.utils.service.AlipayWay] conflicts with existing, non-compatible bean definition of same name and class [com.bwie.alipay.utils.AlipayWay] + at org.springframework.context.annotation.ClassPathBeanDefinitionScanner.checkCandidate(ClassPathBeanDefinitionScanner.java:349) + at org.springframework.context.annotation.ClassPathBeanDefinitionScanner.doScan(ClassPathBeanDefinitionScanner.java:287) + at org.springframework.context.annotation.ComponentScanAnnotationParser.parse(ComponentScanAnnotationParser.java:128) + at org.springframework.context.annotation.ConfigurationClassParser.doProcessConfigurationClass(ConfigurationClassParser.java:296) + at org.springframework.context.annotation.ConfigurationClassParser.processConfigurationClass(ConfigurationClassParser.java:250) + at org.springframework.context.annotation.ConfigurationClassParser.parse(ConfigurationClassParser.java:207) + at org.springframework.context.annotation.ConfigurationClassParser.parse(ConfigurationClassParser.java:175) + ... 13 common frames omitted +2024-04-28 16:05:03,238 WARN [Thread-1] c.a.n.c.http.HttpClientBeanHolder [HttpClientBeanHolder.java : 108] [HttpClientBeanHolder] Start destroying common HttpClient +2024-04-28 16:05:03,238 WARN [Thread-5] c.a.nacos.common.notify.NotifyCenter [NotifyCenter.java : 136] [NotifyCenter] Start destroying Publisher +2024-04-28 16:05:03,238 WARN [Thread-5] c.a.nacos.common.notify.NotifyCenter [NotifyCenter.java : 153] [NotifyCenter] Destruction of the end +2024-04-28 16:05:03,238 WARN [Thread-1] c.a.n.c.http.HttpClientBeanHolder [HttpClientBeanHolder.java : 114] [HttpClientBeanHolder] Destruction of the end +2024-04-28 16:06:10,334 INFO [background-preinit] o.h.validator.internal.util.Version [Version.java : 21] HV000001: Hibernate Validator 6.2.0.Final +2024-04-28 16:06:10,813 INFO [main] c.alibaba.nacos.common.remote.client [RpcClientFactory.java : 80] [RpcClientFactory] create a new rpc client of 0dfe1dd2-edc7-4a67-b541-943546784bd6_config-0 +2024-04-28 16:06:10,851 INFO [main] org.reflections.Reflections [Reflections.java : 232] Reflections took 19 ms to scan 1 urls, producing 3 keys and 6 values +2024-04-28 16:06:10,874 INFO [main] org.reflections.Reflections [Reflections.java : 232] Reflections took 14 ms to scan 1 urls, producing 4 keys and 9 values +2024-04-28 16:06:10,880 INFO [main] org.reflections.Reflections [Reflections.java : 232] Reflections took 5 ms to scan 1 urls, producing 3 keys and 10 values +2024-04-28 16:06:10,882 WARN [main] org.reflections.Reflections [Reflections.java : 179] given scan urls are empty. set urls in the configuration +2024-04-28 16:06:10,888 INFO [main] org.reflections.Reflections [Reflections.java : 232] Reflections took 6 ms to scan 1 urls, producing 1 keys and 5 values +2024-04-28 16:06:10,896 INFO [main] org.reflections.Reflections [Reflections.java : 232] Reflections took 5 ms to scan 1 urls, producing 1 keys and 7 values +2024-04-28 16:06:10,904 INFO [main] org.reflections.Reflections [Reflections.java : 232] Reflections took 6 ms to scan 1 urls, producing 2 keys and 8 values +2024-04-28 16:06:10,905 WARN [main] org.reflections.Reflections [Reflections.java : 179] given scan urls are empty. set urls in the configuration +2024-04-28 16:06:10,906 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [0dfe1dd2-edc7-4a67-b541-943546784bd6_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} +2024-04-28 16:06:10,906 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [0dfe1dd2-edc7-4a67-b541-943546784bd6_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$464/0x00000272013a9220 +2024-04-28 16:06:10,907 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [0dfe1dd2-edc7-4a67-b541-943546784bd6_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$465/0x00000272013a9440 +2024-04-28 16:06:10,907 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [0dfe1dd2-edc7-4a67-b541-943546784bd6_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 +2024-04-28 16:06:10,908 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [0dfe1dd2-edc7-4a67-b541-943546784bd6_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 +2024-04-28 16:06:10,913 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [0dfe1dd2-edc7-4a67-b541-943546784bd6_config-0] Try to connect to server on start up, server: {serverIp = '124.221.30.134', server main port = 8848} +2024-04-28 16:06:11,718 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [0dfe1dd2-edc7-4a67-b541-943546784bd6_config-0] Success to connect to server [124.221.30.134:8848] on start up, connectionId = 1714291570976_114.95.173.5_64797 +2024-04-28 16:06:11,719 INFO [com.alibaba.nacos.client.remote.worker] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [0dfe1dd2-edc7-4a67-b541-943546784bd6_config-0] Notify connected event to listeners. +2024-04-28 16:06:11,719 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [0dfe1dd2-edc7-4a67-b541-943546784bd6_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler +2024-04-28 16:06:11,719 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [0dfe1dd2-edc7-4a67-b541-943546784bd6_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$479/0x00000272014e2b58 +2024-04-28 16:06:11,816 WARN [main] c.a.c.n.c.NacosPropertySourceBuilder [NacosPropertySourceBuilder.java : 87] Ignore the empty nacos configuration and get it based on dataId[bwie-alipay] & group[DEFAULT_GROUP] +2024-04-28 16:06:11,841 WARN [main] c.a.c.n.c.NacosPropertySourceBuilder [NacosPropertySourceBuilder.java : 87] Ignore the empty nacos configuration and get it based on dataId[bwie-alipay.yml] & group[DEFAULT_GROUP] +2024-04-28 16:06:11,859 INFO [main] o.s.c.b.c.PropertySourceBootstrapConfiguration [PropertySourceBootstrapConfiguration.java : 109] Located property source: [BootstrapPropertySource {name='bootstrapProperties-bwie-alipay-dev.yml,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-bwie-alipay.yml,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-bwie-alipay,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-application-dev.yml,DEFAULT_GROUP'}] +2024-04-28 16:06:11,870 INFO [main] com.bwie.alipay.AlipayApplication [SpringApplication.java : 639] The following profiles are active: dev +2024-04-28 16:06:11,914 WARN [main] o.s.b.w.s.c.AnnotationConfigServletWebServerApplicationContext [AbstractApplicationContext.java : 591] Exception encountered during context initialization - cancelling refresh attempt: org.springframework.beans.factory.BeanDefinitionStoreException: Failed to parse configuration class [com.bwie.alipay.AlipayApplication]; nested exception is org.springframework.context.annotation.ConflictingBeanDefinitionException: Annotation-specified bean name 'Zhifupay' for bean class [com.bwie.alipay.utils.service.AlipayWay] conflicts with existing, non-compatible bean definition of same name and class [com.bwie.alipay.utils.AlipayWay] +2024-04-28 16:06:11,931 ERROR [main] o.s.boot.SpringApplication [SpringApplication.java : 819] Application run failed +org.springframework.beans.factory.BeanDefinitionStoreException: Failed to parse configuration class [com.bwie.alipay.AlipayApplication]; nested exception is org.springframework.context.annotation.ConflictingBeanDefinitionException: Annotation-specified bean name 'Zhifupay' for bean class [com.bwie.alipay.utils.service.AlipayWay] conflicts with existing, non-compatible bean definition of same name and class [com.bwie.alipay.utils.AlipayWay] + at org.springframework.context.annotation.ConfigurationClassParser.parse(ConfigurationClassParser.java:189) + at org.springframework.context.annotation.ConfigurationClassPostProcessor.processConfigBeanDefinitions(ConfigurationClassPostProcessor.java:331) + at org.springframework.context.annotation.ConfigurationClassPostProcessor.postProcessBeanDefinitionRegistry(ConfigurationClassPostProcessor.java:247) + at org.springframework.context.support.PostProcessorRegistrationDelegate.invokeBeanDefinitionRegistryPostProcessors(PostProcessorRegistrationDelegate.java:311) + at org.springframework.context.support.PostProcessorRegistrationDelegate.invokeBeanFactoryPostProcessors(PostProcessorRegistrationDelegate.java:112) + at org.springframework.context.support.AbstractApplicationContext.invokeBeanFactoryPostProcessors(AbstractApplicationContext.java:746) + at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:564) + at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:145) + at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:730) + at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:412) + at org.springframework.boot.SpringApplication.run(SpringApplication.java:302) + at org.springframework.boot.SpringApplication.run(SpringApplication.java:1301) + at org.springframework.boot.SpringApplication.run(SpringApplication.java:1290) + at com.bwie.alipay.AlipayApplication.main(AlipayApplication.java:17) +Caused by: org.springframework.context.annotation.ConflictingBeanDefinitionException: Annotation-specified bean name 'Zhifupay' for bean class [com.bwie.alipay.utils.service.AlipayWay] conflicts with existing, non-compatible bean definition of same name and class [com.bwie.alipay.utils.AlipayWay] + at org.springframework.context.annotation.ClassPathBeanDefinitionScanner.checkCandidate(ClassPathBeanDefinitionScanner.java:349) + at org.springframework.context.annotation.ClassPathBeanDefinitionScanner.doScan(ClassPathBeanDefinitionScanner.java:287) + at org.springframework.context.annotation.ComponentScanAnnotationParser.parse(ComponentScanAnnotationParser.java:128) + at org.springframework.context.annotation.ConfigurationClassParser.doProcessConfigurationClass(ConfigurationClassParser.java:296) + at org.springframework.context.annotation.ConfigurationClassParser.processConfigurationClass(ConfigurationClassParser.java:250) + at org.springframework.context.annotation.ConfigurationClassParser.parse(ConfigurationClassParser.java:207) + at org.springframework.context.annotation.ConfigurationClassParser.parse(ConfigurationClassParser.java:175) + ... 13 common frames omitted +2024-04-28 16:06:11,932 WARN [Thread-5] c.a.nacos.common.notify.NotifyCenter [NotifyCenter.java : 136] [NotifyCenter] Start destroying Publisher +2024-04-28 16:06:11,932 WARN [Thread-5] c.a.nacos.common.notify.NotifyCenter [NotifyCenter.java : 153] [NotifyCenter] Destruction of the end +2024-04-28 16:06:11,932 WARN [Thread-1] c.a.n.c.http.HttpClientBeanHolder [HttpClientBeanHolder.java : 108] [HttpClientBeanHolder] Start destroying common HttpClient +2024-04-28 16:06:11,932 WARN [Thread-1] c.a.n.c.http.HttpClientBeanHolder [HttpClientBeanHolder.java : 114] [HttpClientBeanHolder] Destruction of the end +2024-04-28 16:09:02,501 INFO [background-preinit] o.h.validator.internal.util.Version [Version.java : 21] HV000001: Hibernate Validator 6.2.0.Final +2024-04-28 16:09:02,931 INFO [main] c.alibaba.nacos.common.remote.client [RpcClientFactory.java : 80] [RpcClientFactory] create a new rpc client of a09db6bb-c099-4be4-b15d-09a768d5e502_config-0 +2024-04-28 16:09:02,975 INFO [main] org.reflections.Reflections [Reflections.java : 232] Reflections took 25 ms to scan 1 urls, producing 3 keys and 6 values +2024-04-28 16:09:03,003 INFO [main] org.reflections.Reflections [Reflections.java : 232] Reflections took 13 ms to scan 1 urls, producing 4 keys and 9 values +2024-04-28 16:09:03,023 INFO [main] org.reflections.Reflections [Reflections.java : 232] Reflections took 17 ms to scan 1 urls, producing 3 keys and 10 values +2024-04-28 16:09:03,024 WARN [main] org.reflections.Reflections [Reflections.java : 179] given scan urls are empty. set urls in the configuration +2024-04-28 16:09:03,029 INFO [main] org.reflections.Reflections [Reflections.java : 232] Reflections took 4 ms to scan 1 urls, producing 1 keys and 5 values +2024-04-28 16:09:03,037 INFO [main] org.reflections.Reflections [Reflections.java : 232] Reflections took 6 ms to scan 1 urls, producing 1 keys and 7 values +2024-04-28 16:09:03,043 INFO [main] org.reflections.Reflections [Reflections.java : 232] Reflections took 5 ms to scan 1 urls, producing 2 keys and 8 values +2024-04-28 16:09:03,046 WARN [main] org.reflections.Reflections [Reflections.java : 179] given scan urls are empty. set urls in the configuration +2024-04-28 16:09:03,047 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [a09db6bb-c099-4be4-b15d-09a768d5e502_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} +2024-04-28 16:09:03,047 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [a09db6bb-c099-4be4-b15d-09a768d5e502_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$464/0x000001a5013a9bf8 +2024-04-28 16:09:03,047 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [a09db6bb-c099-4be4-b15d-09a768d5e502_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$465/0x000001a5013a9e18 +2024-04-28 16:09:03,048 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [a09db6bb-c099-4be4-b15d-09a768d5e502_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 +2024-04-28 16:09:03,048 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [a09db6bb-c099-4be4-b15d-09a768d5e502_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 +2024-04-28 16:09:03,056 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [a09db6bb-c099-4be4-b15d-09a768d5e502_config-0] Try to connect to server on start up, server: {serverIp = '124.221.30.134', server main port = 8848} +2024-04-28 16:09:03,935 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [a09db6bb-c099-4be4-b15d-09a768d5e502_config-0] Success to connect to server [124.221.30.134:8848] on start up, connectionId = 1714291743154_114.95.172.254_50017 +2024-04-28 16:09:03,936 INFO [com.alibaba.nacos.client.remote.worker] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [a09db6bb-c099-4be4-b15d-09a768d5e502_config-0] Notify connected event to listeners. +2024-04-28 16:09:03,937 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [a09db6bb-c099-4be4-b15d-09a768d5e502_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler +2024-04-28 16:09:03,939 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [a09db6bb-c099-4be4-b15d-09a768d5e502_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$479/0x000001a5014e38c0 +2024-04-28 16:09:04,069 WARN [main] c.a.c.n.c.NacosPropertySourceBuilder [NacosPropertySourceBuilder.java : 87] Ignore the empty nacos configuration and get it based on dataId[bwie-alipay] & group[DEFAULT_GROUP] +2024-04-28 16:09:04,093 WARN [main] c.a.c.n.c.NacosPropertySourceBuilder [NacosPropertySourceBuilder.java : 87] Ignore the empty nacos configuration and get it based on dataId[bwie-alipay.yml] & group[DEFAULT_GROUP] +2024-04-28 16:09:04,132 INFO [main] o.s.c.b.c.PropertySourceBootstrapConfiguration [PropertySourceBootstrapConfiguration.java : 109] Located property source: [BootstrapPropertySource {name='bootstrapProperties-bwie-alipay-dev.yml,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-bwie-alipay.yml,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-bwie-alipay,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-application-dev.yml,DEFAULT_GROUP'}] +2024-04-28 16:09:04,146 INFO [main] com.bwie.alipay.AlipayApplication [SpringApplication.java : 639] The following profiles are active: dev +2024-04-28 16:09:04,193 WARN [main] o.s.b.w.s.c.AnnotationConfigServletWebServerApplicationContext [AbstractApplicationContext.java : 591] Exception encountered during context initialization - cancelling refresh attempt: org.springframework.beans.factory.BeanDefinitionStoreException: Failed to parse configuration class [com.bwie.alipay.AlipayApplication]; nested exception is org.springframework.context.annotation.ConflictingBeanDefinitionException: Annotation-specified bean name 'Wechpay' for bean class [com.bwie.alipay.utils.service.Wechpay] conflicts with existing, non-compatible bean definition of same name and class [com.bwie.alipay.utils.Wechpay] +2024-04-28 16:09:04,210 ERROR [main] o.s.boot.SpringApplication [SpringApplication.java : 819] Application run failed +org.springframework.beans.factory.BeanDefinitionStoreException: Failed to parse configuration class [com.bwie.alipay.AlipayApplication]; nested exception is org.springframework.context.annotation.ConflictingBeanDefinitionException: Annotation-specified bean name 'Wechpay' for bean class [com.bwie.alipay.utils.service.Wechpay] conflicts with existing, non-compatible bean definition of same name and class [com.bwie.alipay.utils.Wechpay] + at org.springframework.context.annotation.ConfigurationClassParser.parse(ConfigurationClassParser.java:189) + at org.springframework.context.annotation.ConfigurationClassPostProcessor.processConfigBeanDefinitions(ConfigurationClassPostProcessor.java:331) + at org.springframework.context.annotation.ConfigurationClassPostProcessor.postProcessBeanDefinitionRegistry(ConfigurationClassPostProcessor.java:247) + at org.springframework.context.support.PostProcessorRegistrationDelegate.invokeBeanDefinitionRegistryPostProcessors(PostProcessorRegistrationDelegate.java:311) + at org.springframework.context.support.PostProcessorRegistrationDelegate.invokeBeanFactoryPostProcessors(PostProcessorRegistrationDelegate.java:112) + at org.springframework.context.support.AbstractApplicationContext.invokeBeanFactoryPostProcessors(AbstractApplicationContext.java:746) + at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:564) + at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:145) + at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:730) + at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:412) + at org.springframework.boot.SpringApplication.run(SpringApplication.java:302) + at org.springframework.boot.SpringApplication.run(SpringApplication.java:1301) + at org.springframework.boot.SpringApplication.run(SpringApplication.java:1290) + at com.bwie.alipay.AlipayApplication.main(AlipayApplication.java:17) +Caused by: org.springframework.context.annotation.ConflictingBeanDefinitionException: Annotation-specified bean name 'Wechpay' for bean class [com.bwie.alipay.utils.service.Wechpay] conflicts with existing, non-compatible bean definition of same name and class [com.bwie.alipay.utils.Wechpay] + at org.springframework.context.annotation.ClassPathBeanDefinitionScanner.checkCandidate(ClassPathBeanDefinitionScanner.java:349) + at org.springframework.context.annotation.ClassPathBeanDefinitionScanner.doScan(ClassPathBeanDefinitionScanner.java:287) + at org.springframework.context.annotation.ComponentScanAnnotationParser.parse(ComponentScanAnnotationParser.java:128) + at org.springframework.context.annotation.ConfigurationClassParser.doProcessConfigurationClass(ConfigurationClassParser.java:296) + at org.springframework.context.annotation.ConfigurationClassParser.processConfigurationClass(ConfigurationClassParser.java:250) + at org.springframework.context.annotation.ConfigurationClassParser.parse(ConfigurationClassParser.java:207) + at org.springframework.context.annotation.ConfigurationClassParser.parse(ConfigurationClassParser.java:175) + ... 13 common frames omitted +2024-04-28 16:09:04,212 WARN [Thread-5] c.a.nacos.common.notify.NotifyCenter [NotifyCenter.java : 136] [NotifyCenter] Start destroying Publisher +2024-04-28 16:09:04,212 WARN [Thread-5] c.a.nacos.common.notify.NotifyCenter [NotifyCenter.java : 153] [NotifyCenter] Destruction of the end +2024-04-28 16:09:04,212 WARN [Thread-1] c.a.n.c.http.HttpClientBeanHolder [HttpClientBeanHolder.java : 108] [HttpClientBeanHolder] Start destroying common HttpClient +2024-04-28 16:15:00,636 INFO [background-preinit] o.h.validator.internal.util.Version [Version.java : 21] HV000001: Hibernate Validator 6.2.0.Final +2024-04-28 16:15:01,095 INFO [main] c.alibaba.nacos.common.remote.client [RpcClientFactory.java : 80] [RpcClientFactory] create a new rpc client of 19d4d766-2e7b-4bb3-a21d-8d196cc6a82f_config-0 +2024-04-28 16:15:01,134 INFO [main] org.reflections.Reflections [Reflections.java : 232] Reflections took 19 ms to scan 1 urls, producing 3 keys and 6 values +2024-04-28 16:15:01,153 INFO [main] org.reflections.Reflections [Reflections.java : 232] Reflections took 8 ms to scan 1 urls, producing 4 keys and 9 values +2024-04-28 16:15:01,164 INFO [main] org.reflections.Reflections [Reflections.java : 232] Reflections took 10 ms to scan 1 urls, producing 3 keys and 10 values +2024-04-28 16:15:01,165 WARN [main] org.reflections.Reflections [Reflections.java : 179] given scan urls are empty. set urls in the configuration +2024-04-28 16:15:01,174 INFO [main] org.reflections.Reflections [Reflections.java : 232] Reflections took 9 ms to scan 1 urls, producing 1 keys and 5 values +2024-04-28 16:15:01,181 INFO [main] org.reflections.Reflections [Reflections.java : 232] Reflections took 5 ms to scan 1 urls, producing 1 keys and 7 values +2024-04-28 16:15:01,187 INFO [main] org.reflections.Reflections [Reflections.java : 232] Reflections took 5 ms to scan 1 urls, producing 2 keys and 8 values +2024-04-28 16:15:01,188 WARN [main] org.reflections.Reflections [Reflections.java : 179] given scan urls are empty. set urls in the configuration +2024-04-28 16:15:01,189 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [19d4d766-2e7b-4bb3-a21d-8d196cc6a82f_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} +2024-04-28 16:15:01,190 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [19d4d766-2e7b-4bb3-a21d-8d196cc6a82f_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$464/0x000001ff15378b08 +2024-04-28 16:15:01,191 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [19d4d766-2e7b-4bb3-a21d-8d196cc6a82f_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$465/0x000001ff15378d28 +2024-04-28 16:15:01,191 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [19d4d766-2e7b-4bb3-a21d-8d196cc6a82f_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 +2024-04-28 16:15:01,192 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [19d4d766-2e7b-4bb3-a21d-8d196cc6a82f_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 +2024-04-28 16:15:01,196 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [19d4d766-2e7b-4bb3-a21d-8d196cc6a82f_config-0] Try to connect to server on start up, server: {serverIp = '124.221.30.134', server main port = 8848} +2024-04-28 16:15:01,971 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [19d4d766-2e7b-4bb3-a21d-8d196cc6a82f_config-0] Success to connect to server [124.221.30.134:8848] on start up, connectionId = 1714292101229_114.95.172.254_65271 +2024-04-28 16:15:01,974 INFO [com.alibaba.nacos.client.remote.worker] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [19d4d766-2e7b-4bb3-a21d-8d196cc6a82f_config-0] Notify connected event to listeners. +2024-04-28 16:15:01,975 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [19d4d766-2e7b-4bb3-a21d-8d196cc6a82f_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler +2024-04-28 16:15:01,976 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [19d4d766-2e7b-4bb3-a21d-8d196cc6a82f_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$479/0x000001ff154d22e8 +2024-04-28 16:15:02,076 WARN [main] c.a.c.n.c.NacosPropertySourceBuilder [NacosPropertySourceBuilder.java : 87] Ignore the empty nacos configuration and get it based on dataId[bwie-alipay] & group[DEFAULT_GROUP] +2024-04-28 16:15:02,089 WARN [main] c.a.c.n.c.NacosPropertySourceBuilder [NacosPropertySourceBuilder.java : 87] Ignore the empty nacos configuration and get it based on dataId[bwie-alipay.yml] & group[DEFAULT_GROUP] +2024-04-28 16:15:02,104 INFO [main] o.s.c.b.c.PropertySourceBootstrapConfiguration [PropertySourceBootstrapConfiguration.java : 109] Located property source: [BootstrapPropertySource {name='bootstrapProperties-bwie-alipay-dev.yml,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-bwie-alipay.yml,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-bwie-alipay,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-application-dev.yml,DEFAULT_GROUP'}] +2024-04-28 16:15:02,120 INFO [main] com.bwie.alipay.AlipayApplication [SpringApplication.java : 639] The following profiles are active: dev +2024-04-28 16:15:02,470 ERROR [main] o.s.boot.SpringApplication [SpringApplication.java : 819] Application run failed +java.lang.IllegalArgumentException: Fallback factory must produce instances of fallback classes that implement the interface annotated by @FeignClient + at org.springframework.util.Assert.isTrue(Assert.java:121) + at org.springframework.cloud.openfeign.FeignClientsRegistrar.validateFallbackFactory(FeignClientsRegistrar.java:88) + at org.springframework.cloud.openfeign.FeignClientsRegistrar.validate(FeignClientsRegistrar.java:266) + at org.springframework.cloud.openfeign.FeignClientsRegistrar.registerFeignClient(FeignClientsRegistrar.java:239) + at org.springframework.cloud.openfeign.FeignClientsRegistrar.registerFeignClients(FeignClientsRegistrar.java:202) + at org.springframework.cloud.openfeign.FeignClientsRegistrar.registerBeanDefinitions(FeignClientsRegistrar.java:151) + at org.springframework.context.annotation.ImportBeanDefinitionRegistrar.registerBeanDefinitions(ImportBeanDefinitionRegistrar.java:86) + at org.springframework.context.annotation.ConfigurationClassBeanDefinitionReader.lambda$loadBeanDefinitionsFromRegistrars$1(ConfigurationClassBeanDefinitionReader.java:396) + at java.base/java.util.LinkedHashMap.forEach(LinkedHashMap.java:721) + at org.springframework.context.annotation.ConfigurationClassBeanDefinitionReader.loadBeanDefinitionsFromRegistrars(ConfigurationClassBeanDefinitionReader.java:395) + at org.springframework.context.annotation.ConfigurationClassBeanDefinitionReader.loadBeanDefinitionsForConfigurationClass(ConfigurationClassBeanDefinitionReader.java:157) + at org.springframework.context.annotation.ConfigurationClassBeanDefinitionReader.loadBeanDefinitions(ConfigurationClassBeanDefinitionReader.java:129) + at org.springframework.context.annotation.ConfigurationClassPostProcessor.processConfigBeanDefinitions(ConfigurationClassPostProcessor.java:343) + at org.springframework.context.annotation.ConfigurationClassPostProcessor.postProcessBeanDefinitionRegistry(ConfigurationClassPostProcessor.java:247) + at org.springframework.context.support.PostProcessorRegistrationDelegate.invokeBeanDefinitionRegistryPostProcessors(PostProcessorRegistrationDelegate.java:311) + at org.springframework.context.support.PostProcessorRegistrationDelegate.invokeBeanFactoryPostProcessors(PostProcessorRegistrationDelegate.java:112) + at org.springframework.context.support.AbstractApplicationContext.invokeBeanFactoryPostProcessors(AbstractApplicationContext.java:746) + at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:564) + at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:145) + at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:730) + at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:412) + at org.springframework.boot.SpringApplication.run(SpringApplication.java:302) + at org.springframework.boot.SpringApplication.run(SpringApplication.java:1301) + at org.springframework.boot.SpringApplication.run(SpringApplication.java:1290) + at com.bwie.alipay.AlipayApplication.main(AlipayApplication.java:17) +2024-04-28 16:15:02,472 WARN [Thread-5] c.a.nacos.common.notify.NotifyCenter [NotifyCenter.java : 136] [NotifyCenter] Start destroying Publisher +2024-04-28 16:15:02,472 WARN [Thread-1] c.a.n.c.http.HttpClientBeanHolder [HttpClientBeanHolder.java : 108] [HttpClientBeanHolder] Start destroying common HttpClient +2024-04-28 16:15:02,473 WARN [Thread-5] c.a.nacos.common.notify.NotifyCenter [NotifyCenter.java : 153] [NotifyCenter] Destruction of the end +2024-04-28 16:15:02,473 WARN [Thread-1] c.a.n.c.http.HttpClientBeanHolder [HttpClientBeanHolder.java : 114] [HttpClientBeanHolder] Destruction of the end +2024-04-28 16:15:31,923 INFO [background-preinit] o.h.validator.internal.util.Version [Version.java : 21] HV000001: Hibernate Validator 6.2.0.Final +2024-04-28 16:15:32,354 INFO [main] c.alibaba.nacos.common.remote.client [RpcClientFactory.java : 80] [RpcClientFactory] create a new rpc client of f68e4aab-8748-4e37-ab80-e28c7e9d8077_config-0 +2024-04-28 16:15:32,391 INFO [main] org.reflections.Reflections [Reflections.java : 232] Reflections took 18 ms to scan 1 urls, producing 3 keys and 6 values +2024-04-28 16:15:32,409 INFO [main] org.reflections.Reflections [Reflections.java : 232] Reflections took 8 ms to scan 1 urls, producing 4 keys and 9 values +2024-04-28 16:15:32,416 INFO [main] org.reflections.Reflections [Reflections.java : 232] Reflections took 5 ms to scan 1 urls, producing 3 keys and 10 values +2024-04-28 16:15:32,417 WARN [main] org.reflections.Reflections [Reflections.java : 179] given scan urls are empty. set urls in the configuration +2024-04-28 16:15:32,430 INFO [main] org.reflections.Reflections [Reflections.java : 232] Reflections took 12 ms to scan 1 urls, producing 1 keys and 5 values +2024-04-28 16:15:32,436 INFO [main] org.reflections.Reflections [Reflections.java : 232] Reflections took 4 ms to scan 1 urls, producing 1 keys and 7 values +2024-04-28 16:15:32,443 INFO [main] org.reflections.Reflections [Reflections.java : 232] Reflections took 6 ms to scan 1 urls, producing 2 keys and 8 values +2024-04-28 16:15:32,444 WARN [main] org.reflections.Reflections [Reflections.java : 179] given scan urls are empty. set urls in the configuration +2024-04-28 16:15:32,445 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [f68e4aab-8748-4e37-ab80-e28c7e9d8077_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} +2024-04-28 16:15:32,445 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [f68e4aab-8748-4e37-ab80-e28c7e9d8077_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$464/0x000002711e3a9bf8 +2024-04-28 16:15:32,446 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [f68e4aab-8748-4e37-ab80-e28c7e9d8077_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$465/0x000002711e3a9e18 +2024-04-28 16:15:32,446 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [f68e4aab-8748-4e37-ab80-e28c7e9d8077_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 +2024-04-28 16:15:32,446 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [f68e4aab-8748-4e37-ab80-e28c7e9d8077_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 +2024-04-28 16:15:32,452 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [f68e4aab-8748-4e37-ab80-e28c7e9d8077_config-0] Try to connect to server on start up, server: {serverIp = '124.221.30.134', server main port = 8848} +2024-04-28 16:15:33,229 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [f68e4aab-8748-4e37-ab80-e28c7e9d8077_config-0] Success to connect to server [124.221.30.134:8848] on start up, connectionId = 1714292132484_114.95.172.249_65303 +2024-04-28 16:15:33,230 INFO [com.alibaba.nacos.client.remote.worker] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [f68e4aab-8748-4e37-ab80-e28c7e9d8077_config-0] Notify connected event to listeners. +2024-04-28 16:15:33,231 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [f68e4aab-8748-4e37-ab80-e28c7e9d8077_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler +2024-04-28 16:15:33,232 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [f68e4aab-8748-4e37-ab80-e28c7e9d8077_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$479/0x000002711e4e38c0 +2024-04-28 16:15:33,332 WARN [main] c.a.c.n.c.NacosPropertySourceBuilder [NacosPropertySourceBuilder.java : 87] Ignore the empty nacos configuration and get it based on dataId[bwie-alipay] & group[DEFAULT_GROUP] +2024-04-28 16:15:33,344 WARN [main] c.a.c.n.c.NacosPropertySourceBuilder [NacosPropertySourceBuilder.java : 87] Ignore the empty nacos configuration and get it based on dataId[bwie-alipay.yml] & group[DEFAULT_GROUP] +2024-04-28 16:15:33,365 INFO [main] o.s.c.b.c.PropertySourceBootstrapConfiguration [PropertySourceBootstrapConfiguration.java : 109] Located property source: [BootstrapPropertySource {name='bootstrapProperties-bwie-alipay-dev.yml,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-bwie-alipay.yml,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-bwie-alipay,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-application-dev.yml,DEFAULT_GROUP'}] +2024-04-28 16:15:33,381 INFO [main] com.bwie.alipay.AlipayApplication [SpringApplication.java : 639] The following profiles are active: dev +2024-04-28 16:15:33,878 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java : 262] Multiple Spring Data modules found, entering strict repository configuration mode! +2024-04-28 16:15:33,882 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java : 132] Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2024-04-28 16:15:33,904 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java : 201] Finished Spring Data repository scanning in 6 ms. Found 0 Redis repository interfaces. +2024-04-28 16:15:34,119 INFO [main] o.s.cloud.context.scope.GenericScope [GenericScope.java : 283] BeanFactory id=3fa509a4-6c1e-3012-9449-bdcebe782b4d +2024-04-28 16:15:34,371 INFO [main] o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [PostProcessorRegistrationDelegate.java : 376] Bean 'org.springframework.cloud.commons.config.CommonsConfigAutoConfiguration' of type [org.springframework.cloud.commons.config.CommonsConfigAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2024-04-28 16:15:34,373 INFO [main] o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [PostProcessorRegistrationDelegate.java : 376] Bean 'org.springframework.cloud.client.loadbalancer.LoadBalancerDefaultMappingsProviderAutoConfiguration' of type [org.springframework.cloud.client.loadbalancer.LoadBalancerDefaultMappingsProviderAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2024-04-28 16:15:34,374 INFO [main] o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [PostProcessorRegistrationDelegate.java : 376] Bean 'loadBalancerClientsDefaultsMappingsProvider' of type [org.springframework.cloud.client.loadbalancer.LoadBalancerDefaultMappingsProviderAutoConfiguration$$Lambda$643/0x000002711e6920e0] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2024-04-28 16:15:34,375 INFO [main] o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [PostProcessorRegistrationDelegate.java : 376] Bean 'defaultsBindHandlerAdvisor' of type [org.springframework.cloud.commons.config.DefaultsBindHandlerAdvisor] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2024-04-28 16:15:34,399 INFO [main] o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [PostProcessorRegistrationDelegate.java : 376] Bean 'spring.cloud.sentinel-com.alibaba.cloud.sentinel.SentinelProperties' of type [com.alibaba.cloud.sentinel.SentinelProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2024-04-28 16:15:34,404 INFO [main] o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [PostProcessorRegistrationDelegate.java : 376] Bean 'com.alibaba.cloud.sentinel.custom.SentinelAutoConfiguration' of type [com.alibaba.cloud.sentinel.custom.SentinelAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2024-04-28 16:15:34,576 INFO [main] o.s.b.w.e.tomcat.TomcatWebServer [TomcatWebServer.java : 108] Tomcat initialized with port(s): 9090 (http) +2024-04-28 16:15:34,583 INFO [main] o.a.coyote.http11.Http11NioProtocol [DirectJDKLog.java : 173] Initializing ProtocolHandler ["http-nio-9090"] +2024-04-28 16:15:34,583 INFO [main] o.a.catalina.core.StandardService [DirectJDKLog.java : 173] Starting service [Tomcat] +2024-04-28 16:15:34,583 INFO [main] o.a.catalina.core.StandardEngine [DirectJDKLog.java : 173] Starting Servlet engine: [Apache Tomcat/9.0.56] +2024-04-28 16:15:34,683 INFO [main] o.a.c.c.C.[Tomcat].[localhost].[/] [DirectJDKLog.java : 173] Initializing Spring embedded WebApplicationContext +2024-04-28 16:15:34,683 INFO [main] o.s.b.w.s.c.ServletWebServerApplicationContext [ServletWebServerApplicationContext.java : 290] Root WebApplicationContext: initialization completed in 1285 ms +2024-04-28 16:15:34,897 WARN [main] c.b.m.core.metadata.TableInfoHelper [TableInfoHelper.java : 375] Can not find table primary key in Class: "com.bwie.common.domain.BuyOrder". +2024-04-28 16:15:34,901 WARN [main] c.b.m.c.injector.DefaultSqlInjector [DefaultSqlInjector.java : 52] class com.bwie.common.domain.BuyOrder ,Not found @TableId annotation, Cannot use Mybatis-Plus 'xxById' Method. +2024-04-28 16:15:34,938 WARN [main] c.b.m.core.metadata.TableInfoHelper [TableInfoHelper.java : 375] Can not find table primary key in Class: "com.bwie.common.domain.PaymentEntity". +2024-04-28 16:15:34,938 WARN [main] c.b.m.c.injector.DefaultSqlInjector [DefaultSqlInjector.java : 52] class com.bwie.common.domain.PaymentEntity ,Not found @TableId annotation, Cannot use Mybatis-Plus 'xxById' Method. +2024-04-28 16:15:35,192 INFO [main] c.a.c.s.SentinelWebAutoConfiguration [SentinelWebAutoConfiguration.java : 80] [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. +2024-04-28 16:15:36,181 WARN [main] o.s.c.l.c.LoadBalancerCacheAutoConfiguration$LoadBalancerCaffeineWarnLogger [LoadBalancerCacheAutoConfiguration.java : 82] Spring Cloud LoadBalancer is currently working with the default cache. You can switch to using Caffeine cache, by adding it and org.springframework.cache.caffeine.CaffeineCacheManager to the classpath. +2024-04-28 16:15:36,285 INFO [main] c.alibaba.nacos.common.remote.client [RpcClientFactory.java : 80] [RpcClientFactory] create a new rpc client of 55c05d2c-8118-48d2-8988-7c77cfd4ef61 +2024-04-28 16:15:36,287 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [55c05d2c-8118-48d2-8988-7c77cfd4ef61] RpcClient init label, labels = {module=naming, source=sdk} +2024-04-28 16:15:36,288 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [55c05d2c-8118-48d2-8988-7c77cfd4ef61] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager +2024-04-28 16:15:36,288 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [55c05d2c-8118-48d2-8988-7c77cfd4ef61] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService +2024-04-28 16:15:36,288 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [55c05d2c-8118-48d2-8988-7c77cfd4ef61] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler +2024-04-28 16:15:36,289 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [55c05d2c-8118-48d2-8988-7c77cfd4ef61] Try to connect to server on start up, server: {serverIp = '124.221.30.134', server main port = 8848} +2024-04-28 16:15:36,422 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [55c05d2c-8118-48d2-8988-7c77cfd4ef61] Success to connect to server [124.221.30.134:8848] on start up, connectionId = 1714292135749_114.95.172.249_65304 +2024-04-28 16:15:36,422 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [55c05d2c-8118-48d2-8988-7c77cfd4ef61] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler +2024-04-28 16:15:36,422 INFO [com.alibaba.nacos.client.remote.worker] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [55c05d2c-8118-48d2-8988-7c77cfd4ef61] Notify connected event to listeners. +2024-04-28 16:15:36,422 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [55c05d2c-8118-48d2-8988-7c77cfd4ef61] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$479/0x000002711e4e38c0 +2024-04-28 16:15:36,459 INFO [main] o.a.coyote.http11.Http11NioProtocol [DirectJDKLog.java : 173] Starting ProtocolHandler ["http-nio-9090"] +2024-04-28 16:15:36,466 INFO [main] o.s.b.w.e.tomcat.TomcatWebServer [TomcatWebServer.java : 220] Tomcat started on port(s): 9090 (http) with context path '' +2024-04-28 16:15:36,484 INFO [main] c.a.c.n.r.NacosServiceRegistry [NacosServiceRegistry.java : 75] nacos registry, DEFAULT_GROUP bwie-alipay 192.168.88.1:9090 register finished +2024-04-28 16:15:36,615 INFO [main] com.bwie.alipay.AlipayApplication [StartupInfoLogger.java : 61] Started AlipayApplication in 5.111 seconds (JVM running for 5.73) +2024-04-28 16:15:37,042 INFO [nacos-grpc-client-executor-5] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [55c05d2c-8118-48d2-8988-7c77cfd4ef61] Receive server push request, request = NotifySubscriberRequest, requestId = 188 +2024-04-28 16:15:37,045 INFO [nacos-grpc-client-executor-5] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [55c05d2c-8118-48d2-8988-7c77cfd4ef61] Ack server push request, request = NotifySubscriberRequest, requestId = 188 +2024-04-28 18:37:21,836 WARN [Thread-5] c.a.nacos.common.notify.NotifyCenter [NotifyCenter.java : 136] [NotifyCenter] Start destroying Publisher +2024-04-28 18:37:21,836 WARN [Thread-1] c.a.n.c.http.HttpClientBeanHolder [HttpClientBeanHolder.java : 108] [HttpClientBeanHolder] Start destroying common HttpClient +2024-04-28 18:37:21,846 WARN [Thread-5] c.a.nacos.common.notify.NotifyCenter [NotifyCenter.java : 153] [NotifyCenter] Destruction of the end +2024-04-28 18:37:21,849 WARN [Thread-1] c.a.n.c.http.HttpClientBeanHolder [HttpClientBeanHolder.java : 114] [HttpClientBeanHolder] Destruction of the end +2024-04-28 18:37:22,005 INFO [SpringApplicationShutdownHook] c.a.c.n.r.NacosServiceRegistry [NacosServiceRegistry.java : 90] De-registering from Nacos Server now... +2024-04-28 18:37:22,017 INFO [SpringApplicationShutdownHook] c.a.c.n.r.NacosServiceRegistry [NacosServiceRegistry.java : 110] De-registration finished. +2024-04-28 18:37:22,355 INFO [SpringApplicationShutdownHook] c.alibaba.nacos.common.remote.client [RpcClient.java : 454] Shutdown rpc client, set status to shutdown +2024-04-28 18:37:22,356 INFO [SpringApplicationShutdownHook] c.alibaba.nacos.common.remote.client [RpcClient.java : 456] Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@1a20e48c[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] +2024-04-28 18:37:22,356 INFO [SpringApplicationShutdownHook] c.alibaba.nacos.common.remote.client [RpcClient.java : 591] Close current connection 1714292135749_114.95.172.249_65304 +2024-04-28 18:37:22,360 INFO [SpringApplicationShutdownHook] c.a.n.c.r.client.grpc.GrpcClient [GrpcClient.java : 85] Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@7e549802[Running, pool size = 4, active threads = 0, queued tasks = 0, completed tasks = 1704] +2024-04-28 18:37:22,361 WARN [SpringApplicationShutdownHook] o.s.b.f.s.DisposableBeanAdapter [DisposableBeanAdapter.java : 328] Custom destroy method 'close' on bean with name 'nacosServiceRegistry' threw an exception: java.lang.NullPointerException: Cannot invoke "com.alibaba.nacos.api.naming.NamingService.shutDown()" because "this.namingService" is null +2024-04-28 18:37:22,364 INFO [SpringApplicationShutdownHook] c.alibaba.druid.pool.DruidDataSource [DruidDataSource.java : 2071] {dataSource-0} closing ... +2024-04-28 21:07:47,974 INFO [background-preinit] o.h.validator.internal.util.Version [Version.java : 21] HV000001: Hibernate Validator 6.2.0.Final +2024-04-28 21:07:48,462 INFO [main] c.alibaba.nacos.common.remote.client [RpcClientFactory.java : 80] [RpcClientFactory] create a new rpc client of 8e051c1f-f214-46cb-91a7-1444e869383c_config-0 +2024-04-28 21:07:48,511 INFO [main] org.reflections.Reflections [Reflections.java : 232] Reflections took 20 ms to scan 1 urls, producing 3 keys and 6 values +2024-04-28 21:07:48,536 INFO [main] org.reflections.Reflections [Reflections.java : 232] Reflections took 12 ms to scan 1 urls, producing 4 keys and 9 values +2024-04-28 21:07:48,545 INFO [main] org.reflections.Reflections [Reflections.java : 232] Reflections took 6 ms to scan 1 urls, producing 3 keys and 10 values +2024-04-28 21:07:48,546 WARN [main] org.reflections.Reflections [Reflections.java : 179] given scan urls are empty. set urls in the configuration +2024-04-28 21:07:48,551 INFO [main] org.reflections.Reflections [Reflections.java : 232] Reflections took 4 ms to scan 1 urls, producing 1 keys and 5 values +2024-04-28 21:07:48,557 INFO [main] org.reflections.Reflections [Reflections.java : 232] Reflections took 5 ms to scan 1 urls, producing 1 keys and 7 values +2024-04-28 21:07:48,564 INFO [main] org.reflections.Reflections [Reflections.java : 232] Reflections took 5 ms to scan 1 urls, producing 2 keys and 8 values +2024-04-28 21:07:48,565 WARN [main] org.reflections.Reflections [Reflections.java : 179] given scan urls are empty. set urls in the configuration +2024-04-28 21:07:48,566 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [8e051c1f-f214-46cb-91a7-1444e869383c_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} +2024-04-28 21:07:48,566 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [8e051c1f-f214-46cb-91a7-1444e869383c_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$464/0x000001e81c3a8fc8 +2024-04-28 21:07:48,566 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [8e051c1f-f214-46cb-91a7-1444e869383c_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$465/0x000001e81c3a91e8 +2024-04-28 21:07:48,567 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [8e051c1f-f214-46cb-91a7-1444e869383c_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 +2024-04-28 21:07:48,567 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [8e051c1f-f214-46cb-91a7-1444e869383c_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 +2024-04-28 21:07:48,572 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [8e051c1f-f214-46cb-91a7-1444e869383c_config-0] Try to connect to server on start up, server: {serverIp = '124.221.30.134', server main port = 8848} +2024-04-28 21:07:49,495 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [8e051c1f-f214-46cb-91a7-1444e869383c_config-0] Success to connect to server [124.221.30.134:8848] on start up, connectionId = 1714309668577_114.95.172.249_60917 +2024-04-28 21:07:49,495 INFO [com.alibaba.nacos.client.remote.worker] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [8e051c1f-f214-46cb-91a7-1444e869383c_config-0] Notify connected event to listeners. +2024-04-28 21:07:49,495 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [8e051c1f-f214-46cb-91a7-1444e869383c_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler +2024-04-28 21:07:49,497 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [8e051c1f-f214-46cb-91a7-1444e869383c_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$479/0x000001e81c4e2b58 +2024-04-28 21:07:49,567 WARN [main] c.a.c.n.c.NacosPropertySourceBuilder [NacosPropertySourceBuilder.java : 87] Ignore the empty nacos configuration and get it based on dataId[bwie-alipay] & group[DEFAULT_GROUP] +2024-04-28 21:07:49,578 WARN [main] c.a.c.n.c.NacosPropertySourceBuilder [NacosPropertySourceBuilder.java : 87] Ignore the empty nacos configuration and get it based on dataId[bwie-alipay.yml] & group[DEFAULT_GROUP] +2024-04-28 21:07:49,595 INFO [main] o.s.c.b.c.PropertySourceBootstrapConfiguration [PropertySourceBootstrapConfiguration.java : 109] Located property source: [BootstrapPropertySource {name='bootstrapProperties-bwie-alipay-dev.yml,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-bwie-alipay.yml,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-bwie-alipay,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-application-dev.yml,DEFAULT_GROUP'}] +2024-04-28 21:07:49,608 INFO [main] com.bwie.alipay.AlipayApplication [SpringApplication.java : 639] The following profiles are active: dev +2024-04-28 21:07:49,652 WARN [main] o.s.b.w.s.c.AnnotationConfigServletWebServerApplicationContext [AbstractApplicationContext.java : 591] Exception encountered during context initialization - cancelling refresh attempt: org.springframework.beans.factory.BeanDefinitionStoreException: Failed to parse configuration class [com.bwie.alipay.AlipayApplication]; nested exception is org.springframework.context.annotation.ConflictingBeanDefinitionException: Annotation-specified bean name 'Alipay' for bean class [com.bwie.alipay.utils.service.UnionWay] conflicts with existing, non-compatible bean definition of same name and class [com.bwie.alipay.utils.service.AlipayWay] +2024-04-28 21:07:49,673 ERROR [main] o.s.boot.SpringApplication [SpringApplication.java : 819] Application run failed +org.springframework.beans.factory.BeanDefinitionStoreException: Failed to parse configuration class [com.bwie.alipay.AlipayApplication]; nested exception is org.springframework.context.annotation.ConflictingBeanDefinitionException: Annotation-specified bean name 'Alipay' for bean class [com.bwie.alipay.utils.service.UnionWay] conflicts with existing, non-compatible bean definition of same name and class [com.bwie.alipay.utils.service.AlipayWay] + at org.springframework.context.annotation.ConfigurationClassParser.parse(ConfigurationClassParser.java:189) + at org.springframework.context.annotation.ConfigurationClassPostProcessor.processConfigBeanDefinitions(ConfigurationClassPostProcessor.java:331) + at org.springframework.context.annotation.ConfigurationClassPostProcessor.postProcessBeanDefinitionRegistry(ConfigurationClassPostProcessor.java:247) + at org.springframework.context.support.PostProcessorRegistrationDelegate.invokeBeanDefinitionRegistryPostProcessors(PostProcessorRegistrationDelegate.java:311) + at org.springframework.context.support.PostProcessorRegistrationDelegate.invokeBeanFactoryPostProcessors(PostProcessorRegistrationDelegate.java:112) + at org.springframework.context.support.AbstractApplicationContext.invokeBeanFactoryPostProcessors(AbstractApplicationContext.java:746) + at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:564) + at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:145) + at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:730) + at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:412) + at org.springframework.boot.SpringApplication.run(SpringApplication.java:302) + at org.springframework.boot.SpringApplication.run(SpringApplication.java:1301) + at org.springframework.boot.SpringApplication.run(SpringApplication.java:1290) + at com.bwie.alipay.AlipayApplication.main(AlipayApplication.java:14) +Caused by: org.springframework.context.annotation.ConflictingBeanDefinitionException: Annotation-specified bean name 'Alipay' for bean class [com.bwie.alipay.utils.service.UnionWay] conflicts with existing, non-compatible bean definition of same name and class [com.bwie.alipay.utils.service.AlipayWay] + at org.springframework.context.annotation.ClassPathBeanDefinitionScanner.checkCandidate(ClassPathBeanDefinitionScanner.java:349) + at org.springframework.context.annotation.ClassPathBeanDefinitionScanner.doScan(ClassPathBeanDefinitionScanner.java:287) + at org.springframework.context.annotation.ComponentScanAnnotationParser.parse(ComponentScanAnnotationParser.java:128) + at org.springframework.context.annotation.ConfigurationClassParser.doProcessConfigurationClass(ConfigurationClassParser.java:296) + at org.springframework.context.annotation.ConfigurationClassParser.processConfigurationClass(ConfigurationClassParser.java:250) + at org.springframework.context.annotation.ConfigurationClassParser.parse(ConfigurationClassParser.java:207) + at org.springframework.context.annotation.ConfigurationClassParser.parse(ConfigurationClassParser.java:175) + ... 13 common frames omitted +2024-04-28 21:07:49,675 WARN [Thread-5] c.a.nacos.common.notify.NotifyCenter [NotifyCenter.java : 136] [NotifyCenter] Start destroying Publisher +2024-04-28 21:07:49,675 WARN [Thread-1] c.a.n.c.http.HttpClientBeanHolder [HttpClientBeanHolder.java : 108] [HttpClientBeanHolder] Start destroying common HttpClient +2024-04-28 21:07:49,675 WARN [Thread-5] c.a.nacos.common.notify.NotifyCenter [NotifyCenter.java : 153] [NotifyCenter] Destruction of the end +2024-04-28 21:07:49,675 WARN [Thread-1] c.a.n.c.http.HttpClientBeanHolder [HttpClientBeanHolder.java : 114] [HttpClientBeanHolder] Destruction of the end +2024-04-28 21:08:06,234 INFO [background-preinit] o.h.validator.internal.util.Version [Version.java : 21] HV000001: Hibernate Validator 6.2.0.Final +2024-04-28 21:08:06,686 INFO [main] c.alibaba.nacos.common.remote.client [RpcClientFactory.java : 80] [RpcClientFactory] create a new rpc client of eba59e51-b0db-4fe6-b451-9f608de1405c_config-0 +2024-04-28 21:08:06,733 INFO [main] org.reflections.Reflections [Reflections.java : 232] Reflections took 24 ms to scan 1 urls, producing 3 keys and 6 values +2024-04-28 21:08:06,755 INFO [main] org.reflections.Reflections [Reflections.java : 232] Reflections took 12 ms to scan 1 urls, producing 4 keys and 9 values +2024-04-28 21:08:06,761 INFO [main] org.reflections.Reflections [Reflections.java : 232] Reflections took 4 ms to scan 1 urls, producing 3 keys and 10 values +2024-04-28 21:08:06,764 WARN [main] org.reflections.Reflections [Reflections.java : 179] given scan urls are empty. set urls in the configuration +2024-04-28 21:08:06,770 INFO [main] org.reflections.Reflections [Reflections.java : 232] Reflections took 5 ms to scan 1 urls, producing 1 keys and 5 values +2024-04-28 21:08:06,777 INFO [main] org.reflections.Reflections [Reflections.java : 232] Reflections took 5 ms to scan 1 urls, producing 1 keys and 7 values +2024-04-28 21:08:06,782 INFO [main] org.reflections.Reflections [Reflections.java : 232] Reflections took 3 ms to scan 1 urls, producing 2 keys and 8 values +2024-04-28 21:08:06,784 WARN [main] org.reflections.Reflections [Reflections.java : 179] given scan urls are empty. set urls in the configuration +2024-04-28 21:08:06,784 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [eba59e51-b0db-4fe6-b451-9f608de1405c_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} +2024-04-28 21:08:06,785 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [eba59e51-b0db-4fe6-b451-9f608de1405c_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$464/0x000001cd813a8b08 +2024-04-28 21:08:06,785 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [eba59e51-b0db-4fe6-b451-9f608de1405c_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$465/0x000001cd813a8d28 +2024-04-28 21:08:06,785 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [eba59e51-b0db-4fe6-b451-9f608de1405c_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 +2024-04-28 21:08:06,786 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [eba59e51-b0db-4fe6-b451-9f608de1405c_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 +2024-04-28 21:08:06,791 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [eba59e51-b0db-4fe6-b451-9f608de1405c_config-0] Try to connect to server on start up, server: {serverIp = '124.221.30.134', server main port = 8848} +2024-04-28 21:08:07,589 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [eba59e51-b0db-4fe6-b451-9f608de1405c_config-0] Success to connect to server [124.221.30.134:8848] on start up, connectionId = 1714309686648_114.95.173.5_60948 +2024-04-28 21:08:07,590 INFO [com.alibaba.nacos.client.remote.worker] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [eba59e51-b0db-4fe6-b451-9f608de1405c_config-0] Notify connected event to listeners. +2024-04-28 21:08:07,591 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [eba59e51-b0db-4fe6-b451-9f608de1405c_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler +2024-04-28 21:08:07,593 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [eba59e51-b0db-4fe6-b451-9f608de1405c_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$479/0x000001cd814e22e8 +2024-04-28 21:08:07,677 WARN [main] c.a.c.n.c.NacosPropertySourceBuilder [NacosPropertySourceBuilder.java : 87] Ignore the empty nacos configuration and get it based on dataId[bwie-alipay] & group[DEFAULT_GROUP] +2024-04-28 21:08:07,688 WARN [main] c.a.c.n.c.NacosPropertySourceBuilder [NacosPropertySourceBuilder.java : 87] Ignore the empty nacos configuration and get it based on dataId[bwie-alipay.yml] & group[DEFAULT_GROUP] +2024-04-28 21:08:07,708 INFO [main] o.s.c.b.c.PropertySourceBootstrapConfiguration [PropertySourceBootstrapConfiguration.java : 109] Located property source: [BootstrapPropertySource {name='bootstrapProperties-bwie-alipay-dev.yml,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-bwie-alipay.yml,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-bwie-alipay,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-application-dev.yml,DEFAULT_GROUP'}] +2024-04-28 21:08:07,720 INFO [main] com.bwie.alipay.AlipayApplication [SpringApplication.java : 639] The following profiles are active: dev +2024-04-28 21:08:08,161 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java : 262] Multiple Spring Data modules found, entering strict repository configuration mode! +2024-04-28 21:08:08,163 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java : 132] Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2024-04-28 21:08:08,180 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java : 201] Finished Spring Data repository scanning in 6 ms. Found 0 Redis repository interfaces. +2024-04-28 21:08:08,416 INFO [main] o.s.cloud.context.scope.GenericScope [GenericScope.java : 283] BeanFactory id=273a9c70-dbbb-30c7-9499-33a879f109c3 +2024-04-28 21:08:08,678 INFO [main] o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [PostProcessorRegistrationDelegate.java : 376] Bean 'org.springframework.cloud.commons.config.CommonsConfigAutoConfiguration' of type [org.springframework.cloud.commons.config.CommonsConfigAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2024-04-28 21:08:08,681 INFO [main] o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [PostProcessorRegistrationDelegate.java : 376] Bean 'org.springframework.cloud.client.loadbalancer.LoadBalancerDefaultMappingsProviderAutoConfiguration' of type [org.springframework.cloud.client.loadbalancer.LoadBalancerDefaultMappingsProviderAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2024-04-28 21:08:08,681 INFO [main] o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [PostProcessorRegistrationDelegate.java : 376] Bean 'loadBalancerClientsDefaultsMappingsProvider' of type [org.springframework.cloud.client.loadbalancer.LoadBalancerDefaultMappingsProviderAutoConfiguration$$Lambda$643/0x000001cd816920e0] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2024-04-28 21:08:08,682 INFO [main] o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [PostProcessorRegistrationDelegate.java : 376] Bean 'defaultsBindHandlerAdvisor' of type [org.springframework.cloud.commons.config.DefaultsBindHandlerAdvisor] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2024-04-28 21:08:08,715 INFO [main] o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [PostProcessorRegistrationDelegate.java : 376] Bean 'spring.cloud.sentinel-com.alibaba.cloud.sentinel.SentinelProperties' of type [com.alibaba.cloud.sentinel.SentinelProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2024-04-28 21:08:08,728 INFO [main] o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [PostProcessorRegistrationDelegate.java : 376] Bean 'com.alibaba.cloud.sentinel.custom.SentinelAutoConfiguration' of type [com.alibaba.cloud.sentinel.custom.SentinelAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2024-04-28 21:08:08,958 INFO [main] o.s.b.w.e.tomcat.TomcatWebServer [TomcatWebServer.java : 108] Tomcat initialized with port(s): 9090 (http) +2024-04-28 21:08:08,968 INFO [main] o.a.coyote.http11.Http11NioProtocol [DirectJDKLog.java : 173] Initializing ProtocolHandler ["http-nio-9090"] +2024-04-28 21:08:08,969 INFO [main] o.a.catalina.core.StandardService [DirectJDKLog.java : 173] Starting service [Tomcat] +2024-04-28 21:08:08,969 INFO [main] o.a.catalina.core.StandardEngine [DirectJDKLog.java : 173] Starting Servlet engine: [Apache Tomcat/9.0.56] +2024-04-28 21:08:09,070 INFO [main] o.a.c.c.C.[Tomcat].[localhost].[/] [DirectJDKLog.java : 173] Initializing Spring embedded WebApplicationContext +2024-04-28 21:08:09,071 INFO [main] o.s.b.w.s.c.ServletWebServerApplicationContext [ServletWebServerApplicationContext.java : 290] Root WebApplicationContext: initialization completed in 1340 ms +2024-04-28 21:08:09,318 WARN [main] c.b.m.core.metadata.TableInfoHelper [TableInfoHelper.java : 375] Can not find table primary key in Class: "com.bwie.common.domain.BuyOrder". +2024-04-28 21:08:09,321 WARN [main] c.b.m.c.injector.DefaultSqlInjector [DefaultSqlInjector.java : 52] class com.bwie.common.domain.BuyOrder ,Not found @TableId annotation, Cannot use Mybatis-Plus 'xxById' Method. +2024-04-28 21:08:09,351 WARN [main] c.b.m.core.metadata.TableInfoHelper [TableInfoHelper.java : 375] Can not find table primary key in Class: "com.bwie.common.domain.PaymentEntity". +2024-04-28 21:08:09,352 WARN [main] c.b.m.c.injector.DefaultSqlInjector [DefaultSqlInjector.java : 52] class com.bwie.common.domain.PaymentEntity ,Not found @TableId annotation, Cannot use Mybatis-Plus 'xxById' Method. +2024-04-28 21:08:09,616 INFO [main] c.a.c.s.SentinelWebAutoConfiguration [SentinelWebAutoConfiguration.java : 80] [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. +2024-04-28 21:08:10,729 WARN [main] o.s.c.l.c.LoadBalancerCacheAutoConfiguration$LoadBalancerCaffeineWarnLogger [LoadBalancerCacheAutoConfiguration.java : 82] Spring Cloud LoadBalancer is currently working with the default cache. You can switch to using Caffeine cache, by adding it and org.springframework.cache.caffeine.CaffeineCacheManager to the classpath. +2024-04-28 21:08:10,839 INFO [main] c.alibaba.nacos.common.remote.client [RpcClientFactory.java : 80] [RpcClientFactory] create a new rpc client of 895124bf-a5c9-4fed-8727-d50a30d77009 +2024-04-28 21:08:10,839 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [895124bf-a5c9-4fed-8727-d50a30d77009] RpcClient init label, labels = {module=naming, source=sdk} +2024-04-28 21:08:10,841 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [895124bf-a5c9-4fed-8727-d50a30d77009] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager +2024-04-28 21:08:10,841 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [895124bf-a5c9-4fed-8727-d50a30d77009] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService +2024-04-28 21:08:10,842 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [895124bf-a5c9-4fed-8727-d50a30d77009] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler +2024-04-28 21:08:10,842 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [895124bf-a5c9-4fed-8727-d50a30d77009] Try to connect to server on start up, server: {serverIp = '124.221.30.134', server main port = 8848} +2024-04-28 21:08:10,989 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [895124bf-a5c9-4fed-8727-d50a30d77009] Success to connect to server [124.221.30.134:8848] on start up, connectionId = 1714309690122_114.95.172.249_60951 +2024-04-28 21:08:10,989 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [895124bf-a5c9-4fed-8727-d50a30d77009] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler +2024-04-28 21:08:10,989 INFO [com.alibaba.nacos.client.remote.worker] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [895124bf-a5c9-4fed-8727-d50a30d77009] Notify connected event to listeners. +2024-04-28 21:08:10,990 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [895124bf-a5c9-4fed-8727-d50a30d77009] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$479/0x000001cd814e22e8 +2024-04-28 21:08:11,022 INFO [main] o.a.coyote.http11.Http11NioProtocol [DirectJDKLog.java : 173] Starting ProtocolHandler ["http-nio-9090"] +2024-04-28 21:08:11,039 INFO [main] o.s.b.w.e.tomcat.TomcatWebServer [TomcatWebServer.java : 220] Tomcat started on port(s): 9090 (http) with context path '' +2024-04-28 21:08:11,055 INFO [main] c.a.c.n.r.NacosServiceRegistry [NacosServiceRegistry.java : 75] nacos registry, DEFAULT_GROUP bwie-alipay 192.168.88.1:9090 register finished +2024-04-28 21:08:11,212 INFO [main] com.bwie.alipay.AlipayApplication [StartupInfoLogger.java : 61] Started AlipayApplication in 5.423 seconds (JVM running for 6.054) +2024-04-28 21:08:11,608 INFO [nacos-grpc-client-executor-5] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [895124bf-a5c9-4fed-8727-d50a30d77009] Receive server push request, request = NotifySubscriberRequest, requestId = 251 +2024-04-28 21:08:11,612 INFO [nacos-grpc-client-executor-5] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [895124bf-a5c9-4fed-8727-d50a30d77009] Ack server push request, request = NotifySubscriberRequest, requestId = 251 +2024-04-28 21:52:23,414 WARN [Thread-5] c.a.nacos.common.notify.NotifyCenter [NotifyCenter.java : 136] [NotifyCenter] Start destroying Publisher +2024-04-28 21:52:23,414 WARN [Thread-1] c.a.n.c.http.HttpClientBeanHolder [HttpClientBeanHolder.java : 108] [HttpClientBeanHolder] Start destroying common HttpClient +2024-04-28 21:52:23,415 WARN [Thread-5] c.a.nacos.common.notify.NotifyCenter [NotifyCenter.java : 153] [NotifyCenter] Destruction of the end +2024-04-28 21:52:23,415 WARN [Thread-1] c.a.n.c.http.HttpClientBeanHolder [HttpClientBeanHolder.java : 114] [HttpClientBeanHolder] Destruction of the end +2024-04-28 21:52:23,482 INFO [SpringApplicationShutdownHook] c.a.c.n.r.NacosServiceRegistry [NacosServiceRegistry.java : 90] De-registering from Nacos Server now... +2024-04-28 21:52:23,490 INFO [SpringApplicationShutdownHook] c.a.c.n.r.NacosServiceRegistry [NacosServiceRegistry.java : 110] De-registration finished. +2024-04-28 21:52:23,824 INFO [SpringApplicationShutdownHook] c.alibaba.nacos.common.remote.client [RpcClient.java : 454] Shutdown rpc client, set status to shutdown +2024-04-28 21:52:23,825 INFO [SpringApplicationShutdownHook] c.alibaba.nacos.common.remote.client [RpcClient.java : 456] Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@13af6869[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] +2024-04-28 21:52:23,825 INFO [SpringApplicationShutdownHook] c.alibaba.nacos.common.remote.client [RpcClient.java : 591] Close current connection 1714309690122_114.95.172.249_60951 +2024-04-28 21:52:23,826 INFO [SpringApplicationShutdownHook] c.a.n.c.r.client.grpc.GrpcClient [GrpcClient.java : 85] Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@43ea1031[Running, pool size = 3, active threads = 0, queued tasks = 0, completed tasks = 538] +2024-04-28 21:52:23,827 WARN [SpringApplicationShutdownHook] o.s.b.f.s.DisposableBeanAdapter [DisposableBeanAdapter.java : 328] Custom destroy method 'close' on bean with name 'nacosServiceRegistry' threw an exception: java.lang.NullPointerException: Cannot invoke "com.alibaba.nacos.api.naming.NamingService.shutDown()" because "this.namingService" is null +2024-04-28 21:52:23,828 INFO [SpringApplicationShutdownHook] c.alibaba.druid.pool.DruidDataSource [DruidDataSource.java : 2071] {dataSource-0} closing ... diff --git a/bwie-modules/bwie-alipay/applogs/xxl-job/xxl-job-executor-sample-springboot.log b/bwie-modules/bwie-alipay/applogs/xxl-job/xxl-job-executor-sample-springboot.log new file mode 100644 index 0000000..3d7a7e0 --- /dev/null +++ b/bwie-modules/bwie-alipay/applogs/xxl-job/xxl-job-executor-sample-springboot.log @@ -0,0 +1,477 @@ +2024-04-28 21:45:08,554 INFO [main] o.s.b.t.c.SpringBootTestContextBootstrapper [AbstractTestContextBootstrapper.java : 305] Neither @ContextConfiguration nor @ContextHierarchy found for test class [com.bwie.alipay.demo.controller.TestObserver], using SpringBootContextLoader +2024-04-28 21:45:08,560 INFO [main] o.s.t.c.s.AbstractContextLoader [AbstractContextLoader.java : 264] Could not detect default resource locations for test class [com.bwie.alipay.demo.controller.TestObserver]: no resource found for suffixes {-context.xml, Context.groovy}. +2024-04-28 21:45:08,561 INFO [main] o.s.t.c.s.AnnotationConfigContextLoaderUtils [AnnotationConfigContextLoaderUtils.java : 83] Could not detect default configuration classes for test class [com.bwie.alipay.demo.controller.TestObserver]: TestObserver does not declare any static, non-private, non-final, nested classes annotated with @Configuration. +2024-04-28 21:45:08,658 INFO [main] o.s.b.t.c.SpringBootTestContextBootstrapper [SpringBootTestContextBootstrapper.java : 239] Found @SpringBootConfiguration com.bwie.alipay.AlipayApplication for test class com.bwie.alipay.demo.controller.TestObserver +2024-04-28 21:45:08,736 INFO [main] o.s.b.t.c.SpringBootTestContextBootstrapper [AbstractTestContextBootstrapper.java : 245] Loaded default TestExecutionListener class names from location [META-INF/spring.factories]: [org.springframework.boot.test.autoconfigure.restdocs.RestDocsTestExecutionListener, org.springframework.boot.test.autoconfigure.web.client.MockRestServiceServerResetTestExecutionListener, org.springframework.boot.test.autoconfigure.web.servlet.MockMvcPrintOnlyOnFailureTestExecutionListener, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverTestExecutionListener, org.springframework.boot.test.autoconfigure.webservices.client.MockWebServiceServerTestExecutionListener, org.springframework.test.context.web.ServletTestExecutionListener, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener, org.springframework.test.context.event.ApplicationEventsTestExecutionListener, org.springframework.test.context.support.DependencyInjectionTestExecutionListener, org.springframework.test.context.support.DirtiesContextTestExecutionListener, org.springframework.test.context.transaction.TransactionalTestExecutionListener, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener, org.springframework.test.context.event.EventPublishingTestExecutionListener, org.springframework.boot.test.mock.mockito.MockitoTestExecutionListener, org.springframework.boot.test.mock.mockito.ResetMocksTestExecutionListener] +2024-04-28 21:45:08,748 INFO [main] o.s.b.t.c.SpringBootTestContextBootstrapper [AbstractTestContextBootstrapper.java : 174] Using TestExecutionListeners: [org.springframework.test.context.web.ServletTestExecutionListener@3382f8ae, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener@60641ec8, org.springframework.test.context.event.ApplicationEventsTestExecutionListener@75f65e45, org.springframework.boot.test.mock.mockito.MockitoTestExecutionListener@6eeade6c, org.springframework.boot.test.autoconfigure.SpringBootDependencyInjectionTestExecutionListener@4a891c97, org.springframework.test.context.support.DirtiesContextTestExecutionListener@a5bd950, org.springframework.test.context.transaction.TransactionalTestExecutionListener@4d18aa28, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener@75390459, org.springframework.test.context.event.EventPublishingTestExecutionListener@7756c3cd, org.springframework.boot.test.autoconfigure.restdocs.RestDocsTestExecutionListener@2313052e, org.springframework.boot.test.autoconfigure.web.client.MockRestServiceServerResetTestExecutionListener@2bd2b28e, org.springframework.boot.test.autoconfigure.web.servlet.MockMvcPrintOnlyOnFailureTestExecutionListener@16746061, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverTestExecutionListener@57fd91c9, org.springframework.boot.test.autoconfigure.webservices.client.MockWebServiceServerTestExecutionListener@6cfcd46d, org.springframework.boot.test.mock.mockito.ResetMocksTestExecutionListener@52045dbe] +2024-04-28 21:45:09,266 INFO [background-preinit] o.h.validator.internal.util.Version [Version.java : 21] HV000001: Hibernate Validator 6.2.0.Final +2024-04-28 21:45:09,815 INFO [main] c.alibaba.nacos.common.remote.client [RpcClientFactory.java : 80] [RpcClientFactory] create a new rpc client of c307aebc-fd72-46d8-9d4c-b726f3eefef7_config-0 +2024-04-28 21:45:09,868 INFO [main] org.reflections.Reflections [Reflections.java : 232] Reflections took 28 ms to scan 1 urls, producing 3 keys and 6 values +2024-04-28 21:45:09,903 INFO [main] org.reflections.Reflections [Reflections.java : 232] Reflections took 7 ms to scan 1 urls, producing 4 keys and 9 values +2024-04-28 21:45:09,912 INFO [main] org.reflections.Reflections [Reflections.java : 232] Reflections took 6 ms to scan 1 urls, producing 3 keys and 10 values +2024-04-28 21:45:09,916 WARN [main] org.reflections.Reflections [Reflections.java : 179] given scan urls are empty. set urls in the configuration +2024-04-28 21:45:09,920 INFO [main] org.reflections.Reflections [Reflections.java : 232] Reflections took 3 ms to scan 1 urls, producing 1 keys and 5 values +2024-04-28 21:45:09,927 INFO [main] org.reflections.Reflections [Reflections.java : 232] Reflections took 5 ms to scan 1 urls, producing 1 keys and 7 values +2024-04-28 21:45:09,932 INFO [main] org.reflections.Reflections [Reflections.java : 232] Reflections took 3 ms to scan 1 urls, producing 2 keys and 8 values +2024-04-28 21:45:09,934 WARN [main] org.reflections.Reflections [Reflections.java : 179] given scan urls are empty. set urls in the configuration +2024-04-28 21:45:09,935 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [c307aebc-fd72-46d8-9d4c-b726f3eefef7_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} +2024-04-28 21:45:09,936 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [c307aebc-fd72-46d8-9d4c-b726f3eefef7_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$709/0x0000018b6139acc8 +2024-04-28 21:45:09,936 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [c307aebc-fd72-46d8-9d4c-b726f3eefef7_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$710/0x0000018b6139aee8 +2024-04-28 21:45:09,937 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [c307aebc-fd72-46d8-9d4c-b726f3eefef7_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 +2024-04-28 21:45:09,937 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [c307aebc-fd72-46d8-9d4c-b726f3eefef7_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 +2024-04-28 21:45:09,946 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [c307aebc-fd72-46d8-9d4c-b726f3eefef7_config-0] Try to connect to server on start up, server: {serverIp = '124.221.30.134', server main port = 8848} +2024-04-28 21:45:10,787 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [c307aebc-fd72-46d8-9d4c-b726f3eefef7_config-0] Success to connect to server [124.221.30.134:8848] on start up, connectionId = 1714311909844_114.95.173.5_57172 +2024-04-28 21:45:10,789 INFO [com.alibaba.nacos.client.remote.worker] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [c307aebc-fd72-46d8-9d4c-b726f3eefef7_config-0] Notify connected event to listeners. +2024-04-28 21:45:10,789 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [c307aebc-fd72-46d8-9d4c-b726f3eefef7_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler +2024-04-28 21:45:10,790 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [c307aebc-fd72-46d8-9d4c-b726f3eefef7_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$725/0x0000018b61523d48 +2024-04-28 21:45:10,864 WARN [main] c.a.c.n.c.NacosPropertySourceBuilder [NacosPropertySourceBuilder.java : 87] Ignore the empty nacos configuration and get it based on dataId[bwie-alipay] & group[DEFAULT_GROUP] +2024-04-28 21:45:10,874 WARN [main] c.a.c.n.c.NacosPropertySourceBuilder [NacosPropertySourceBuilder.java : 87] Ignore the empty nacos configuration and get it based on dataId[bwie-alipay.yml] & group[DEFAULT_GROUP] +2024-04-28 21:45:10,891 INFO [main] o.s.c.b.c.PropertySourceBootstrapConfiguration [PropertySourceBootstrapConfiguration.java : 109] Located property source: [BootstrapPropertySource {name='bootstrapProperties-bwie-alipay-dev.yml,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-bwie-alipay.yml,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-bwie-alipay,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-application-dev.yml,DEFAULT_GROUP'}] +2024-04-28 21:45:10,911 INFO [main] c.b.a.demo.controller.TestObserver [SpringApplication.java : 639] The following profiles are active: dev +2024-04-28 21:45:11,440 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java : 262] Multiple Spring Data modules found, entering strict repository configuration mode! +2024-04-28 21:45:11,442 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java : 132] Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2024-04-28 21:45:11,463 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java : 201] Finished Spring Data repository scanning in 7 ms. Found 0 Redis repository interfaces. +2024-04-28 21:45:11,671 INFO [main] o.s.cloud.context.scope.GenericScope [GenericScope.java : 283] BeanFactory id=607af674-47b5-30df-82c0-e5f0e04bbd9f +2024-04-28 21:45:12,055 INFO [main] o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [PostProcessorRegistrationDelegate.java : 376] Bean 'org.springframework.cloud.commons.config.CommonsConfigAutoConfiguration' of type [org.springframework.cloud.commons.config.CommonsConfigAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2024-04-28 21:45:12,059 INFO [main] o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [PostProcessorRegistrationDelegate.java : 376] Bean 'org.springframework.cloud.client.loadbalancer.LoadBalancerDefaultMappingsProviderAutoConfiguration' of type [org.springframework.cloud.client.loadbalancer.LoadBalancerDefaultMappingsProviderAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2024-04-28 21:45:12,061 INFO [main] o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [PostProcessorRegistrationDelegate.java : 376] Bean 'loadBalancerClientsDefaultsMappingsProvider' of type [org.springframework.cloud.client.loadbalancer.LoadBalancerDefaultMappingsProviderAutoConfiguration$$Lambda$882/0x0000018b616d38b8] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2024-04-28 21:45:12,063 INFO [main] o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [PostProcessorRegistrationDelegate.java : 376] Bean 'defaultsBindHandlerAdvisor' of type [org.springframework.cloud.commons.config.DefaultsBindHandlerAdvisor] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2024-04-28 21:45:12,091 INFO [main] o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [PostProcessorRegistrationDelegate.java : 376] Bean 'spring.cloud.sentinel-com.alibaba.cloud.sentinel.SentinelProperties' of type [com.alibaba.cloud.sentinel.SentinelProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2024-04-28 21:45:12,094 INFO [main] o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [PostProcessorRegistrationDelegate.java : 376] Bean 'com.alibaba.cloud.sentinel.custom.SentinelAutoConfiguration' of type [com.alibaba.cloud.sentinel.custom.SentinelAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2024-04-28 21:45:12,540 WARN [main] c.b.m.core.metadata.TableInfoHelper [TableInfoHelper.java : 375] Can not find table primary key in Class: "com.bwie.common.domain.BuyOrder". +2024-04-28 21:45:12,547 WARN [main] c.b.m.c.injector.DefaultSqlInjector [DefaultSqlInjector.java : 52] class com.bwie.common.domain.BuyOrder ,Not found @TableId annotation, Cannot use Mybatis-Plus 'xxById' Method. +2024-04-28 21:45:12,602 WARN [main] c.b.m.core.metadata.TableInfoHelper [TableInfoHelper.java : 375] Can not find table primary key in Class: "com.bwie.common.domain.PaymentEntity". +2024-04-28 21:45:12,603 WARN [main] c.b.m.c.injector.DefaultSqlInjector [DefaultSqlInjector.java : 52] class com.bwie.common.domain.PaymentEntity ,Not found @TableId annotation, Cannot use Mybatis-Plus 'xxById' Method. +2024-04-28 21:45:13,914 INFO [main] c.a.c.s.SentinelWebAutoConfiguration [SentinelWebAutoConfiguration.java : 80] [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. +2024-04-28 21:45:15,892 WARN [main] o.s.c.l.c.LoadBalancerCacheAutoConfiguration$LoadBalancerCaffeineWarnLogger [LoadBalancerCacheAutoConfiguration.java : 82] Spring Cloud LoadBalancer is currently working with the default cache. You can switch to using Caffeine cache, by adding it and org.springframework.cache.caffeine.CaffeineCacheManager to the classpath. +2024-04-28 21:45:15,971 INFO [main] c.alibaba.nacos.common.remote.client [RpcClientFactory.java : 80] [RpcClientFactory] create a new rpc client of 7fd82d10-ee91-496a-9c29-87756451d453 +2024-04-28 21:45:15,971 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [7fd82d10-ee91-496a-9c29-87756451d453] RpcClient init label, labels = {module=naming, source=sdk} +2024-04-28 21:45:15,973 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [7fd82d10-ee91-496a-9c29-87756451d453] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager +2024-04-28 21:45:15,974 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [7fd82d10-ee91-496a-9c29-87756451d453] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService +2024-04-28 21:45:15,974 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [7fd82d10-ee91-496a-9c29-87756451d453] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler +2024-04-28 21:45:15,975 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [7fd82d10-ee91-496a-9c29-87756451d453] Try to connect to server on start up, server: {serverIp = '124.221.30.134', server main port = 8848} +2024-04-28 21:45:16,113 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [7fd82d10-ee91-496a-9c29-87756451d453] Success to connect to server [124.221.30.134:8848] on start up, connectionId = 1714311915233_114.95.173.5_57175 +2024-04-28 21:45:16,114 INFO [com.alibaba.nacos.client.remote.worker] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [7fd82d10-ee91-496a-9c29-87756451d453] Notify connected event to listeners. +2024-04-28 21:45:16,114 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [7fd82d10-ee91-496a-9c29-87756451d453] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler +2024-04-28 21:45:16,115 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [7fd82d10-ee91-496a-9c29-87756451d453] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$725/0x0000018b61523d48 +2024-04-28 21:45:16,159 INFO [main] c.b.a.demo.controller.TestObserver [StartupInfoLogger.java : 61] Started TestObserver in 7.365 seconds (JVM running for 8.403) +2024-04-28 21:45:16,542 WARN [Thread-1] c.a.n.c.http.HttpClientBeanHolder [HttpClientBeanHolder.java : 108] [HttpClientBeanHolder] Start destroying common HttpClient +2024-04-28 21:45:16,543 WARN [Thread-5] c.a.nacos.common.notify.NotifyCenter [NotifyCenter.java : 136] [NotifyCenter] Start destroying Publisher +2024-04-28 21:45:16,543 WARN [Thread-1] c.a.n.c.http.HttpClientBeanHolder [HttpClientBeanHolder.java : 114] [HttpClientBeanHolder] Destruction of the end +2024-04-28 21:45:16,543 WARN [Thread-5] c.a.nacos.common.notify.NotifyCenter [NotifyCenter.java : 153] [NotifyCenter] Destruction of the end +2024-04-28 21:45:16,652 INFO [nacos-grpc-client-executor-6] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [7fd82d10-ee91-496a-9c29-87756451d453] Receive server push request, request = NotifySubscriberRequest, requestId = 256 +2024-04-28 21:45:16,653 INFO [nacos-grpc-client-executor-6] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [7fd82d10-ee91-496a-9c29-87756451d453] Ack server push request, request = NotifySubscriberRequest, requestId = 256 +2024-04-28 21:45:17,132 INFO [SpringApplicationShutdownHook] c.alibaba.nacos.common.remote.client [RpcClient.java : 454] Shutdown rpc client, set status to shutdown +2024-04-28 21:45:17,133 INFO [SpringApplicationShutdownHook] c.alibaba.nacos.common.remote.client [RpcClient.java : 456] Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@1b17eb5a[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] +2024-04-28 21:45:17,133 INFO [SpringApplicationShutdownHook] c.alibaba.nacos.common.remote.client [RpcClient.java : 591] Close current connection 1714311915233_114.95.173.5_57175 +2024-04-28 21:45:17,142 INFO [SpringApplicationShutdownHook] c.a.n.c.r.client.grpc.GrpcClient [GrpcClient.java : 85] Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@46419afc[Running, pool size = 7, active threads = 0, queued tasks = 0, completed tasks = 7] +2024-04-28 21:45:17,144 INFO [nacos-grpc-client-executor-7] c.a.n.c.r.client.grpc.GrpcClient [LoggerUtils.java : 60] [1714311915233_114.95.173.5_57175]Ignore complete event,isRunning:false,isAbandon=false +2024-04-28 21:45:17,146 INFO [SpringApplicationShutdownHook] c.alibaba.druid.pool.DruidDataSource [DruidDataSource.java : 2071] {dataSource-0} closing ... +2024-04-28 21:54:12,476 INFO [main] o.s.b.t.c.SpringBootTestContextBootstrapper [AbstractTestContextBootstrapper.java : 305] Neither @ContextConfiguration nor @ContextHierarchy found for test class [com.bwie.alipay.demo.controller.TestObserver], using SpringBootContextLoader +2024-04-28 21:54:12,480 INFO [main] o.s.t.c.s.AbstractContextLoader [AbstractContextLoader.java : 264] Could not detect default resource locations for test class [com.bwie.alipay.demo.controller.TestObserver]: no resource found for suffixes {-context.xml, Context.groovy}. +2024-04-28 21:54:12,480 INFO [main] o.s.t.c.s.AnnotationConfigContextLoaderUtils [AnnotationConfigContextLoaderUtils.java : 83] Could not detect default configuration classes for test class [com.bwie.alipay.demo.controller.TestObserver]: TestObserver does not declare any static, non-private, non-final, nested classes annotated with @Configuration. +2024-04-28 21:54:12,567 INFO [main] o.s.b.t.c.SpringBootTestContextBootstrapper [SpringBootTestContextBootstrapper.java : 239] Found @SpringBootConfiguration com.bwie.alipay.AlipayApplication for test class com.bwie.alipay.demo.controller.TestObserver +2024-04-28 21:54:12,641 INFO [main] o.s.b.t.c.SpringBootTestContextBootstrapper [AbstractTestContextBootstrapper.java : 245] Loaded default TestExecutionListener class names from location [META-INF/spring.factories]: [org.springframework.boot.test.autoconfigure.restdocs.RestDocsTestExecutionListener, org.springframework.boot.test.autoconfigure.web.client.MockRestServiceServerResetTestExecutionListener, org.springframework.boot.test.autoconfigure.web.servlet.MockMvcPrintOnlyOnFailureTestExecutionListener, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverTestExecutionListener, org.springframework.boot.test.autoconfigure.webservices.client.MockWebServiceServerTestExecutionListener, org.springframework.test.context.web.ServletTestExecutionListener, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener, org.springframework.test.context.event.ApplicationEventsTestExecutionListener, org.springframework.test.context.support.DependencyInjectionTestExecutionListener, org.springframework.test.context.support.DirtiesContextTestExecutionListener, org.springframework.test.context.transaction.TransactionalTestExecutionListener, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener, org.springframework.test.context.event.EventPublishingTestExecutionListener, org.springframework.boot.test.mock.mockito.MockitoTestExecutionListener, org.springframework.boot.test.mock.mockito.ResetMocksTestExecutionListener] +2024-04-28 21:54:12,651 INFO [main] o.s.b.t.c.SpringBootTestContextBootstrapper [AbstractTestContextBootstrapper.java : 174] Using TestExecutionListeners: [org.springframework.test.context.web.ServletTestExecutionListener@6da00fb9, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener@a202ccb, org.springframework.test.context.event.ApplicationEventsTestExecutionListener@20f12539, org.springframework.boot.test.mock.mockito.MockitoTestExecutionListener@75b25825, org.springframework.boot.test.autoconfigure.SpringBootDependencyInjectionTestExecutionListener@18025ced, org.springframework.test.context.support.DirtiesContextTestExecutionListener@13cf7d52, org.springframework.test.context.transaction.TransactionalTestExecutionListener@3a3e4aff, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener@5d2a4eed, org.springframework.test.context.event.EventPublishingTestExecutionListener@57459491, org.springframework.boot.test.autoconfigure.restdocs.RestDocsTestExecutionListener@3f0846c6, org.springframework.boot.test.autoconfigure.web.client.MockRestServiceServerResetTestExecutionListener@77a98a6a, org.springframework.boot.test.autoconfigure.web.servlet.MockMvcPrintOnlyOnFailureTestExecutionListener@78fbff54, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverTestExecutionListener@3e10dc6, org.springframework.boot.test.autoconfigure.webservices.client.MockWebServiceServerTestExecutionListener@7e22550a, org.springframework.boot.test.mock.mockito.ResetMocksTestExecutionListener@45e37a7e] +2024-04-28 21:54:13,104 INFO [background-preinit] o.h.validator.internal.util.Version [Version.java : 21] HV000001: Hibernate Validator 6.2.0.Final +2024-04-28 21:54:13,636 INFO [main] c.alibaba.nacos.common.remote.client [RpcClientFactory.java : 80] [RpcClientFactory] create a new rpc client of 0a1be92d-e8cb-45c8-9f47-22a26aa79c24_config-0 +2024-04-28 21:54:13,678 INFO [main] org.reflections.Reflections [Reflections.java : 232] Reflections took 20 ms to scan 1 urls, producing 3 keys and 6 values +2024-04-28 21:54:13,712 INFO [main] org.reflections.Reflections [Reflections.java : 232] Reflections took 15 ms to scan 1 urls, producing 4 keys and 9 values +2024-04-28 21:54:13,719 INFO [main] org.reflections.Reflections [Reflections.java : 232] Reflections took 5 ms to scan 1 urls, producing 3 keys and 10 values +2024-04-28 21:54:13,722 WARN [main] org.reflections.Reflections [Reflections.java : 179] given scan urls are empty. set urls in the configuration +2024-04-28 21:54:13,729 INFO [main] org.reflections.Reflections [Reflections.java : 232] Reflections took 5 ms to scan 1 urls, producing 1 keys and 5 values +2024-04-28 21:54:13,736 INFO [main] org.reflections.Reflections [Reflections.java : 232] Reflections took 3 ms to scan 1 urls, producing 1 keys and 7 values +2024-04-28 21:54:13,742 INFO [main] org.reflections.Reflections [Reflections.java : 232] Reflections took 2 ms to scan 1 urls, producing 2 keys and 8 values +2024-04-28 21:54:13,745 WARN [main] org.reflections.Reflections [Reflections.java : 179] given scan urls are empty. set urls in the configuration +2024-04-28 21:54:13,746 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [0a1be92d-e8cb-45c8-9f47-22a26aa79c24_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} +2024-04-28 21:54:13,747 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [0a1be92d-e8cb-45c8-9f47-22a26aa79c24_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$714/0x000002372739d500 +2024-04-28 21:54:13,747 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [0a1be92d-e8cb-45c8-9f47-22a26aa79c24_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$715/0x000002372739d720 +2024-04-28 21:54:13,748 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [0a1be92d-e8cb-45c8-9f47-22a26aa79c24_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 +2024-04-28 21:54:13,748 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [0a1be92d-e8cb-45c8-9f47-22a26aa79c24_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 +2024-04-28 21:54:13,755 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [0a1be92d-e8cb-45c8-9f47-22a26aa79c24_config-0] Try to connect to server on start up, server: {serverIp = '124.221.30.134', server main port = 8848} +2024-04-28 21:54:14,544 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [0a1be92d-e8cb-45c8-9f47-22a26aa79c24_config-0] Success to connect to server [124.221.30.134:8848] on start up, connectionId = 1714312453603_114.95.173.5_53518 +2024-04-28 21:54:14,544 INFO [com.alibaba.nacos.client.remote.worker] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [0a1be92d-e8cb-45c8-9f47-22a26aa79c24_config-0] Notify connected event to listeners. +2024-04-28 21:54:14,544 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [0a1be92d-e8cb-45c8-9f47-22a26aa79c24_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler +2024-04-28 21:54:14,546 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [0a1be92d-e8cb-45c8-9f47-22a26aa79c24_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$729/0x00000237274e48d0 +2024-04-28 21:54:14,607 WARN [main] c.a.c.n.c.NacosPropertySourceBuilder [NacosPropertySourceBuilder.java : 87] Ignore the empty nacos configuration and get it based on dataId[bwie-alipay] & group[DEFAULT_GROUP] +2024-04-28 21:54:14,622 WARN [main] c.a.c.n.c.NacosPropertySourceBuilder [NacosPropertySourceBuilder.java : 87] Ignore the empty nacos configuration and get it based on dataId[bwie-alipay.yml] & group[DEFAULT_GROUP] +2024-04-28 21:54:14,641 INFO [main] o.s.c.b.c.PropertySourceBootstrapConfiguration [PropertySourceBootstrapConfiguration.java : 109] Located property source: [BootstrapPropertySource {name='bootstrapProperties-bwie-alipay-dev.yml,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-bwie-alipay.yml,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-bwie-alipay,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-application-dev.yml,DEFAULT_GROUP'}] +2024-04-28 21:54:14,656 INFO [main] c.b.a.demo.controller.TestObserver [SpringApplication.java : 639] The following profiles are active: dev +2024-04-28 21:54:15,153 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java : 262] Multiple Spring Data modules found, entering strict repository configuration mode! +2024-04-28 21:54:15,157 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java : 132] Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2024-04-28 21:54:15,177 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java : 201] Finished Spring Data repository scanning in 8 ms. Found 0 Redis repository interfaces. +2024-04-28 21:54:15,424 INFO [main] o.s.cloud.context.scope.GenericScope [GenericScope.java : 283] BeanFactory id=607af674-47b5-30df-82c0-e5f0e04bbd9f +2024-04-28 21:54:15,757 INFO [main] o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [PostProcessorRegistrationDelegate.java : 376] Bean 'org.springframework.cloud.commons.config.CommonsConfigAutoConfiguration' of type [org.springframework.cloud.commons.config.CommonsConfigAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2024-04-28 21:54:15,759 INFO [main] o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [PostProcessorRegistrationDelegate.java : 376] Bean 'org.springframework.cloud.client.loadbalancer.LoadBalancerDefaultMappingsProviderAutoConfiguration' of type [org.springframework.cloud.client.loadbalancer.LoadBalancerDefaultMappingsProviderAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2024-04-28 21:54:15,761 INFO [main] o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [PostProcessorRegistrationDelegate.java : 376] Bean 'loadBalancerClientsDefaultsMappingsProvider' of type [org.springframework.cloud.client.loadbalancer.LoadBalancerDefaultMappingsProviderAutoConfiguration$$Lambda$886/0x00000237276a72f8] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2024-04-28 21:54:15,762 INFO [main] o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [PostProcessorRegistrationDelegate.java : 376] Bean 'defaultsBindHandlerAdvisor' of type [org.springframework.cloud.commons.config.DefaultsBindHandlerAdvisor] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2024-04-28 21:54:15,792 INFO [main] o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [PostProcessorRegistrationDelegate.java : 376] Bean 'spring.cloud.sentinel-com.alibaba.cloud.sentinel.SentinelProperties' of type [com.alibaba.cloud.sentinel.SentinelProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2024-04-28 21:54:15,795 INFO [main] o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [PostProcessorRegistrationDelegate.java : 376] Bean 'com.alibaba.cloud.sentinel.custom.SentinelAutoConfiguration' of type [com.alibaba.cloud.sentinel.custom.SentinelAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2024-04-28 21:54:16,281 WARN [main] c.b.m.core.metadata.TableInfoHelper [TableInfoHelper.java : 375] Can not find table primary key in Class: "com.bwie.common.domain.BuyOrder". +2024-04-28 21:54:16,290 WARN [main] c.b.m.c.injector.DefaultSqlInjector [DefaultSqlInjector.java : 52] class com.bwie.common.domain.BuyOrder ,Not found @TableId annotation, Cannot use Mybatis-Plus 'xxById' Method. +2024-04-28 21:54:16,327 WARN [main] c.b.m.core.metadata.TableInfoHelper [TableInfoHelper.java : 375] Can not find table primary key in Class: "com.bwie.common.domain.PaymentEntity". +2024-04-28 21:54:16,327 WARN [main] c.b.m.c.injector.DefaultSqlInjector [DefaultSqlInjector.java : 52] class com.bwie.common.domain.PaymentEntity ,Not found @TableId annotation, Cannot use Mybatis-Plus 'xxById' Method. +2024-04-28 21:54:17,297 INFO [main] c.a.c.s.SentinelWebAutoConfiguration [SentinelWebAutoConfiguration.java : 80] [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. +2024-04-28 21:54:18,938 WARN [main] o.s.c.l.c.LoadBalancerCacheAutoConfiguration$LoadBalancerCaffeineWarnLogger [LoadBalancerCacheAutoConfiguration.java : 82] Spring Cloud LoadBalancer is currently working with the default cache. You can switch to using Caffeine cache, by adding it and org.springframework.cache.caffeine.CaffeineCacheManager to the classpath. +2024-04-28 21:54:19,066 INFO [main] c.alibaba.nacos.common.remote.client [RpcClientFactory.java : 80] [RpcClientFactory] create a new rpc client of f8b92c1e-266f-4006-9209-65a40ce85dc8 +2024-04-28 21:54:19,066 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [f8b92c1e-266f-4006-9209-65a40ce85dc8] RpcClient init label, labels = {module=naming, source=sdk} +2024-04-28 21:54:19,068 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [f8b92c1e-266f-4006-9209-65a40ce85dc8] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager +2024-04-28 21:54:19,068 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [f8b92c1e-266f-4006-9209-65a40ce85dc8] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService +2024-04-28 21:54:19,069 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [f8b92c1e-266f-4006-9209-65a40ce85dc8] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler +2024-04-28 21:54:19,069 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [f8b92c1e-266f-4006-9209-65a40ce85dc8] Try to connect to server on start up, server: {serverIp = '124.221.30.134', server main port = 8848} +2024-04-28 21:54:19,227 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [f8b92c1e-266f-4006-9209-65a40ce85dc8] Success to connect to server [124.221.30.134:8848] on start up, connectionId = 1714312458335_114.95.172.249_53523 +2024-04-28 21:54:19,228 INFO [com.alibaba.nacos.client.remote.worker] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [f8b92c1e-266f-4006-9209-65a40ce85dc8] Notify connected event to listeners. +2024-04-28 21:54:19,228 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [f8b92c1e-266f-4006-9209-65a40ce85dc8] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler +2024-04-28 21:54:19,228 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [f8b92c1e-266f-4006-9209-65a40ce85dc8] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$729/0x00000237274e48d0 +2024-04-28 21:54:19,269 INFO [main] c.b.a.demo.controller.TestObserver [StartupInfoLogger.java : 61] Started TestObserver in 6.585 seconds (JVM running for 7.477) +2024-04-28 21:54:19,566 WARN [Thread-5] c.a.nacos.common.notify.NotifyCenter [NotifyCenter.java : 136] [NotifyCenter] Start destroying Publisher +2024-04-28 21:54:19,566 WARN [Thread-1] c.a.n.c.http.HttpClientBeanHolder [HttpClientBeanHolder.java : 108] [HttpClientBeanHolder] Start destroying common HttpClient +2024-04-28 21:54:19,566 WARN [Thread-5] c.a.nacos.common.notify.NotifyCenter [NotifyCenter.java : 153] [NotifyCenter] Destruction of the end +2024-04-28 21:54:19,567 WARN [Thread-1] c.a.n.c.http.HttpClientBeanHolder [HttpClientBeanHolder.java : 114] [HttpClientBeanHolder] Destruction of the end +2024-04-28 21:54:19,780 INFO [nacos-grpc-client-executor-8] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [f8b92c1e-266f-4006-9209-65a40ce85dc8] Receive server push request, request = NotifySubscriberRequest, requestId = 258 +2024-04-28 21:54:19,781 INFO [nacos-grpc-client-executor-8] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [f8b92c1e-266f-4006-9209-65a40ce85dc8] Ack server push request, request = NotifySubscriberRequest, requestId = 258 +2024-04-28 21:54:20,247 INFO [SpringApplicationShutdownHook] c.alibaba.nacos.common.remote.client [RpcClient.java : 454] Shutdown rpc client, set status to shutdown +2024-04-28 21:54:20,248 INFO [SpringApplicationShutdownHook] c.alibaba.nacos.common.remote.client [RpcClient.java : 456] Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@512a5e57[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] +2024-04-28 21:54:20,248 INFO [SpringApplicationShutdownHook] c.alibaba.nacos.common.remote.client [RpcClient.java : 591] Close current connection 1714312458335_114.95.172.249_53523 +2024-04-28 21:54:20,250 INFO [SpringApplicationShutdownHook] c.a.n.c.r.client.grpc.GrpcClient [GrpcClient.java : 85] Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@72e9cbb1[Running, pool size = 9, active threads = 0, queued tasks = 0, completed tasks = 9] +2024-04-28 21:54:20,251 INFO [SpringApplicationShutdownHook] c.alibaba.druid.pool.DruidDataSource [DruidDataSource.java : 2071] {dataSource-0} closing ... +2024-04-28 21:54:59,452 INFO [main] o.s.b.t.c.SpringBootTestContextBootstrapper [AbstractTestContextBootstrapper.java : 305] Neither @ContextConfiguration nor @ContextHierarchy found for test class [com.bwie.alipay.demo.controller.TestObserver], using SpringBootContextLoader +2024-04-28 21:54:59,456 INFO [main] o.s.t.c.s.AbstractContextLoader [AbstractContextLoader.java : 264] Could not detect default resource locations for test class [com.bwie.alipay.demo.controller.TestObserver]: no resource found for suffixes {-context.xml, Context.groovy}. +2024-04-28 21:54:59,458 INFO [main] o.s.t.c.s.AnnotationConfigContextLoaderUtils [AnnotationConfigContextLoaderUtils.java : 83] Could not detect default configuration classes for test class [com.bwie.alipay.demo.controller.TestObserver]: TestObserver does not declare any static, non-private, non-final, nested classes annotated with @Configuration. +2024-04-28 21:54:59,558 INFO [main] o.s.b.t.c.SpringBootTestContextBootstrapper [SpringBootTestContextBootstrapper.java : 239] Found @SpringBootConfiguration com.bwie.alipay.AlipayApplication for test class com.bwie.alipay.demo.controller.TestObserver +2024-04-28 21:54:59,628 INFO [main] o.s.b.t.c.SpringBootTestContextBootstrapper [AbstractTestContextBootstrapper.java : 245] Loaded default TestExecutionListener class names from location [META-INF/spring.factories]: [org.springframework.boot.test.autoconfigure.restdocs.RestDocsTestExecutionListener, org.springframework.boot.test.autoconfigure.web.client.MockRestServiceServerResetTestExecutionListener, org.springframework.boot.test.autoconfigure.web.servlet.MockMvcPrintOnlyOnFailureTestExecutionListener, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverTestExecutionListener, org.springframework.boot.test.autoconfigure.webservices.client.MockWebServiceServerTestExecutionListener, org.springframework.test.context.web.ServletTestExecutionListener, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener, org.springframework.test.context.event.ApplicationEventsTestExecutionListener, org.springframework.test.context.support.DependencyInjectionTestExecutionListener, org.springframework.test.context.support.DirtiesContextTestExecutionListener, org.springframework.test.context.transaction.TransactionalTestExecutionListener, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener, org.springframework.test.context.event.EventPublishingTestExecutionListener, org.springframework.boot.test.mock.mockito.MockitoTestExecutionListener, org.springframework.boot.test.mock.mockito.ResetMocksTestExecutionListener] +2024-04-28 21:54:59,637 INFO [main] o.s.b.t.c.SpringBootTestContextBootstrapper [AbstractTestContextBootstrapper.java : 174] Using TestExecutionListeners: [org.springframework.test.context.web.ServletTestExecutionListener@6da00fb9, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener@a202ccb, org.springframework.test.context.event.ApplicationEventsTestExecutionListener@20f12539, org.springframework.boot.test.mock.mockito.MockitoTestExecutionListener@75b25825, org.springframework.boot.test.autoconfigure.SpringBootDependencyInjectionTestExecutionListener@18025ced, org.springframework.test.context.support.DirtiesContextTestExecutionListener@13cf7d52, org.springframework.test.context.transaction.TransactionalTestExecutionListener@3a3e4aff, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener@5d2a4eed, org.springframework.test.context.event.EventPublishingTestExecutionListener@57459491, org.springframework.boot.test.autoconfigure.restdocs.RestDocsTestExecutionListener@3f0846c6, org.springframework.boot.test.autoconfigure.web.client.MockRestServiceServerResetTestExecutionListener@77a98a6a, org.springframework.boot.test.autoconfigure.web.servlet.MockMvcPrintOnlyOnFailureTestExecutionListener@78fbff54, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverTestExecutionListener@3e10dc6, org.springframework.boot.test.autoconfigure.webservices.client.MockWebServiceServerTestExecutionListener@7e22550a, org.springframework.boot.test.mock.mockito.ResetMocksTestExecutionListener@45e37a7e] +2024-04-28 21:55:00,107 INFO [background-preinit] o.h.validator.internal.util.Version [Version.java : 21] HV000001: Hibernate Validator 6.2.0.Final +2024-04-28 21:55:00,616 INFO [main] c.alibaba.nacos.common.remote.client [RpcClientFactory.java : 80] [RpcClientFactory] create a new rpc client of b1927ab9-4d25-4752-aec6-c6d2196577af_config-0 +2024-04-28 21:55:00,663 INFO [main] org.reflections.Reflections [Reflections.java : 232] Reflections took 21 ms to scan 1 urls, producing 3 keys and 6 values +2024-04-28 21:55:00,712 INFO [main] org.reflections.Reflections [Reflections.java : 232] Reflections took 11 ms to scan 1 urls, producing 4 keys and 9 values +2024-04-28 21:55:00,729 INFO [main] org.reflections.Reflections [Reflections.java : 232] Reflections took 13 ms to scan 1 urls, producing 3 keys and 10 values +2024-04-28 21:55:00,732 WARN [main] org.reflections.Reflections [Reflections.java : 179] given scan urls are empty. set urls in the configuration +2024-04-28 21:55:00,736 INFO [main] org.reflections.Reflections [Reflections.java : 232] Reflections took 2 ms to scan 1 urls, producing 1 keys and 5 values +2024-04-28 21:55:00,742 INFO [main] org.reflections.Reflections [Reflections.java : 232] Reflections took 5 ms to scan 1 urls, producing 1 keys and 7 values +2024-04-28 21:55:00,747 INFO [main] org.reflections.Reflections [Reflections.java : 232] Reflections took 3 ms to scan 1 urls, producing 2 keys and 8 values +2024-04-28 21:55:00,749 WARN [main] org.reflections.Reflections [Reflections.java : 179] given scan urls are empty. set urls in the configuration +2024-04-28 21:55:00,749 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [b1927ab9-4d25-4752-aec6-c6d2196577af_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} +2024-04-28 21:55:00,750 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [b1927ab9-4d25-4752-aec6-c6d2196577af_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$714/0x0000021ec739cfb8 +2024-04-28 21:55:00,750 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [b1927ab9-4d25-4752-aec6-c6d2196577af_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$715/0x0000021ec739d1d8 +2024-04-28 21:55:00,750 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [b1927ab9-4d25-4752-aec6-c6d2196577af_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 +2024-04-28 21:55:00,751 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [b1927ab9-4d25-4752-aec6-c6d2196577af_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 +2024-04-28 21:55:00,757 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [b1927ab9-4d25-4752-aec6-c6d2196577af_config-0] Try to connect to server on start up, server: {serverIp = '124.221.30.134', server main port = 8848} +2024-04-28 21:55:01,556 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [b1927ab9-4d25-4752-aec6-c6d2196577af_config-0] Success to connect to server [124.221.30.134:8848] on start up, connectionId = 1714312500603_114.95.172.249_49712 +2024-04-28 21:55:01,559 INFO [com.alibaba.nacos.client.remote.worker] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [b1927ab9-4d25-4752-aec6-c6d2196577af_config-0] Notify connected event to listeners. +2024-04-28 21:55:01,560 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [b1927ab9-4d25-4752-aec6-c6d2196577af_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler +2024-04-28 21:55:01,561 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [b1927ab9-4d25-4752-aec6-c6d2196577af_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$729/0x0000021ec74e3d48 +2024-04-28 21:55:01,637 WARN [main] c.a.c.n.c.NacosPropertySourceBuilder [NacosPropertySourceBuilder.java : 87] Ignore the empty nacos configuration and get it based on dataId[bwie-alipay] & group[DEFAULT_GROUP] +2024-04-28 21:55:01,651 WARN [main] c.a.c.n.c.NacosPropertySourceBuilder [NacosPropertySourceBuilder.java : 87] Ignore the empty nacos configuration and get it based on dataId[bwie-alipay.yml] & group[DEFAULT_GROUP] +2024-04-28 21:55:01,674 INFO [main] o.s.c.b.c.PropertySourceBootstrapConfiguration [PropertySourceBootstrapConfiguration.java : 109] Located property source: [BootstrapPropertySource {name='bootstrapProperties-bwie-alipay-dev.yml,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-bwie-alipay.yml,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-bwie-alipay,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-application-dev.yml,DEFAULT_GROUP'}] +2024-04-28 21:55:01,697 INFO [main] c.b.a.demo.controller.TestObserver [SpringApplication.java : 639] The following profiles are active: dev +2024-04-28 21:55:02,211 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java : 262] Multiple Spring Data modules found, entering strict repository configuration mode! +2024-04-28 21:55:02,215 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java : 132] Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2024-04-28 21:55:02,244 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java : 201] Finished Spring Data repository scanning in 8 ms. Found 0 Redis repository interfaces. +2024-04-28 21:55:02,526 INFO [main] o.s.cloud.context.scope.GenericScope [GenericScope.java : 283] BeanFactory id=607af674-47b5-30df-82c0-e5f0e04bbd9f +2024-04-28 21:55:02,894 INFO [main] o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [PostProcessorRegistrationDelegate.java : 376] Bean 'org.springframework.cloud.commons.config.CommonsConfigAutoConfiguration' of type [org.springframework.cloud.commons.config.CommonsConfigAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2024-04-28 21:55:02,897 INFO [main] o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [PostProcessorRegistrationDelegate.java : 376] Bean 'org.springframework.cloud.client.loadbalancer.LoadBalancerDefaultMappingsProviderAutoConfiguration' of type [org.springframework.cloud.client.loadbalancer.LoadBalancerDefaultMappingsProviderAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2024-04-28 21:55:02,899 INFO [main] o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [PostProcessorRegistrationDelegate.java : 376] Bean 'loadBalancerClientsDefaultsMappingsProvider' of type [org.springframework.cloud.client.loadbalancer.LoadBalancerDefaultMappingsProviderAutoConfiguration$$Lambda$886/0x0000021ec769e8b0] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2024-04-28 21:55:02,901 INFO [main] o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [PostProcessorRegistrationDelegate.java : 376] Bean 'defaultsBindHandlerAdvisor' of type [org.springframework.cloud.commons.config.DefaultsBindHandlerAdvisor] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2024-04-28 21:55:02,935 INFO [main] o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [PostProcessorRegistrationDelegate.java : 376] Bean 'spring.cloud.sentinel-com.alibaba.cloud.sentinel.SentinelProperties' of type [com.alibaba.cloud.sentinel.SentinelProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2024-04-28 21:55:02,938 INFO [main] o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [PostProcessorRegistrationDelegate.java : 376] Bean 'com.alibaba.cloud.sentinel.custom.SentinelAutoConfiguration' of type [com.alibaba.cloud.sentinel.custom.SentinelAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2024-04-28 21:55:03,411 WARN [main] c.b.m.core.metadata.TableInfoHelper [TableInfoHelper.java : 375] Can not find table primary key in Class: "com.bwie.common.domain.BuyOrder". +2024-04-28 21:55:03,422 WARN [main] c.b.m.c.injector.DefaultSqlInjector [DefaultSqlInjector.java : 52] class com.bwie.common.domain.BuyOrder ,Not found @TableId annotation, Cannot use Mybatis-Plus 'xxById' Method. +2024-04-28 21:55:03,466 WARN [main] c.b.m.core.metadata.TableInfoHelper [TableInfoHelper.java : 375] Can not find table primary key in Class: "com.bwie.common.domain.PaymentEntity". +2024-04-28 21:55:03,466 WARN [main] c.b.m.c.injector.DefaultSqlInjector [DefaultSqlInjector.java : 52] class com.bwie.common.domain.PaymentEntity ,Not found @TableId annotation, Cannot use Mybatis-Plus 'xxById' Method. +2024-04-28 21:55:04,346 INFO [main] c.a.c.s.SentinelWebAutoConfiguration [SentinelWebAutoConfiguration.java : 80] [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. +2024-04-28 21:55:05,840 WARN [main] o.s.c.l.c.LoadBalancerCacheAutoConfiguration$LoadBalancerCaffeineWarnLogger [LoadBalancerCacheAutoConfiguration.java : 82] Spring Cloud LoadBalancer is currently working with the default cache. You can switch to using Caffeine cache, by adding it and org.springframework.cache.caffeine.CaffeineCacheManager to the classpath. +2024-04-28 21:55:05,954 INFO [main] c.alibaba.nacos.common.remote.client [RpcClientFactory.java : 80] [RpcClientFactory] create a new rpc client of 13d833cd-e3b5-471e-8945-888d53ee46ef +2024-04-28 21:55:05,954 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [13d833cd-e3b5-471e-8945-888d53ee46ef] RpcClient init label, labels = {module=naming, source=sdk} +2024-04-28 21:55:05,956 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [13d833cd-e3b5-471e-8945-888d53ee46ef] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager +2024-04-28 21:55:05,956 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [13d833cd-e3b5-471e-8945-888d53ee46ef] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService +2024-04-28 21:55:05,957 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [13d833cd-e3b5-471e-8945-888d53ee46ef] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler +2024-04-28 21:55:05,958 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [13d833cd-e3b5-471e-8945-888d53ee46ef] Try to connect to server on start up, server: {serverIp = '124.221.30.134', server main port = 8848} +2024-04-28 21:55:06,099 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [13d833cd-e3b5-471e-8945-888d53ee46ef] Success to connect to server [124.221.30.134:8848] on start up, connectionId = 1714312505213_114.95.172.249_49756 +2024-04-28 21:55:06,100 INFO [com.alibaba.nacos.client.remote.worker] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [13d833cd-e3b5-471e-8945-888d53ee46ef] Notify connected event to listeners. +2024-04-28 21:55:06,100 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [13d833cd-e3b5-471e-8945-888d53ee46ef] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler +2024-04-28 21:55:06,100 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [13d833cd-e3b5-471e-8945-888d53ee46ef] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$729/0x0000021ec74e3d48 +2024-04-28 21:55:06,143 INFO [main] c.b.a.demo.controller.TestObserver [StartupInfoLogger.java : 61] Started TestObserver in 6.469 seconds (JVM running for 7.368) +2024-04-28 21:55:06,439 WARN [Thread-1] c.a.n.c.http.HttpClientBeanHolder [HttpClientBeanHolder.java : 108] [HttpClientBeanHolder] Start destroying common HttpClient +2024-04-28 21:55:06,439 WARN [Thread-5] c.a.nacos.common.notify.NotifyCenter [NotifyCenter.java : 136] [NotifyCenter] Start destroying Publisher +2024-04-28 21:55:06,439 WARN [Thread-5] c.a.nacos.common.notify.NotifyCenter [NotifyCenter.java : 153] [NotifyCenter] Destruction of the end +2024-04-28 21:55:06,439 WARN [Thread-1] c.a.n.c.http.HttpClientBeanHolder [HttpClientBeanHolder.java : 114] [HttpClientBeanHolder] Destruction of the end +2024-04-28 21:55:06,641 INFO [nacos-grpc-client-executor-7] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [13d833cd-e3b5-471e-8945-888d53ee46ef] Receive server push request, request = NotifySubscriberRequest, requestId = 260 +2024-04-28 21:55:06,643 INFO [nacos-grpc-client-executor-7] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [13d833cd-e3b5-471e-8945-888d53ee46ef] Ack server push request, request = NotifySubscriberRequest, requestId = 260 +2024-04-28 21:55:07,105 INFO [SpringApplicationShutdownHook] c.alibaba.nacos.common.remote.client [RpcClient.java : 454] Shutdown rpc client, set status to shutdown +2024-04-28 21:55:07,106 INFO [SpringApplicationShutdownHook] c.alibaba.nacos.common.remote.client [RpcClient.java : 456] Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@1b2baf8e[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] +2024-04-28 21:55:07,106 INFO [SpringApplicationShutdownHook] c.alibaba.nacos.common.remote.client [RpcClient.java : 591] Close current connection 1714312505213_114.95.172.249_49756 +2024-04-28 21:55:07,108 INFO [SpringApplicationShutdownHook] c.a.n.c.r.client.grpc.GrpcClient [GrpcClient.java : 85] Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@7facf961[Running, pool size = 8, active threads = 0, queued tasks = 0, completed tasks = 8] +2024-04-28 21:55:07,110 INFO [SpringApplicationShutdownHook] c.alibaba.druid.pool.DruidDataSource [DruidDataSource.java : 2071] {dataSource-0} closing ... +2024-04-28 21:55:35,401 INFO [main] o.s.b.t.c.SpringBootTestContextBootstrapper [AbstractTestContextBootstrapper.java : 305] Neither @ContextConfiguration nor @ContextHierarchy found for test class [com.bwie.alipay.demo.controller.TestObserver], using SpringBootContextLoader +2024-04-28 21:55:35,406 INFO [main] o.s.t.c.s.AbstractContextLoader [AbstractContextLoader.java : 264] Could not detect default resource locations for test class [com.bwie.alipay.demo.controller.TestObserver]: no resource found for suffixes {-context.xml, Context.groovy}. +2024-04-28 21:55:35,407 INFO [main] o.s.t.c.s.AnnotationConfigContextLoaderUtils [AnnotationConfigContextLoaderUtils.java : 83] Could not detect default configuration classes for test class [com.bwie.alipay.demo.controller.TestObserver]: TestObserver does not declare any static, non-private, non-final, nested classes annotated with @Configuration. +2024-04-28 21:55:35,500 INFO [main] o.s.b.t.c.SpringBootTestContextBootstrapper [SpringBootTestContextBootstrapper.java : 239] Found @SpringBootConfiguration com.bwie.alipay.AlipayApplication for test class com.bwie.alipay.demo.controller.TestObserver +2024-04-28 21:55:35,577 INFO [main] o.s.b.t.c.SpringBootTestContextBootstrapper [AbstractTestContextBootstrapper.java : 245] Loaded default TestExecutionListener class names from location [META-INF/spring.factories]: [org.springframework.boot.test.autoconfigure.restdocs.RestDocsTestExecutionListener, org.springframework.boot.test.autoconfigure.web.client.MockRestServiceServerResetTestExecutionListener, org.springframework.boot.test.autoconfigure.web.servlet.MockMvcPrintOnlyOnFailureTestExecutionListener, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverTestExecutionListener, org.springframework.boot.test.autoconfigure.webservices.client.MockWebServiceServerTestExecutionListener, org.springframework.test.context.web.ServletTestExecutionListener, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener, org.springframework.test.context.event.ApplicationEventsTestExecutionListener, org.springframework.test.context.support.DependencyInjectionTestExecutionListener, org.springframework.test.context.support.DirtiesContextTestExecutionListener, org.springframework.test.context.transaction.TransactionalTestExecutionListener, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener, org.springframework.test.context.event.EventPublishingTestExecutionListener, org.springframework.boot.test.mock.mockito.MockitoTestExecutionListener, org.springframework.boot.test.mock.mockito.ResetMocksTestExecutionListener] +2024-04-28 21:55:35,588 INFO [main] o.s.b.t.c.SpringBootTestContextBootstrapper [AbstractTestContextBootstrapper.java : 174] Using TestExecutionListeners: [org.springframework.test.context.web.ServletTestExecutionListener@20a14b55, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener@39ad977d, org.springframework.test.context.event.ApplicationEventsTestExecutionListener@6da00fb9, org.springframework.boot.test.mock.mockito.MockitoTestExecutionListener@a202ccb, org.springframework.boot.test.autoconfigure.SpringBootDependencyInjectionTestExecutionListener@20f12539, org.springframework.test.context.support.DirtiesContextTestExecutionListener@75b25825, org.springframework.test.context.transaction.TransactionalTestExecutionListener@18025ced, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener@13cf7d52, org.springframework.test.context.event.EventPublishingTestExecutionListener@3a3e4aff, org.springframework.boot.test.autoconfigure.restdocs.RestDocsTestExecutionListener@5d2a4eed, org.springframework.boot.test.autoconfigure.web.client.MockRestServiceServerResetTestExecutionListener@57459491, org.springframework.boot.test.autoconfigure.web.servlet.MockMvcPrintOnlyOnFailureTestExecutionListener@3f0846c6, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverTestExecutionListener@77a98a6a, org.springframework.boot.test.autoconfigure.webservices.client.MockWebServiceServerTestExecutionListener@78fbff54, org.springframework.boot.test.mock.mockito.ResetMocksTestExecutionListener@3e10dc6] +2024-04-28 21:55:36,050 INFO [background-preinit] o.h.validator.internal.util.Version [Version.java : 21] HV000001: Hibernate Validator 6.2.0.Final +2024-04-28 21:55:36,569 INFO [main] c.alibaba.nacos.common.remote.client [RpcClientFactory.java : 80] [RpcClientFactory] create a new rpc client of c30a27a7-4b82-4b64-bb31-dd399933d8bd_config-0 +2024-04-28 21:55:36,619 INFO [main] org.reflections.Reflections [Reflections.java : 232] Reflections took 24 ms to scan 1 urls, producing 3 keys and 6 values +2024-04-28 21:55:36,656 INFO [main] org.reflections.Reflections [Reflections.java : 232] Reflections took 9 ms to scan 1 urls, producing 4 keys and 9 values +2024-04-28 21:55:36,671 INFO [main] org.reflections.Reflections [Reflections.java : 232] Reflections took 12 ms to scan 1 urls, producing 3 keys and 10 values +2024-04-28 21:55:36,675 WARN [main] org.reflections.Reflections [Reflections.java : 179] given scan urls are empty. set urls in the configuration +2024-04-28 21:55:36,678 INFO [main] org.reflections.Reflections [Reflections.java : 232] Reflections took 1 ms to scan 1 urls, producing 1 keys and 5 values +2024-04-28 21:55:36,685 INFO [main] org.reflections.Reflections [Reflections.java : 232] Reflections took 3 ms to scan 1 urls, producing 1 keys and 7 values +2024-04-28 21:55:36,690 INFO [main] org.reflections.Reflections [Reflections.java : 232] Reflections took 3 ms to scan 1 urls, producing 2 keys and 8 values +2024-04-28 21:55:36,691 WARN [main] org.reflections.Reflections [Reflections.java : 179] given scan urls are empty. set urls in the configuration +2024-04-28 21:55:36,692 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [c30a27a7-4b82-4b64-bb31-dd399933d8bd_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} +2024-04-28 21:55:36,693 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [c30a27a7-4b82-4b64-bb31-dd399933d8bd_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$711/0x00000298b339a7e8 +2024-04-28 21:55:36,694 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [c30a27a7-4b82-4b64-bb31-dd399933d8bd_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$712/0x00000298b339aa08 +2024-04-28 21:55:36,695 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [c30a27a7-4b82-4b64-bb31-dd399933d8bd_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 +2024-04-28 21:55:36,695 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [c30a27a7-4b82-4b64-bb31-dd399933d8bd_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 +2024-04-28 21:55:36,701 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [c30a27a7-4b82-4b64-bb31-dd399933d8bd_config-0] Try to connect to server on start up, server: {serverIp = '124.221.30.134', server main port = 8848} +2024-04-28 21:55:37,484 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [c30a27a7-4b82-4b64-bb31-dd399933d8bd_config-0] Success to connect to server [124.221.30.134:8848] on start up, connectionId = 1714312536541_114.95.172.249_63717 +2024-04-28 21:55:37,487 INFO [com.alibaba.nacos.client.remote.worker] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [c30a27a7-4b82-4b64-bb31-dd399933d8bd_config-0] Notify connected event to listeners. +2024-04-28 21:55:37,487 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [c30a27a7-4b82-4b64-bb31-dd399933d8bd_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler +2024-04-28 21:55:37,489 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [c30a27a7-4b82-4b64-bb31-dd399933d8bd_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$726/0x00000298b34e3d48 +2024-04-28 21:55:37,557 WARN [main] c.a.c.n.c.NacosPropertySourceBuilder [NacosPropertySourceBuilder.java : 87] Ignore the empty nacos configuration and get it based on dataId[bwie-alipay] & group[DEFAULT_GROUP] +2024-04-28 21:55:37,570 WARN [main] c.a.c.n.c.NacosPropertySourceBuilder [NacosPropertySourceBuilder.java : 87] Ignore the empty nacos configuration and get it based on dataId[bwie-alipay.yml] & group[DEFAULT_GROUP] +2024-04-28 21:55:37,592 INFO [main] o.s.c.b.c.PropertySourceBootstrapConfiguration [PropertySourceBootstrapConfiguration.java : 109] Located property source: [BootstrapPropertySource {name='bootstrapProperties-bwie-alipay-dev.yml,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-bwie-alipay.yml,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-bwie-alipay,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-application-dev.yml,DEFAULT_GROUP'}] +2024-04-28 21:55:37,615 INFO [main] c.b.a.demo.controller.TestObserver [SpringApplication.java : 639] The following profiles are active: dev +2024-04-28 21:55:38,121 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java : 262] Multiple Spring Data modules found, entering strict repository configuration mode! +2024-04-28 21:55:38,123 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java : 132] Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2024-04-28 21:55:38,141 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java : 201] Finished Spring Data repository scanning in 7 ms. Found 0 Redis repository interfaces. +2024-04-28 21:55:38,421 INFO [main] o.s.cloud.context.scope.GenericScope [GenericScope.java : 283] BeanFactory id=607af674-47b5-30df-82c0-e5f0e04bbd9f +2024-04-28 21:55:38,793 INFO [main] o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [PostProcessorRegistrationDelegate.java : 376] Bean 'org.springframework.cloud.commons.config.CommonsConfigAutoConfiguration' of type [org.springframework.cloud.commons.config.CommonsConfigAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2024-04-28 21:55:38,796 INFO [main] o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [PostProcessorRegistrationDelegate.java : 376] Bean 'org.springframework.cloud.client.loadbalancer.LoadBalancerDefaultMappingsProviderAutoConfiguration' of type [org.springframework.cloud.client.loadbalancer.LoadBalancerDefaultMappingsProviderAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2024-04-28 21:55:38,799 INFO [main] o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [PostProcessorRegistrationDelegate.java : 376] Bean 'loadBalancerClientsDefaultsMappingsProvider' of type [org.springframework.cloud.client.loadbalancer.LoadBalancerDefaultMappingsProviderAutoConfiguration$$Lambda$883/0x00000298b369bae0] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2024-04-28 21:55:38,800 INFO [main] o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [PostProcessorRegistrationDelegate.java : 376] Bean 'defaultsBindHandlerAdvisor' of type [org.springframework.cloud.commons.config.DefaultsBindHandlerAdvisor] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2024-04-28 21:55:38,823 INFO [main] o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [PostProcessorRegistrationDelegate.java : 376] Bean 'spring.cloud.sentinel-com.alibaba.cloud.sentinel.SentinelProperties' of type [com.alibaba.cloud.sentinel.SentinelProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2024-04-28 21:55:38,828 INFO [main] o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [PostProcessorRegistrationDelegate.java : 376] Bean 'com.alibaba.cloud.sentinel.custom.SentinelAutoConfiguration' of type [com.alibaba.cloud.sentinel.custom.SentinelAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2024-04-28 21:55:39,297 WARN [main] c.b.m.core.metadata.TableInfoHelper [TableInfoHelper.java : 375] Can not find table primary key in Class: "com.bwie.common.domain.BuyOrder". +2024-04-28 21:55:39,302 WARN [main] c.b.m.c.injector.DefaultSqlInjector [DefaultSqlInjector.java : 52] class com.bwie.common.domain.BuyOrder ,Not found @TableId annotation, Cannot use Mybatis-Plus 'xxById' Method. +2024-04-28 21:55:39,344 WARN [main] c.b.m.core.metadata.TableInfoHelper [TableInfoHelper.java : 375] Can not find table primary key in Class: "com.bwie.common.domain.PaymentEntity". +2024-04-28 21:55:39,345 WARN [main] c.b.m.c.injector.DefaultSqlInjector [DefaultSqlInjector.java : 52] class com.bwie.common.domain.PaymentEntity ,Not found @TableId annotation, Cannot use Mybatis-Plus 'xxById' Method. +2024-04-28 21:55:40,261 INFO [main] c.a.c.s.SentinelWebAutoConfiguration [SentinelWebAutoConfiguration.java : 80] [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. +2024-04-28 21:55:41,847 WARN [main] o.s.c.l.c.LoadBalancerCacheAutoConfiguration$LoadBalancerCaffeineWarnLogger [LoadBalancerCacheAutoConfiguration.java : 82] Spring Cloud LoadBalancer is currently working with the default cache. You can switch to using Caffeine cache, by adding it and org.springframework.cache.caffeine.CaffeineCacheManager to the classpath. +2024-04-28 21:55:41,933 INFO [main] c.alibaba.nacos.common.remote.client [RpcClientFactory.java : 80] [RpcClientFactory] create a new rpc client of 349afa2b-00be-4653-9f6e-7700a58d4128 +2024-04-28 21:55:41,933 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [349afa2b-00be-4653-9f6e-7700a58d4128] RpcClient init label, labels = {module=naming, source=sdk} +2024-04-28 21:55:41,934 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [349afa2b-00be-4653-9f6e-7700a58d4128] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager +2024-04-28 21:55:41,935 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [349afa2b-00be-4653-9f6e-7700a58d4128] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService +2024-04-28 21:55:41,935 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [349afa2b-00be-4653-9f6e-7700a58d4128] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler +2024-04-28 21:55:41,935 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [349afa2b-00be-4653-9f6e-7700a58d4128] Try to connect to server on start up, server: {serverIp = '124.221.30.134', server main port = 8848} +2024-04-28 21:55:42,076 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [349afa2b-00be-4653-9f6e-7700a58d4128] Success to connect to server [124.221.30.134:8848] on start up, connectionId = 1714312541187_114.95.173.5_63732 +2024-04-28 21:55:42,076 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [349afa2b-00be-4653-9f6e-7700a58d4128] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler +2024-04-28 21:55:42,076 INFO [com.alibaba.nacos.client.remote.worker] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [349afa2b-00be-4653-9f6e-7700a58d4128] Notify connected event to listeners. +2024-04-28 21:55:42,076 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [349afa2b-00be-4653-9f6e-7700a58d4128] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$726/0x00000298b34e3d48 +2024-04-28 21:55:42,112 INFO [main] c.b.a.demo.controller.TestObserver [StartupInfoLogger.java : 61] Started TestObserver in 6.488 seconds (JVM running for 7.395) +2024-04-28 21:55:42,392 WARN [Thread-1] c.a.n.c.http.HttpClientBeanHolder [HttpClientBeanHolder.java : 108] [HttpClientBeanHolder] Start destroying common HttpClient +2024-04-28 21:55:42,392 WARN [Thread-5] c.a.nacos.common.notify.NotifyCenter [NotifyCenter.java : 136] [NotifyCenter] Start destroying Publisher +2024-04-28 21:55:42,393 WARN [Thread-1] c.a.n.c.http.HttpClientBeanHolder [HttpClientBeanHolder.java : 114] [HttpClientBeanHolder] Destruction of the end +2024-04-28 21:55:42,393 WARN [Thread-5] c.a.nacos.common.notify.NotifyCenter [NotifyCenter.java : 153] [NotifyCenter] Destruction of the end +2024-04-28 21:55:42,663 INFO [nacos-grpc-client-executor-7] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [349afa2b-00be-4653-9f6e-7700a58d4128] Receive server push request, request = NotifySubscriberRequest, requestId = 261 +2024-04-28 21:55:42,665 INFO [nacos-grpc-client-executor-7] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [349afa2b-00be-4653-9f6e-7700a58d4128] Ack server push request, request = NotifySubscriberRequest, requestId = 261 +2024-04-28 21:55:43,091 INFO [SpringApplicationShutdownHook] c.alibaba.nacos.common.remote.client [RpcClient.java : 454] Shutdown rpc client, set status to shutdown +2024-04-28 21:55:43,092 INFO [SpringApplicationShutdownHook] c.alibaba.nacos.common.remote.client [RpcClient.java : 456] Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@4377c03b[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] +2024-04-28 21:55:43,092 INFO [SpringApplicationShutdownHook] c.alibaba.nacos.common.remote.client [RpcClient.java : 591] Close current connection 1714312541187_114.95.173.5_63732 +2024-04-28 21:55:43,094 INFO [SpringApplicationShutdownHook] c.a.n.c.r.client.grpc.GrpcClient [GrpcClient.java : 85] Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@3f2f4dba[Running, pool size = 8, active threads = 0, queued tasks = 0, completed tasks = 8] +2024-04-28 21:55:43,096 INFO [SpringApplicationShutdownHook] c.alibaba.druid.pool.DruidDataSource [DruidDataSource.java : 2071] {dataSource-0} closing ... +2024-04-28 22:20:40,402 INFO [main] o.s.b.t.c.SpringBootTestContextBootstrapper [AbstractTestContextBootstrapper.java : 305] Neither @ContextConfiguration nor @ContextHierarchy found for test class [com.bwie.alipay.demo.controller.TestObserver], using SpringBootContextLoader +2024-04-28 22:20:40,407 INFO [main] o.s.t.c.s.AbstractContextLoader [AbstractContextLoader.java : 264] Could not detect default resource locations for test class [com.bwie.alipay.demo.controller.TestObserver]: no resource found for suffixes {-context.xml, Context.groovy}. +2024-04-28 22:20:40,408 INFO [main] o.s.t.c.s.AnnotationConfigContextLoaderUtils [AnnotationConfigContextLoaderUtils.java : 83] Could not detect default configuration classes for test class [com.bwie.alipay.demo.controller.TestObserver]: TestObserver does not declare any static, non-private, non-final, nested classes annotated with @Configuration. +2024-04-28 22:20:40,506 INFO [main] o.s.b.t.c.SpringBootTestContextBootstrapper [SpringBootTestContextBootstrapper.java : 239] Found @SpringBootConfiguration com.bwie.alipay.AlipayApplication for test class com.bwie.alipay.demo.controller.TestObserver +2024-04-28 22:20:40,586 INFO [main] o.s.b.t.c.SpringBootTestContextBootstrapper [AbstractTestContextBootstrapper.java : 245] Loaded default TestExecutionListener class names from location [META-INF/spring.factories]: [org.springframework.boot.test.autoconfigure.restdocs.RestDocsTestExecutionListener, org.springframework.boot.test.autoconfigure.web.client.MockRestServiceServerResetTestExecutionListener, org.springframework.boot.test.autoconfigure.web.servlet.MockMvcPrintOnlyOnFailureTestExecutionListener, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverTestExecutionListener, org.springframework.boot.test.autoconfigure.webservices.client.MockWebServiceServerTestExecutionListener, org.springframework.test.context.web.ServletTestExecutionListener, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener, org.springframework.test.context.event.ApplicationEventsTestExecutionListener, org.springframework.test.context.support.DependencyInjectionTestExecutionListener, org.springframework.test.context.support.DirtiesContextTestExecutionListener, org.springframework.test.context.transaction.TransactionalTestExecutionListener, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener, org.springframework.test.context.event.EventPublishingTestExecutionListener, org.springframework.boot.test.mock.mockito.MockitoTestExecutionListener, org.springframework.boot.test.mock.mockito.ResetMocksTestExecutionListener] +2024-04-28 22:20:40,596 INFO [main] o.s.b.t.c.SpringBootTestContextBootstrapper [AbstractTestContextBootstrapper.java : 174] Using TestExecutionListeners: [org.springframework.test.context.web.ServletTestExecutionListener@75f65e45, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener@6eeade6c, org.springframework.test.context.event.ApplicationEventsTestExecutionListener@4a891c97, org.springframework.boot.test.mock.mockito.MockitoTestExecutionListener@a5bd950, org.springframework.boot.test.autoconfigure.SpringBootDependencyInjectionTestExecutionListener@4d18aa28, org.springframework.test.context.support.DirtiesContextTestExecutionListener@75390459, org.springframework.test.context.transaction.TransactionalTestExecutionListener@7756c3cd, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener@2313052e, org.springframework.test.context.event.EventPublishingTestExecutionListener@2bd2b28e, org.springframework.boot.test.autoconfigure.restdocs.RestDocsTestExecutionListener@16746061, org.springframework.boot.test.autoconfigure.web.client.MockRestServiceServerResetTestExecutionListener@57fd91c9, org.springframework.boot.test.autoconfigure.web.servlet.MockMvcPrintOnlyOnFailureTestExecutionListener@6cfcd46d, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverTestExecutionListener@52045dbe, org.springframework.boot.test.autoconfigure.webservices.client.MockWebServiceServerTestExecutionListener@674658f7, org.springframework.boot.test.mock.mockito.ResetMocksTestExecutionListener@5c8eee0f] +2024-04-28 22:20:41,108 INFO [background-preinit] o.h.validator.internal.util.Version [Version.java : 21] HV000001: Hibernate Validator 6.2.0.Final +2024-04-28 22:20:41,686 INFO [main] c.alibaba.nacos.common.remote.client [RpcClientFactory.java : 80] [RpcClientFactory] create a new rpc client of 470be299-3896-4977-814e-8d92d0de18cf_config-0 +2024-04-28 22:20:41,747 INFO [main] org.reflections.Reflections [Reflections.java : 232] Reflections took 31 ms to scan 1 urls, producing 3 keys and 6 values +2024-04-28 22:20:41,773 INFO [main] org.reflections.Reflections [Reflections.java : 232] Reflections took 7 ms to scan 1 urls, producing 4 keys and 9 values +2024-04-28 22:20:41,781 INFO [main] org.reflections.Reflections [Reflections.java : 232] Reflections took 6 ms to scan 1 urls, producing 3 keys and 10 values +2024-04-28 22:20:41,784 WARN [main] org.reflections.Reflections [Reflections.java : 179] given scan urls are empty. set urls in the configuration +2024-04-28 22:20:41,790 INFO [main] org.reflections.Reflections [Reflections.java : 232] Reflections took 5 ms to scan 1 urls, producing 1 keys and 5 values +2024-04-28 22:20:41,800 INFO [main] org.reflections.Reflections [Reflections.java : 232] Reflections took 4 ms to scan 1 urls, producing 1 keys and 7 values +2024-04-28 22:20:41,807 INFO [main] org.reflections.Reflections [Reflections.java : 232] Reflections took 4 ms to scan 1 urls, producing 2 keys and 8 values +2024-04-28 22:20:41,810 WARN [main] org.reflections.Reflections [Reflections.java : 179] given scan urls are empty. set urls in the configuration +2024-04-28 22:20:41,812 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [470be299-3896-4977-814e-8d92d0de18cf_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} +2024-04-28 22:20:41,812 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [470be299-3896-4977-814e-8d92d0de18cf_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$712/0x000001b6283e5a58 +2024-04-28 22:20:41,813 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [470be299-3896-4977-814e-8d92d0de18cf_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$713/0x000001b6283e5c78 +2024-04-28 22:20:41,813 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [470be299-3896-4977-814e-8d92d0de18cf_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 +2024-04-28 22:20:41,814 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [470be299-3896-4977-814e-8d92d0de18cf_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 +2024-04-28 22:20:41,821 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [470be299-3896-4977-814e-8d92d0de18cf_config-0] Try to connect to server on start up, server: {serverIp = '124.221.30.134', server main port = 8848} +2024-04-28 22:20:42,656 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [470be299-3896-4977-814e-8d92d0de18cf_config-0] Success to connect to server [124.221.30.134:8848] on start up, connectionId = 1714314041700_114.95.173.7_65480 +2024-04-28 22:20:42,657 INFO [com.alibaba.nacos.client.remote.worker] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [470be299-3896-4977-814e-8d92d0de18cf_config-0] Notify connected event to listeners. +2024-04-28 22:20:42,658 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [470be299-3896-4977-814e-8d92d0de18cf_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler +2024-04-28 22:20:42,658 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [470be299-3896-4977-814e-8d92d0de18cf_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$728/0x000001b62851d3c8 +2024-04-28 22:20:42,750 WARN [main] c.a.c.n.c.NacosPropertySourceBuilder [NacosPropertySourceBuilder.java : 87] Ignore the empty nacos configuration and get it based on dataId[bwie-alipay] & group[DEFAULT_GROUP] +2024-04-28 22:20:42,763 WARN [main] c.a.c.n.c.NacosPropertySourceBuilder [NacosPropertySourceBuilder.java : 87] Ignore the empty nacos configuration and get it based on dataId[bwie-alipay.yml] & group[DEFAULT_GROUP] +2024-04-28 22:20:42,780 INFO [main] o.s.c.b.c.PropertySourceBootstrapConfiguration [PropertySourceBootstrapConfiguration.java : 109] Located property source: [BootstrapPropertySource {name='bootstrapProperties-bwie-alipay-dev.yml,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-bwie-alipay.yml,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-bwie-alipay,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-application-dev.yml,DEFAULT_GROUP'}] +2024-04-28 22:20:42,802 INFO [main] c.b.a.demo.controller.TestObserver [SpringApplication.java : 639] The following profiles are active: dev +2024-04-28 22:20:43,373 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java : 262] Multiple Spring Data modules found, entering strict repository configuration mode! +2024-04-28 22:20:43,375 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java : 132] Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2024-04-28 22:20:43,396 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java : 201] Finished Spring Data repository scanning in 9 ms. Found 0 Redis repository interfaces. +2024-04-28 22:20:43,641 INFO [main] o.s.cloud.context.scope.GenericScope [GenericScope.java : 283] BeanFactory id=607af674-47b5-30df-82c0-e5f0e04bbd9f +2024-04-28 22:20:44,029 INFO [main] o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [PostProcessorRegistrationDelegate.java : 376] Bean 'org.springframework.cloud.commons.config.CommonsConfigAutoConfiguration' of type [org.springframework.cloud.commons.config.CommonsConfigAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2024-04-28 22:20:44,032 INFO [main] o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [PostProcessorRegistrationDelegate.java : 376] Bean 'org.springframework.cloud.client.loadbalancer.LoadBalancerDefaultMappingsProviderAutoConfiguration' of type [org.springframework.cloud.client.loadbalancer.LoadBalancerDefaultMappingsProviderAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2024-04-28 22:20:44,034 INFO [main] o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [PostProcessorRegistrationDelegate.java : 376] Bean 'loadBalancerClientsDefaultsMappingsProvider' of type [org.springframework.cloud.client.loadbalancer.LoadBalancerDefaultMappingsProviderAutoConfiguration$$Lambda$885/0x000001b6286d4000] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2024-04-28 22:20:44,037 INFO [main] o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [PostProcessorRegistrationDelegate.java : 376] Bean 'defaultsBindHandlerAdvisor' of type [org.springframework.cloud.commons.config.DefaultsBindHandlerAdvisor] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2024-04-28 22:20:44,066 INFO [main] o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [PostProcessorRegistrationDelegate.java : 376] Bean 'spring.cloud.sentinel-com.alibaba.cloud.sentinel.SentinelProperties' of type [com.alibaba.cloud.sentinel.SentinelProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2024-04-28 22:20:44,070 INFO [main] o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [PostProcessorRegistrationDelegate.java : 376] Bean 'com.alibaba.cloud.sentinel.custom.SentinelAutoConfiguration' of type [com.alibaba.cloud.sentinel.custom.SentinelAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2024-04-28 22:20:44,594 WARN [main] c.b.m.core.metadata.TableInfoHelper [TableInfoHelper.java : 375] Can not find table primary key in Class: "com.bwie.common.domain.BuyOrder". +2024-04-28 22:20:44,598 WARN [main] c.b.m.c.injector.DefaultSqlInjector [DefaultSqlInjector.java : 52] class com.bwie.common.domain.BuyOrder ,Not found @TableId annotation, Cannot use Mybatis-Plus 'xxById' Method. +2024-04-28 22:20:44,649 WARN [main] c.b.m.core.metadata.TableInfoHelper [TableInfoHelper.java : 375] Can not find table primary key in Class: "com.bwie.common.domain.PaymentEntity". +2024-04-28 22:20:44,649 WARN [main] c.b.m.c.injector.DefaultSqlInjector [DefaultSqlInjector.java : 52] class com.bwie.common.domain.PaymentEntity ,Not found @TableId annotation, Cannot use Mybatis-Plus 'xxById' Method. +2024-04-28 22:20:45,766 INFO [main] c.a.c.s.SentinelWebAutoConfiguration [SentinelWebAutoConfiguration.java : 80] [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. +2024-04-28 22:20:47,645 WARN [main] o.s.c.l.c.LoadBalancerCacheAutoConfiguration$LoadBalancerCaffeineWarnLogger [LoadBalancerCacheAutoConfiguration.java : 82] Spring Cloud LoadBalancer is currently working with the default cache. You can switch to using Caffeine cache, by adding it and org.springframework.cache.caffeine.CaffeineCacheManager to the classpath. +2024-04-28 22:20:47,737 INFO [main] c.alibaba.nacos.common.remote.client [RpcClientFactory.java : 80] [RpcClientFactory] create a new rpc client of 5e74941a-b26e-4400-a7a0-77b5a922f557 +2024-04-28 22:20:47,737 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [5e74941a-b26e-4400-a7a0-77b5a922f557] RpcClient init label, labels = {module=naming, source=sdk} +2024-04-28 22:20:47,739 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [5e74941a-b26e-4400-a7a0-77b5a922f557] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager +2024-04-28 22:20:47,739 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [5e74941a-b26e-4400-a7a0-77b5a922f557] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService +2024-04-28 22:20:47,740 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [5e74941a-b26e-4400-a7a0-77b5a922f557] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler +2024-04-28 22:20:47,740 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [5e74941a-b26e-4400-a7a0-77b5a922f557] Try to connect to server on start up, server: {serverIp = '124.221.30.134', server main port = 8848} +2024-04-28 22:20:47,880 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [5e74941a-b26e-4400-a7a0-77b5a922f557] Success to connect to server [124.221.30.134:8848] on start up, connectionId = 1714314046984_114.95.173.7_65481 +2024-04-28 22:20:47,880 INFO [com.alibaba.nacos.client.remote.worker] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [5e74941a-b26e-4400-a7a0-77b5a922f557] Notify connected event to listeners. +2024-04-28 22:20:47,880 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [5e74941a-b26e-4400-a7a0-77b5a922f557] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler +2024-04-28 22:20:47,880 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [5e74941a-b26e-4400-a7a0-77b5a922f557] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$728/0x000001b62851d3c8 +2024-04-28 22:20:47,920 INFO [main] c.b.a.demo.controller.TestObserver [StartupInfoLogger.java : 61] Started TestObserver in 7.281 seconds (JVM running for 8.474) +2024-04-28 22:20:48,226 WARN [Thread-5] c.a.nacos.common.notify.NotifyCenter [NotifyCenter.java : 136] [NotifyCenter] Start destroying Publisher +2024-04-28 22:20:48,226 WARN [Thread-1] c.a.n.c.http.HttpClientBeanHolder [HttpClientBeanHolder.java : 108] [HttpClientBeanHolder] Start destroying common HttpClient +2024-04-28 22:20:48,226 WARN [Thread-5] c.a.nacos.common.notify.NotifyCenter [NotifyCenter.java : 153] [NotifyCenter] Destruction of the end +2024-04-28 22:20:48,227 WARN [Thread-1] c.a.n.c.http.HttpClientBeanHolder [HttpClientBeanHolder.java : 114] [HttpClientBeanHolder] Destruction of the end +2024-04-28 22:20:48,419 INFO [nacos-grpc-client-executor-5] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [5e74941a-b26e-4400-a7a0-77b5a922f557] Receive server push request, request = NotifySubscriberRequest, requestId = 265 +2024-04-28 22:20:48,420 INFO [nacos-grpc-client-executor-5] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [5e74941a-b26e-4400-a7a0-77b5a922f557] Ack server push request, request = NotifySubscriberRequest, requestId = 265 +2024-04-28 22:20:48,898 INFO [SpringApplicationShutdownHook] c.alibaba.nacos.common.remote.client [RpcClient.java : 454] Shutdown rpc client, set status to shutdown +2024-04-28 22:20:48,898 INFO [SpringApplicationShutdownHook] c.alibaba.nacos.common.remote.client [RpcClient.java : 456] Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@314684ec[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] +2024-04-28 22:20:48,899 INFO [SpringApplicationShutdownHook] c.alibaba.nacos.common.remote.client [RpcClient.java : 591] Close current connection 1714314046984_114.95.173.7_65481 +2024-04-28 22:20:48,903 INFO [SpringApplicationShutdownHook] c.a.n.c.r.client.grpc.GrpcClient [GrpcClient.java : 85] Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@57c7dcc2[Running, pool size = 6, active threads = 0, queued tasks = 0, completed tasks = 6] +2024-04-28 22:20:48,905 INFO [SpringApplicationShutdownHook] c.alibaba.druid.pool.DruidDataSource [DruidDataSource.java : 2071] {dataSource-0} closing ... +2024-04-28 22:21:17,002 INFO [main] o.s.b.t.c.SpringBootTestContextBootstrapper [AbstractTestContextBootstrapper.java : 305] Neither @ContextConfiguration nor @ContextHierarchy found for test class [com.bwie.alipay.demo.controller.TestObserver], using SpringBootContextLoader +2024-04-28 22:21:17,006 INFO [main] o.s.t.c.s.AbstractContextLoader [AbstractContextLoader.java : 264] Could not detect default resource locations for test class [com.bwie.alipay.demo.controller.TestObserver]: no resource found for suffixes {-context.xml, Context.groovy}. +2024-04-28 22:21:17,007 INFO [main] o.s.t.c.s.AnnotationConfigContextLoaderUtils [AnnotationConfigContextLoaderUtils.java : 83] Could not detect default configuration classes for test class [com.bwie.alipay.demo.controller.TestObserver]: TestObserver does not declare any static, non-private, non-final, nested classes annotated with @Configuration. +2024-04-28 22:21:17,103 INFO [main] o.s.b.t.c.SpringBootTestContextBootstrapper [SpringBootTestContextBootstrapper.java : 239] Found @SpringBootConfiguration com.bwie.alipay.AlipayApplication for test class com.bwie.alipay.demo.controller.TestObserver +2024-04-28 22:21:17,173 INFO [main] o.s.b.t.c.SpringBootTestContextBootstrapper [AbstractTestContextBootstrapper.java : 245] Loaded default TestExecutionListener class names from location [META-INF/spring.factories]: [org.springframework.boot.test.autoconfigure.restdocs.RestDocsTestExecutionListener, org.springframework.boot.test.autoconfigure.web.client.MockRestServiceServerResetTestExecutionListener, org.springframework.boot.test.autoconfigure.web.servlet.MockMvcPrintOnlyOnFailureTestExecutionListener, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverTestExecutionListener, org.springframework.boot.test.autoconfigure.webservices.client.MockWebServiceServerTestExecutionListener, org.springframework.test.context.web.ServletTestExecutionListener, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener, org.springframework.test.context.event.ApplicationEventsTestExecutionListener, org.springframework.test.context.support.DependencyInjectionTestExecutionListener, org.springframework.test.context.support.DirtiesContextTestExecutionListener, org.springframework.test.context.transaction.TransactionalTestExecutionListener, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener, org.springframework.test.context.event.EventPublishingTestExecutionListener, org.springframework.boot.test.mock.mockito.MockitoTestExecutionListener, org.springframework.boot.test.mock.mockito.ResetMocksTestExecutionListener] +2024-04-28 22:21:17,183 INFO [main] o.s.b.t.c.SpringBootTestContextBootstrapper [AbstractTestContextBootstrapper.java : 174] Using TestExecutionListeners: [org.springframework.test.context.web.ServletTestExecutionListener@6da00fb9, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener@a202ccb, org.springframework.test.context.event.ApplicationEventsTestExecutionListener@20f12539, org.springframework.boot.test.mock.mockito.MockitoTestExecutionListener@75b25825, org.springframework.boot.test.autoconfigure.SpringBootDependencyInjectionTestExecutionListener@18025ced, org.springframework.test.context.support.DirtiesContextTestExecutionListener@13cf7d52, org.springframework.test.context.transaction.TransactionalTestExecutionListener@3a3e4aff, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener@5d2a4eed, org.springframework.test.context.event.EventPublishingTestExecutionListener@57459491, org.springframework.boot.test.autoconfigure.restdocs.RestDocsTestExecutionListener@3f0846c6, org.springframework.boot.test.autoconfigure.web.client.MockRestServiceServerResetTestExecutionListener@77a98a6a, org.springframework.boot.test.autoconfigure.web.servlet.MockMvcPrintOnlyOnFailureTestExecutionListener@78fbff54, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverTestExecutionListener@3e10dc6, org.springframework.boot.test.autoconfigure.webservices.client.MockWebServiceServerTestExecutionListener@7e22550a, org.springframework.boot.test.mock.mockito.ResetMocksTestExecutionListener@45e37a7e] +2024-04-28 22:21:17,643 INFO [background-preinit] o.h.validator.internal.util.Version [Version.java : 21] HV000001: Hibernate Validator 6.2.0.Final +2024-04-28 22:21:18,108 INFO [main] c.alibaba.nacos.common.remote.client [RpcClientFactory.java : 80] [RpcClientFactory] create a new rpc client of a8dc329c-95c4-4b99-b3b5-fbaa0fdab2d3_config-0 +2024-04-28 22:21:18,156 INFO [main] org.reflections.Reflections [Reflections.java : 232] Reflections took 22 ms to scan 1 urls, producing 3 keys and 6 values +2024-04-28 22:21:18,195 INFO [main] org.reflections.Reflections [Reflections.java : 232] Reflections took 14 ms to scan 1 urls, producing 4 keys and 9 values +2024-04-28 22:21:18,203 INFO [main] org.reflections.Reflections [Reflections.java : 232] Reflections took 5 ms to scan 1 urls, producing 3 keys and 10 values +2024-04-28 22:21:18,207 WARN [main] org.reflections.Reflections [Reflections.java : 179] given scan urls are empty. set urls in the configuration +2024-04-28 22:21:18,211 INFO [main] org.reflections.Reflections [Reflections.java : 232] Reflections took 3 ms to scan 1 urls, producing 1 keys and 5 values +2024-04-28 22:21:18,217 INFO [main] org.reflections.Reflections [Reflections.java : 232] Reflections took 3 ms to scan 1 urls, producing 1 keys and 7 values +2024-04-28 22:21:18,224 INFO [main] org.reflections.Reflections [Reflections.java : 232] Reflections took 3 ms to scan 1 urls, producing 2 keys and 8 values +2024-04-28 22:21:18,227 WARN [main] org.reflections.Reflections [Reflections.java : 179] given scan urls are empty. set urls in the configuration +2024-04-28 22:21:18,228 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [a8dc329c-95c4-4b99-b3b5-fbaa0fdab2d3_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} +2024-04-28 22:21:18,229 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [a8dc329c-95c4-4b99-b3b5-fbaa0fdab2d3_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$714/0x000001c4a939d5a8 +2024-04-28 22:21:18,230 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [a8dc329c-95c4-4b99-b3b5-fbaa0fdab2d3_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$715/0x000001c4a939d7c8 +2024-04-28 22:21:18,231 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [a8dc329c-95c4-4b99-b3b5-fbaa0fdab2d3_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 +2024-04-28 22:21:18,232 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [a8dc329c-95c4-4b99-b3b5-fbaa0fdab2d3_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 +2024-04-28 22:21:18,246 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [a8dc329c-95c4-4b99-b3b5-fbaa0fdab2d3_config-0] Try to connect to server on start up, server: {serverIp = '124.221.30.134', server main port = 8848} +2024-04-28 22:21:19,014 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [a8dc329c-95c4-4b99-b3b5-fbaa0fdab2d3_config-0] Success to connect to server [124.221.30.134:8848] on start up, connectionId = 1714314078061_114.95.172.254_65524 +2024-04-28 22:21:19,017 INFO [com.alibaba.nacos.client.remote.worker] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [a8dc329c-95c4-4b99-b3b5-fbaa0fdab2d3_config-0] Notify connected event to listeners. +2024-04-28 22:21:19,017 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [a8dc329c-95c4-4b99-b3b5-fbaa0fdab2d3_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler +2024-04-28 22:21:19,018 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [a8dc329c-95c4-4b99-b3b5-fbaa0fdab2d3_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$729/0x000001c4a94e4d48 +2024-04-28 22:21:19,100 WARN [main] c.a.c.n.c.NacosPropertySourceBuilder [NacosPropertySourceBuilder.java : 87] Ignore the empty nacos configuration and get it based on dataId[bwie-alipay] & group[DEFAULT_GROUP] +2024-04-28 22:21:19,113 WARN [main] c.a.c.n.c.NacosPropertySourceBuilder [NacosPropertySourceBuilder.java : 87] Ignore the empty nacos configuration and get it based on dataId[bwie-alipay.yml] & group[DEFAULT_GROUP] +2024-04-28 22:21:19,163 INFO [main] o.s.c.b.c.PropertySourceBootstrapConfiguration [PropertySourceBootstrapConfiguration.java : 109] Located property source: [BootstrapPropertySource {name='bootstrapProperties-bwie-alipay-dev.yml,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-bwie-alipay.yml,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-bwie-alipay,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-application-dev.yml,DEFAULT_GROUP'}] +2024-04-28 22:21:19,203 INFO [main] c.b.a.demo.controller.TestObserver [SpringApplication.java : 639] The following profiles are active: dev +2024-04-28 22:21:19,699 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java : 262] Multiple Spring Data modules found, entering strict repository configuration mode! +2024-04-28 22:21:19,702 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java : 132] Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2024-04-28 22:21:19,725 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java : 201] Finished Spring Data repository scanning in 8 ms. Found 0 Redis repository interfaces. +2024-04-28 22:21:19,953 INFO [main] o.s.cloud.context.scope.GenericScope [GenericScope.java : 283] BeanFactory id=607af674-47b5-30df-82c0-e5f0e04bbd9f +2024-04-28 22:21:20,317 INFO [main] o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [PostProcessorRegistrationDelegate.java : 376] Bean 'org.springframework.cloud.commons.config.CommonsConfigAutoConfiguration' of type [org.springframework.cloud.commons.config.CommonsConfigAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2024-04-28 22:21:20,320 INFO [main] o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [PostProcessorRegistrationDelegate.java : 376] Bean 'org.springframework.cloud.client.loadbalancer.LoadBalancerDefaultMappingsProviderAutoConfiguration' of type [org.springframework.cloud.client.loadbalancer.LoadBalancerDefaultMappingsProviderAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2024-04-28 22:21:20,322 INFO [main] o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [PostProcessorRegistrationDelegate.java : 376] Bean 'loadBalancerClientsDefaultsMappingsProvider' of type [org.springframework.cloud.client.loadbalancer.LoadBalancerDefaultMappingsProviderAutoConfiguration$$Lambda$886/0x000001c4a969f798] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2024-04-28 22:21:20,323 INFO [main] o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [PostProcessorRegistrationDelegate.java : 376] Bean 'defaultsBindHandlerAdvisor' of type [org.springframework.cloud.commons.config.DefaultsBindHandlerAdvisor] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2024-04-28 22:21:20,348 INFO [main] o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [PostProcessorRegistrationDelegate.java : 376] Bean 'spring.cloud.sentinel-com.alibaba.cloud.sentinel.SentinelProperties' of type [com.alibaba.cloud.sentinel.SentinelProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2024-04-28 22:21:20,352 INFO [main] o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [PostProcessorRegistrationDelegate.java : 376] Bean 'com.alibaba.cloud.sentinel.custom.SentinelAutoConfiguration' of type [com.alibaba.cloud.sentinel.custom.SentinelAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2024-04-28 22:21:20,827 WARN [main] c.b.m.core.metadata.TableInfoHelper [TableInfoHelper.java : 375] Can not find table primary key in Class: "com.bwie.common.domain.BuyOrder". +2024-04-28 22:21:20,834 WARN [main] c.b.m.c.injector.DefaultSqlInjector [DefaultSqlInjector.java : 52] class com.bwie.common.domain.BuyOrder ,Not found @TableId annotation, Cannot use Mybatis-Plus 'xxById' Method. +2024-04-28 22:21:20,871 WARN [main] c.b.m.core.metadata.TableInfoHelper [TableInfoHelper.java : 375] Can not find table primary key in Class: "com.bwie.common.domain.PaymentEntity". +2024-04-28 22:21:20,872 WARN [main] c.b.m.c.injector.DefaultSqlInjector [DefaultSqlInjector.java : 52] class com.bwie.common.domain.PaymentEntity ,Not found @TableId annotation, Cannot use Mybatis-Plus 'xxById' Method. +2024-04-28 22:21:21,692 INFO [main] c.a.c.s.SentinelWebAutoConfiguration [SentinelWebAutoConfiguration.java : 80] [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. +2024-04-28 22:21:23,273 WARN [main] o.s.c.l.c.LoadBalancerCacheAutoConfiguration$LoadBalancerCaffeineWarnLogger [LoadBalancerCacheAutoConfiguration.java : 82] Spring Cloud LoadBalancer is currently working with the default cache. You can switch to using Caffeine cache, by adding it and org.springframework.cache.caffeine.CaffeineCacheManager to the classpath. +2024-04-28 22:21:23,335 INFO [main] c.alibaba.nacos.common.remote.client [RpcClientFactory.java : 80] [RpcClientFactory] create a new rpc client of 1e576cf3-3599-4049-96b7-67e9344fd1df +2024-04-28 22:21:23,335 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [1e576cf3-3599-4049-96b7-67e9344fd1df] RpcClient init label, labels = {module=naming, source=sdk} +2024-04-28 22:21:23,336 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [1e576cf3-3599-4049-96b7-67e9344fd1df] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager +2024-04-28 22:21:23,337 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [1e576cf3-3599-4049-96b7-67e9344fd1df] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService +2024-04-28 22:21:23,337 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [1e576cf3-3599-4049-96b7-67e9344fd1df] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler +2024-04-28 22:21:23,337 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [1e576cf3-3599-4049-96b7-67e9344fd1df] Try to connect to server on start up, server: {serverIp = '124.221.30.134', server main port = 8848} +2024-04-28 22:21:23,478 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [1e576cf3-3599-4049-96b7-67e9344fd1df] Success to connect to server [124.221.30.134:8848] on start up, connectionId = 1714314082570_114.95.173.5_65526 +2024-04-28 22:21:23,479 INFO [com.alibaba.nacos.client.remote.worker] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [1e576cf3-3599-4049-96b7-67e9344fd1df] Notify connected event to listeners. +2024-04-28 22:21:23,479 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [1e576cf3-3599-4049-96b7-67e9344fd1df] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler +2024-04-28 22:21:23,480 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [1e576cf3-3599-4049-96b7-67e9344fd1df] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$729/0x000001c4a94e4d48 +2024-04-28 22:21:23,524 INFO [main] c.b.a.demo.controller.TestObserver [StartupInfoLogger.java : 61] Started TestObserver in 6.306 seconds (JVM running for 7.198) +2024-04-28 22:21:23,823 WARN [Thread-5] c.a.nacos.common.notify.NotifyCenter [NotifyCenter.java : 136] [NotifyCenter] Start destroying Publisher +2024-04-28 22:21:23,823 WARN [Thread-5] c.a.nacos.common.notify.NotifyCenter [NotifyCenter.java : 153] [NotifyCenter] Destruction of the end +2024-04-28 22:21:23,823 WARN [Thread-1] c.a.n.c.http.HttpClientBeanHolder [HttpClientBeanHolder.java : 108] [HttpClientBeanHolder] Start destroying common HttpClient +2024-04-28 22:21:23,823 WARN [Thread-1] c.a.n.c.http.HttpClientBeanHolder [HttpClientBeanHolder.java : 114] [HttpClientBeanHolder] Destruction of the end +2024-04-28 22:21:24,057 INFO [nacos-grpc-client-executor-6] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [1e576cf3-3599-4049-96b7-67e9344fd1df] Receive server push request, request = NotifySubscriberRequest, requestId = 266 +2024-04-28 22:21:24,061 INFO [nacos-grpc-client-executor-6] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [1e576cf3-3599-4049-96b7-67e9344fd1df] Ack server push request, request = NotifySubscriberRequest, requestId = 266 +2024-04-28 22:21:24,500 INFO [SpringApplicationShutdownHook] c.alibaba.nacos.common.remote.client [RpcClient.java : 454] Shutdown rpc client, set status to shutdown +2024-04-28 22:21:24,500 INFO [SpringApplicationShutdownHook] c.alibaba.nacos.common.remote.client [RpcClient.java : 456] Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@5f8eafc7[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] +2024-04-28 22:21:24,501 INFO [SpringApplicationShutdownHook] c.alibaba.nacos.common.remote.client [RpcClient.java : 591] Close current connection 1714314082570_114.95.173.5_65526 +2024-04-28 22:21:24,508 INFO [SpringApplicationShutdownHook] c.a.n.c.r.client.grpc.GrpcClient [GrpcClient.java : 85] Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@1c3d92f9[Running, pool size = 7, active threads = 0, queued tasks = 0, completed tasks = 7] +2024-04-28 22:21:24,512 INFO [SpringApplicationShutdownHook] c.alibaba.druid.pool.DruidDataSource [DruidDataSource.java : 2071] {dataSource-0} closing ... +2024-04-28 22:22:35,447 INFO [main] o.s.b.t.c.SpringBootTestContextBootstrapper [AbstractTestContextBootstrapper.java : 305] Neither @ContextConfiguration nor @ContextHierarchy found for test class [com.bwie.alipay.demo.controller.TestObserver], using SpringBootContextLoader +2024-04-28 22:22:35,453 INFO [main] o.s.t.c.s.AbstractContextLoader [AbstractContextLoader.java : 264] Could not detect default resource locations for test class [com.bwie.alipay.demo.controller.TestObserver]: no resource found for suffixes {-context.xml, Context.groovy}. +2024-04-28 22:22:35,454 INFO [main] o.s.t.c.s.AnnotationConfigContextLoaderUtils [AnnotationConfigContextLoaderUtils.java : 83] Could not detect default configuration classes for test class [com.bwie.alipay.demo.controller.TestObserver]: TestObserver does not declare any static, non-private, non-final, nested classes annotated with @Configuration. +2024-04-28 22:22:35,552 INFO [main] o.s.b.t.c.SpringBootTestContextBootstrapper [SpringBootTestContextBootstrapper.java : 239] Found @SpringBootConfiguration com.bwie.alipay.AlipayApplication for test class com.bwie.alipay.demo.controller.TestObserver +2024-04-28 22:22:35,627 INFO [main] o.s.b.t.c.SpringBootTestContextBootstrapper [AbstractTestContextBootstrapper.java : 245] Loaded default TestExecutionListener class names from location [META-INF/spring.factories]: [org.springframework.boot.test.autoconfigure.restdocs.RestDocsTestExecutionListener, org.springframework.boot.test.autoconfigure.web.client.MockRestServiceServerResetTestExecutionListener, org.springframework.boot.test.autoconfigure.web.servlet.MockMvcPrintOnlyOnFailureTestExecutionListener, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverTestExecutionListener, org.springframework.boot.test.autoconfigure.webservices.client.MockWebServiceServerTestExecutionListener, org.springframework.test.context.web.ServletTestExecutionListener, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener, org.springframework.test.context.event.ApplicationEventsTestExecutionListener, org.springframework.test.context.support.DependencyInjectionTestExecutionListener, org.springframework.test.context.support.DirtiesContextTestExecutionListener, org.springframework.test.context.transaction.TransactionalTestExecutionListener, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener, org.springframework.test.context.event.EventPublishingTestExecutionListener, org.springframework.boot.test.mock.mockito.MockitoTestExecutionListener, org.springframework.boot.test.mock.mockito.ResetMocksTestExecutionListener] +2024-04-28 22:22:35,638 INFO [main] o.s.b.t.c.SpringBootTestContextBootstrapper [AbstractTestContextBootstrapper.java : 174] Using TestExecutionListeners: [org.springframework.test.context.web.ServletTestExecutionListener@75f65e45, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener@6eeade6c, org.springframework.test.context.event.ApplicationEventsTestExecutionListener@4a891c97, org.springframework.boot.test.mock.mockito.MockitoTestExecutionListener@a5bd950, org.springframework.boot.test.autoconfigure.SpringBootDependencyInjectionTestExecutionListener@4d18aa28, org.springframework.test.context.support.DirtiesContextTestExecutionListener@75390459, org.springframework.test.context.transaction.TransactionalTestExecutionListener@7756c3cd, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener@2313052e, org.springframework.test.context.event.EventPublishingTestExecutionListener@2bd2b28e, org.springframework.boot.test.autoconfigure.restdocs.RestDocsTestExecutionListener@16746061, org.springframework.boot.test.autoconfigure.web.client.MockRestServiceServerResetTestExecutionListener@57fd91c9, org.springframework.boot.test.autoconfigure.web.servlet.MockMvcPrintOnlyOnFailureTestExecutionListener@6cfcd46d, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverTestExecutionListener@52045dbe, org.springframework.boot.test.autoconfigure.webservices.client.MockWebServiceServerTestExecutionListener@674658f7, org.springframework.boot.test.mock.mockito.ResetMocksTestExecutionListener@5c8eee0f] +2024-04-28 22:22:36,151 INFO [background-preinit] o.h.validator.internal.util.Version [Version.java : 21] HV000001: Hibernate Validator 6.2.0.Final +2024-04-28 22:22:36,674 INFO [main] c.alibaba.nacos.common.remote.client [RpcClientFactory.java : 80] [RpcClientFactory] create a new rpc client of 5f1dbd85-f387-407d-ab97-9c094da0e9a2_config-0 +2024-04-28 22:22:36,746 INFO [main] org.reflections.Reflections [Reflections.java : 232] Reflections took 28 ms to scan 1 urls, producing 3 keys and 6 values +2024-04-28 22:22:36,784 INFO [main] org.reflections.Reflections [Reflections.java : 232] Reflections took 11 ms to scan 1 urls, producing 4 keys and 9 values +2024-04-28 22:22:36,794 INFO [main] org.reflections.Reflections [Reflections.java : 232] Reflections took 6 ms to scan 1 urls, producing 3 keys and 10 values +2024-04-28 22:22:36,798 WARN [main] org.reflections.Reflections [Reflections.java : 179] given scan urls are empty. set urls in the configuration +2024-04-28 22:22:36,803 INFO [main] org.reflections.Reflections [Reflections.java : 232] Reflections took 4 ms to scan 1 urls, producing 1 keys and 5 values +2024-04-28 22:22:36,813 INFO [main] org.reflections.Reflections [Reflections.java : 232] Reflections took 5 ms to scan 1 urls, producing 1 keys and 7 values +2024-04-28 22:22:36,820 INFO [main] org.reflections.Reflections [Reflections.java : 232] Reflections took 5 ms to scan 1 urls, producing 2 keys and 8 values +2024-04-28 22:22:36,824 WARN [main] org.reflections.Reflections [Reflections.java : 179] given scan urls are empty. set urls in the configuration +2024-04-28 22:22:36,825 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [5f1dbd85-f387-407d-ab97-9c094da0e9a2_config-0] RpcClient init label, labels = {module=config, Vipserver-Tag=null, source=sdk, Amory-Tag=null, Location-Tag=null, taskId=0, AppName=unknown} +2024-04-28 22:22:36,826 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [5f1dbd85-f387-407d-ab97-9c094da0e9a2_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$712/0x0000019ac539e448 +2024-04-28 22:22:36,827 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [5f1dbd85-f387-407d-ab97-9c094da0e9a2_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$713/0x0000019ac539e668 +2024-04-28 22:22:36,828 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [5f1dbd85-f387-407d-ab97-9c094da0e9a2_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 +2024-04-28 22:22:36,829 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [5f1dbd85-f387-407d-ab97-9c094da0e9a2_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 +2024-04-28 22:22:36,840 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [5f1dbd85-f387-407d-ab97-9c094da0e9a2_config-0] Try to connect to server on start up, server: {serverIp = '124.221.30.134', server main port = 8848} +2024-04-28 22:22:37,644 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [5f1dbd85-f387-407d-ab97-9c094da0e9a2_config-0] Success to connect to server [124.221.30.134:8848] on start up, connectionId = 1714314156683_114.95.172.254_49201 +2024-04-28 22:22:37,646 INFO [com.alibaba.nacos.client.remote.worker] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [5f1dbd85-f387-407d-ab97-9c094da0e9a2_config-0] Notify connected event to listeners. +2024-04-28 22:22:37,647 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [5f1dbd85-f387-407d-ab97-9c094da0e9a2_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler +2024-04-28 22:22:37,649 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [5f1dbd85-f387-407d-ab97-9c094da0e9a2_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$728/0x0000019ac5525638 +2024-04-28 22:22:37,755 WARN [main] c.a.c.n.c.NacosPropertySourceBuilder [NacosPropertySourceBuilder.java : 87] Ignore the empty nacos configuration and get it based on dataId[bwie-alipay] & group[DEFAULT_GROUP] +2024-04-28 22:22:37,777 WARN [main] c.a.c.n.c.NacosPropertySourceBuilder [NacosPropertySourceBuilder.java : 87] Ignore the empty nacos configuration and get it based on dataId[bwie-alipay.yml] & group[DEFAULT_GROUP] +2024-04-28 22:22:37,799 INFO [main] o.s.c.b.c.PropertySourceBootstrapConfiguration [PropertySourceBootstrapConfiguration.java : 109] Located property source: [BootstrapPropertySource {name='bootstrapProperties-bwie-alipay-dev.yml,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-bwie-alipay.yml,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-bwie-alipay,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-application-dev.yml,DEFAULT_GROUP'}] +2024-04-28 22:22:37,822 INFO [main] c.b.a.demo.controller.TestObserver [SpringApplication.java : 639] The following profiles are active: dev +2024-04-28 22:22:38,347 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java : 262] Multiple Spring Data modules found, entering strict repository configuration mode! +2024-04-28 22:22:38,349 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java : 132] Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2024-04-28 22:22:38,367 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java : 201] Finished Spring Data repository scanning in 7 ms. Found 0 Redis repository interfaces. +2024-04-28 22:22:38,578 INFO [main] o.s.cloud.context.scope.GenericScope [GenericScope.java : 283] BeanFactory id=607af674-47b5-30df-82c0-e5f0e04bbd9f +2024-04-28 22:22:38,941 INFO [main] o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [PostProcessorRegistrationDelegate.java : 376] Bean 'org.springframework.cloud.commons.config.CommonsConfigAutoConfiguration' of type [org.springframework.cloud.commons.config.CommonsConfigAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2024-04-28 22:22:38,945 INFO [main] o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [PostProcessorRegistrationDelegate.java : 376] Bean 'org.springframework.cloud.client.loadbalancer.LoadBalancerDefaultMappingsProviderAutoConfiguration' of type [org.springframework.cloud.client.loadbalancer.LoadBalancerDefaultMappingsProviderAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2024-04-28 22:22:38,946 INFO [main] o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [PostProcessorRegistrationDelegate.java : 376] Bean 'loadBalancerClientsDefaultsMappingsProvider' of type [org.springframework.cloud.client.loadbalancer.LoadBalancerDefaultMappingsProviderAutoConfiguration$$Lambda$885/0x0000019ac56d77e8] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2024-04-28 22:22:38,949 INFO [main] o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [PostProcessorRegistrationDelegate.java : 376] Bean 'defaultsBindHandlerAdvisor' of type [org.springframework.cloud.commons.config.DefaultsBindHandlerAdvisor] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2024-04-28 22:22:38,978 INFO [main] o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [PostProcessorRegistrationDelegate.java : 376] Bean 'spring.cloud.sentinel-com.alibaba.cloud.sentinel.SentinelProperties' of type [com.alibaba.cloud.sentinel.SentinelProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2024-04-28 22:22:38,982 INFO [main] o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [PostProcessorRegistrationDelegate.java : 376] Bean 'com.alibaba.cloud.sentinel.custom.SentinelAutoConfiguration' of type [com.alibaba.cloud.sentinel.custom.SentinelAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) +2024-04-28 22:22:39,436 WARN [main] c.b.m.core.metadata.TableInfoHelper [TableInfoHelper.java : 375] Can not find table primary key in Class: "com.bwie.common.domain.BuyOrder". +2024-04-28 22:22:39,442 WARN [main] c.b.m.c.injector.DefaultSqlInjector [DefaultSqlInjector.java : 52] class com.bwie.common.domain.BuyOrder ,Not found @TableId annotation, Cannot use Mybatis-Plus 'xxById' Method. +2024-04-28 22:22:39,501 WARN [main] c.b.m.core.metadata.TableInfoHelper [TableInfoHelper.java : 375] Can not find table primary key in Class: "com.bwie.common.domain.PaymentEntity". +2024-04-28 22:22:39,502 WARN [main] c.b.m.c.injector.DefaultSqlInjector [DefaultSqlInjector.java : 52] class com.bwie.common.domain.PaymentEntity ,Not found @TableId annotation, Cannot use Mybatis-Plus 'xxById' Method. +2024-04-28 22:22:40,635 INFO [main] c.a.c.s.SentinelWebAutoConfiguration [SentinelWebAutoConfiguration.java : 80] [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. +2024-04-28 22:22:42,498 WARN [main] o.s.c.l.c.LoadBalancerCacheAutoConfiguration$LoadBalancerCaffeineWarnLogger [LoadBalancerCacheAutoConfiguration.java : 82] Spring Cloud LoadBalancer is currently working with the default cache. You can switch to using Caffeine cache, by adding it and org.springframework.cache.caffeine.CaffeineCacheManager to the classpath. +2024-04-28 22:22:42,573 INFO [main] c.alibaba.nacos.common.remote.client [RpcClientFactory.java : 80] [RpcClientFactory] create a new rpc client of e410f4c5-45b3-40f0-8768-addeeea528e8 +2024-04-28 22:22:42,574 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [e410f4c5-45b3-40f0-8768-addeeea528e8] RpcClient init label, labels = {module=naming, source=sdk} +2024-04-28 22:22:42,575 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [e410f4c5-45b3-40f0-8768-addeeea528e8] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager +2024-04-28 22:22:42,575 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [e410f4c5-45b3-40f0-8768-addeeea528e8] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService +2024-04-28 22:22:42,575 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [e410f4c5-45b3-40f0-8768-addeeea528e8] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler +2024-04-28 22:22:42,576 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [e410f4c5-45b3-40f0-8768-addeeea528e8] Try to connect to server on start up, server: {serverIp = '124.221.30.134', server main port = 8848} +2024-04-28 22:22:42,722 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [e410f4c5-45b3-40f0-8768-addeeea528e8] Success to connect to server [124.221.30.134:8848] on start up, connectionId = 1714314161817_114.95.172.249_49215 +2024-04-28 22:22:42,723 INFO [com.alibaba.nacos.client.remote.worker] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [e410f4c5-45b3-40f0-8768-addeeea528e8] Notify connected event to listeners. +2024-04-28 22:22:42,723 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [e410f4c5-45b3-40f0-8768-addeeea528e8] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler +2024-04-28 22:22:42,724 INFO [main] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [e410f4c5-45b3-40f0-8768-addeeea528e8] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$728/0x0000019ac5525638 +2024-04-28 22:22:42,775 INFO [main] c.b.a.demo.controller.TestObserver [StartupInfoLogger.java : 61] Started TestObserver in 7.098 seconds (JVM running for 8.104) +2024-04-28 22:22:43,085 WARN [Thread-5] c.a.nacos.common.notify.NotifyCenter [NotifyCenter.java : 136] [NotifyCenter] Start destroying Publisher +2024-04-28 22:22:43,085 WARN [Thread-1] c.a.n.c.http.HttpClientBeanHolder [HttpClientBeanHolder.java : 108] [HttpClientBeanHolder] Start destroying common HttpClient +2024-04-28 22:22:43,085 WARN [Thread-5] c.a.nacos.common.notify.NotifyCenter [NotifyCenter.java : 153] [NotifyCenter] Destruction of the end +2024-04-28 22:22:43,086 WARN [Thread-1] c.a.n.c.http.HttpClientBeanHolder [HttpClientBeanHolder.java : 114] [HttpClientBeanHolder] Destruction of the end +2024-04-28 22:22:43,338 INFO [nacos-grpc-client-executor-5] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [e410f4c5-45b3-40f0-8768-addeeea528e8] Receive server push request, request = NotifySubscriberRequest, requestId = 269 +2024-04-28 22:22:43,341 INFO [nacos-grpc-client-executor-5] c.alibaba.nacos.common.remote.client [LoggerUtils.java : 60] [e410f4c5-45b3-40f0-8768-addeeea528e8] Ack server push request, request = NotifySubscriberRequest, requestId = 269 +2024-04-28 22:22:43,742 INFO [SpringApplicationShutdownHook] c.alibaba.nacos.common.remote.client [RpcClient.java : 454] Shutdown rpc client, set status to shutdown +2024-04-28 22:22:43,743 INFO [SpringApplicationShutdownHook] c.alibaba.nacos.common.remote.client [RpcClient.java : 456] Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@47b479bb[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] +2024-04-28 22:22:43,743 INFO [SpringApplicationShutdownHook] c.alibaba.nacos.common.remote.client [RpcClient.java : 591] Close current connection 1714314161817_114.95.172.249_49215 +2024-04-28 22:22:43,752 INFO [SpringApplicationShutdownHook] c.a.n.c.r.client.grpc.GrpcClient [GrpcClient.java : 85] Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@5792cc77[Running, pool size = 6, active threads = 0, queued tasks = 0, completed tasks = 6] +2024-04-28 22:22:43,755 INFO [SpringApplicationShutdownHook] c.alibaba.druid.pool.DruidDataSource [DruidDataSource.java : 2071] {dataSource-0} closing ...