From 2ace559a6f7e48bbc43378f49d9cd183c56270ed Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=90=8C=E7=8B=BC=E8=93=9D=E5=A4=A9?= Date: Tue, 8 Oct 2024 20:48:51 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0=20sql=E6=96=87=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 18 +- harmonylife_20241008.sql | 228 + logs/app.log | 3877 ++++++++++++++ logs/application.log | 4584 +++++++++++++++++ .../config/GlobalExceptionHandler.java | 4 +- .../harmony/controller/UserController.java | 17 +- .../harmony/domain/dto/ParamUserAdd.java | 22 + .../harmony/mapper/UserMapper.java | 7 + .../harmony/service/UserService.java | 6 + .../harmony/service/impl/AuthServiceImpl.java | 3 + .../harmony/service/impl/UserServiceImpl.java | 61 + src/main/resources/mapper/UserMapper.xml | 12 + 12 files changed, 8831 insertions(+), 8 deletions(-) create mode 100644 harmonylife_20241008.sql create mode 100644 logs/application.log create mode 100644 src/main/java/com/guaiguailang/harmony/domain/dto/ParamUserAdd.java diff --git a/README.md b/README.md index 487bbe9..0b46084 100644 --- a/README.md +++ b/README.md @@ -1,11 +1,14 @@ ## 参考资料 AntDesignPro:https://pro.antdv.com/docs/getting-started + sa-token 文档:https://sa-token.cc/doc.html#/ Knife4j 文档 :https://doc.xiaominfo.com/ 雪花算法 :https://github.com/yitter/idgenerator/tree/master/Java +波市科技文献共享服务平台:https://www.nbsti.net/Public/html/index.html + lambok: ``` @Data 标签,生成getter/setter toString()等方法 @@ -23,4 +26,17 @@ lambok: @Synchronized : 同步方法安全的转化 @Getter(lazy=true) : @Log : 支持各种logger对象,使用时用对应的注解,如:@Log4j -``` \ No newline at end of file +``` + +### 目录结构 + +- config:里面存放的都是配置类 例如 @Configuration 、 @Component 等等 +- controller:里面存放的是接口(术语:存放所有处理HTTP请求的控制器类。这些类通过定义路由和方法来处理前端发送的请求,并返回响应。) +- service:里面存放的是接口对应的服务(术语:定义业务逻辑接口,这些接口定义了业务操作的抽象,与数据访问层(DAO或Repository)解耦) + - impl:里面存放服务的具体实现(术语:这个子目录存放service接口的具体实现。这里通常包含对业务逻辑的具体实现,可能会调用数据访问层的方法来完成数据操作。) +- util:存放工具类,这些类通常包含静态方法,用于执行通用任务,如日期时间处理、加密解密、日志记录等。 +- mapper:mapper接口用于定义数据访问层的方法,这些方法通常直接映射到数据库操作。(映射文件xml) +- domain: 存放与数据库表相对应的实体类(Entity)、数据传输对象(DTO)和视图对象(VO)。 + - dto: 里面的对象一同来接收前端传来的参数(数据传输对象,用于不同层之间传输数据,特别是跨系统或跨模块传输时,可能需要根据需要进行数据封装。) + - entity:实体类,与数据库表结构一一对应,用于ORM映射。 + - vo:视图对象,通常用于返回给前端的数据封装,可以包含多个实体类的属性或仅包含部分实体类的属性。 \ No newline at end of file diff --git a/harmonylife_20241008.sql b/harmonylife_20241008.sql new file mode 100644 index 0000000..8165add --- /dev/null +++ b/harmonylife_20241008.sql @@ -0,0 +1,228 @@ +/* + Navicat Premium Data Transfer + + Source Server : 本地连接 + Source Server Type : MySQL + Source Server Version : 50743 (5.7.43-log) + Source Host : localhost:3306 + Source Schema : harmonylife + + Target Server Type : MySQL + Target Server Version : 50743 (5.7.43-log) + File Encoding : 65001 + + Date: 08/10/2024 20:47:14 +*/ + +SET NAMES utf8mb4; +SET FOREIGN_KEY_CHECKS = 0; + +-- ---------------------------- +-- Table structure for agent_info +-- ---------------------------- +DROP TABLE IF EXISTS `agent_info`; +CREATE TABLE `agent_info` ( + `id` bigint(20) NOT NULL COMMENT 'id', + `merchant_code` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '商户编号', + `userId` int(11) NULL DEFAULT NULL COMMENT '用户id(负责人)', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '商户表' ROW_FORMAT = Dynamic; + +-- ---------------------------- +-- Records of agent_info +-- ---------------------------- + +-- ---------------------------- +-- Table structure for system_action +-- ---------------------------- +DROP TABLE IF EXISTS `system_action`; +CREATE TABLE `system_action` ( + `id` bigint(11) NOT NULL COMMENT '动作id', + `tag` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '动作标签 例如 add', + `describe` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '动作标题 例如 增加', + `default_check` tinyint(4) NULL DEFAULT NULL COMMENT '0 false 1 true', + `status` tinyint(4) NULL DEFAULT NULL, + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '动作表' ROW_FORMAT = Dynamic; + +-- ---------------------------- +-- Records of system_action +-- ---------------------------- +INSERT INTO `system_action` VALUES (1, 'add', '新增', 0, 1); +INSERT INTO `system_action` VALUES (2, 'import', '导入', 0, 1); +INSERT INTO `system_action` VALUES (3, 'get', '详情', 0, 1); +INSERT INTO `system_action` VALUES (4, 'update', '更新', 0, 1); +INSERT INTO `system_action` VALUES (5, 'delete', '删除', 0, 1); +INSERT INTO `system_action` VALUES (6, 'export', '导出', 0, 1); + +-- ---------------------------- +-- Table structure for system_menu +-- ---------------------------- +DROP TABLE IF EXISTS `system_menu`; +CREATE TABLE `system_menu` ( + `id` bigint(11) NOT NULL COMMENT 'id', + `title` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '显示的中文名称', + `key` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT 'key', + `name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '路由名称', + `component` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '组件名称', + `redirect` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '重定向', + `icon` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '图标名称', + `status` tinyint(4) NULL DEFAULT NULL COMMENT '状态 0 未启用 -1 删除 1正常使用', + `parent` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '父级', + `order` int(11) NULL DEFAULT NULL COMMENT '排序,数字越小,越靠前', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci ROW_FORMAT = Dynamic; + +-- ---------------------------- +-- Records of system_menu +-- ---------------------------- +INSERT INTO `system_menu` VALUES (1, '首页', NULL, 'index', 'BasicLayout', '/dashboard/workplace', '', 1, NULL, 1); +INSERT INTO `system_menu` VALUES (2, '仪表盘', 'dashboard', 'dashboard', 'RouteView', NULL, 'dashboard', 1, 'index', 1); +INSERT INTO `system_menu` VALUES (3, '分析页', 'analysis', NULL, NULL, NULL, NULL, NULL, NULL, 1); +INSERT INTO `system_menu` VALUES (4, '系统管理', 'system', 'system', 'PageView', NULL, 'setting', NULL, 'index', 1); +INSERT INTO `system_menu` VALUES (5, '用户管理', 'userList', 'userList', NULL, NULL, NULL, NULL, 'system', 1); +INSERT INTO `system_menu` VALUES (6, '菜单管理', 'menuList', 'menuList', NULL, NULL, NULL, NULL, 'system', 1); + +-- ---------------------------- +-- Table structure for system_permission +-- ---------------------------- +DROP TABLE IF EXISTS `system_permission`; +CREATE TABLE `system_permission` ( + `id` bigint(11) NOT NULL COMMENT '权限id', + `permission_id` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '权限id(文本型)', + `permission_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '权限名称(菜单名称)', + `status` tinyint(4) NULL DEFAULT NULL, + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '权限表' ROW_FORMAT = Dynamic; + +-- ---------------------------- +-- Records of system_permission +-- ---------------------------- +INSERT INTO `system_permission` VALUES (1, 'dashboard', '数据中心', 1); +INSERT INTO `system_permission` VALUES (2, 'exception', '异常管理', 1); +INSERT INTO `system_permission` VALUES (3, 'result', '结果管理', 1); +INSERT INTO `system_permission` VALUES (4, 'profile', '个人信息管理', 1); +INSERT INTO `system_permission` VALUES (5, 'table', '表格管理', 1); +INSERT INTO `system_permission` VALUES (6, 'form', '表单管理', 1); +INSERT INTO `system_permission` VALUES (7, 'order', '订单管理', 1); +INSERT INTO `system_permission` VALUES (8, 'permission', '权限管理', 1); +INSERT INTO `system_permission` VALUES (9, 'role', '个人设置', 1); +INSERT INTO `system_permission` VALUES (10, 'user', '个人中心', 1); +INSERT INTO `system_permission` VALUES (11, 'system', '系统管理', 1); +INSERT INTO `system_permission` VALUES (12, 'otherPage', '其他页面', 1); +INSERT INTO `system_permission` VALUES (13, 'UserList', '用户列表', 1); +INSERT INTO `system_permission` VALUES (14, 'RoleList', '角色列表', 1); +INSERT INTO `system_permission` VALUES (15, 'support', '支持', 1); +INSERT INTO `system_permission` VALUES (16, 'userManage', '用户管理', 1); +INSERT INTO `system_permission` VALUES (17, 'menuManage', '菜单管理', 1); + +-- ---------------------------- +-- Table structure for system_permission_action +-- ---------------------------- +DROP TABLE IF EXISTS `system_permission_action`; +CREATE TABLE `system_permission_action` ( + `id` bigint(11) NOT NULL COMMENT 'id', + `action_tag` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '动作id 文本型', + `permission_id` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '权限id 文本型', + `status` tinyint(4) NULL DEFAULT NULL COMMENT '状态', + `uid` bigint(20) NULL DEFAULT NULL COMMENT '用户id Long', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci ROW_FORMAT = Dynamic; + +-- ---------------------------- +-- Records of system_permission_action +-- ---------------------------- +INSERT INTO `system_permission_action` VALUES (1, 'add', 'role', 1, 1); +INSERT INTO `system_permission_action` VALUES (2, 'import', 'role', 1, 1); +INSERT INTO `system_permission_action` VALUES (3, 'get', 'role', 1, 1); +INSERT INTO `system_permission_action` VALUES (4, 'update', 'role', 1, 1); +INSERT INTO `system_permission_action` VALUES (5, 'delete', 'role', 1, 1); +INSERT INTO `system_permission_action` VALUES (6, 'export', 'role', 1, 1); +INSERT INTO `system_permission_action` VALUES (7, 'add', 'permission', 1, 1); +INSERT INTO `system_permission_action` VALUES (8, 'import', 'permission', 1, 1); +INSERT INTO `system_permission_action` VALUES (9, 'get', 'permission', 1, 1); +INSERT INTO `system_permission_action` VALUES (10, 'update', 'permission', 1, 1); +INSERT INTO `system_permission_action` VALUES (11, 'delete', 'permission', 1, 1); +INSERT INTO `system_permission_action` VALUES (12, 'export', 'permission', 1, 1); + +-- ---------------------------- +-- Table structure for system_role +-- ---------------------------- +DROP TABLE IF EXISTS `system_role`; +CREATE TABLE `system_role` ( + `id` bigint(11) NOT NULL COMMENT '角色id role_id', + `role_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '角色名称', + `role_id` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '角色id(文本型)', + `status` tinyint(4) NULL DEFAULT NULL, + `description` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '描述', + `level` int(11) NULL DEFAULT NULL COMMENT '数字越小 级别越高 顶级权限为1', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '角色表' ROW_FORMAT = Dynamic; + +-- ---------------------------- +-- Records of system_role +-- ---------------------------- +INSERT INTO `system_role` VALUES (1, '超级管理员', 'root', 1, '最高权限', 1); +INSERT INTO `system_role` VALUES (2, '管理员', 'admin', 1, '管理权限', 2); +INSERT INTO `system_role` VALUES (3, '机构', 'agent', 1, '使用权限', 3); + +-- ---------------------------- +-- Table structure for system_role_permission +-- ---------------------------- +DROP TABLE IF EXISTS `system_role_permission`; +CREATE TABLE `system_role_permission` ( + `id` bigint(11) NOT NULL, + `role_id` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '注意是文本型', + `permission_id` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '注意是文本型', + `status` tinyint(4) NULL DEFAULT NULL, + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci ROW_FORMAT = Dynamic; + +-- ---------------------------- +-- Records of system_role_permission +-- ---------------------------- +INSERT INTO `system_role_permission` VALUES (1, 'root', 'dashboard', 1); +INSERT INTO `system_role_permission` VALUES (2, 'root', 'exception', 1); +INSERT INTO `system_role_permission` VALUES (3, 'root', 'result', 1); +INSERT INTO `system_role_permission` VALUES (4, 'root', 'profile', 1); +INSERT INTO `system_role_permission` VALUES (5, 'root', 'table', 1); +INSERT INTO `system_role_permission` VALUES (6, 'root', 'form', 1); +INSERT INTO `system_role_permission` VALUES (7, 'root', 'order', 1); +INSERT INTO `system_role_permission` VALUES (8, 'root', 'permission', 1); +INSERT INTO `system_role_permission` VALUES (9, 'root', 'role', 1); +INSERT INTO `system_role_permission` VALUES (10, 'root', 'user', 1); +INSERT INTO `system_role_permission` VALUES (11, 'root', 'system', 1); +INSERT INTO `system_role_permission` VALUES (12, 'root', 'otherPage', 1); +INSERT INTO `system_role_permission` VALUES (13, 'root', 'UserList', 1); +INSERT INTO `system_role_permission` VALUES (14, 'root', 'RoleList', 1); +INSERT INTO `system_role_permission` VALUES (15, 'root', 'support', 1); +INSERT INTO `system_role_permission` VALUES (16, 'root', 'userManage', 1); + +-- ---------------------------- +-- Table structure for user_info +-- ---------------------------- +DROP TABLE IF EXISTS `user_info`; +CREATE TABLE `user_info` ( + `id` bigint(11) NOT NULL COMMENT '用户uid', + `name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '昵称(用于显示,可以随意更改)', + `username` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '用户名(登录使用的账号)', + `password` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '密码', + `avatar` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '头像图片地址', + `status` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '状态', + `telephone` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '手机号', + `email` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '邮箱', + `create_time` datetime NULL DEFAULT NULL COMMENT '注册时间', + `merchant_code` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '商户编号', + `deleted` tinyint(4) NULL DEFAULT NULL COMMENT '1 已删除 0未删除', + `role_id` varchar(11) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '权限id 文本类型', + `creator_id` int(11) NULL DEFAULT NULL COMMENT '创建者id 0 或者空为自己注册', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci ROW_FORMAT = Dynamic; + +-- ---------------------------- +-- Records of user_info +-- ---------------------------- +INSERT INTO `user_info` VALUES (1, '萌狼蓝天', 'xrilang', 'VomAhgnr1XAkMKzicqYxdCFBx0ooiXBN66Xq9XCWGJTsJgH3uLJVAVGkoZi2n1Ml', 'https://q1.qlogo.cn/g?b=qq&nk=3447902411&s=640', '1', NULL, NULL, '2024-09-21 22:31:02', '1', 0, 'root', NULL); +INSERT INTO `user_info` VALUES (2, '明月新星', 'moon', NULL, 'https://q1.qlogo.cn/g?b=qq&nk=2952458479&s=640', '1', NULL, NULL, '2024-09-24 11:42:44', '1', 0, 'admin', 1); + +SET FOREIGN_KEY_CHECKS = 1; diff --git a/logs/app.log b/logs/app.log index a7689a9..137211d 100644 --- a/logs/app.log +++ b/logs/app.log @@ -7285,3 +7285,3880 @@ Unconditional classes: 2024-09-22 22:42:06.262 [http-nio-8080-exec-1] INFO c.g.h.service.impl.AuthServiceImpl - Token:bf17c7d5-5dfa-4332-bc46-2ccdcc20f2cd 2024-09-22 22:44:08.443 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown initiated... 2024-09-22 22:44:08.448 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown completed. +2024-09-22 22:44:10.553 [main] INFO o.s.boot.SpringApplication - +██╗ ██╗██████╗ ██╗██╗ █████╗ ███╗ ██╗ ██████╗ +╚██╗██╔╝██╔══██╗██║██║ ██╔══██╗████╗ ██║██╔════╝ + ╚███╔╝ ██████╔╝██║██║ ███████║██╔██╗ ██║██║ ███╗ + ██╔██╗ ██╔══██╗██║██║ ██╔══██║██║╚██╗██║██║ ██║ +██╔╝ ██╗██║ ██║██║███████╗██║ ██║██║ ╚████║╚██████╔╝ +╚═╝ ╚═╝╚═╝ ╚═╝╚═╝╚══════╝╚═╝ ╚═╝╚═╝ ╚═══╝ ╚═════╝ + +^_^ 服务启动成功 He Sheng +# 项目名称:harmony-life-server +# 项目版本:1.0.0 +# 框架版本:3.3.4 +# 最后更新于 2024年 9月 25日 + + +2024-09-22 22:44:10.597 [main] INFO c.g.h.HarmonyLifeServerApplication - Starting HarmonyLifeServerApplication using Java 17.0.8 with PID 24344 (C:\Users\xrilang\Desktop\harmony-life\harmony-life-server\harmony-life-server\target\classes started by xrilang in C:\Users\xrilang\Desktop\harmony-life\harmony-life-server\harmony-life-server) +2024-09-22 22:44:10.597 [main] DEBUG c.g.h.HarmonyLifeServerApplication - Running with Spring Boot v3.3.4, Spring v6.1.13 +2024-09-22 22:44:10.598 [main] INFO c.g.h.HarmonyLifeServerApplication - No active profile set, falling back to 1 default profile: "default" +2024-09-22 22:44:11.136 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode +2024-09-22 22:44:11.137 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data JDBC repositories in DEFAULT mode. +2024-09-22 22:44:11.147 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 7 ms. Found 0 JDBC repository interfaces. +2024-09-22 22:44:11.156 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode +2024-09-22 22:44:11.157 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2024-09-22 22:44:11.168 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 5 ms. Found 0 Redis repository interfaces. +2024-09-22 22:44:11.578 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat initialized with port 8080 (http) +2024-09-22 22:44:11.584 [main] INFO o.a.coyote.http11.Http11NioProtocol - Initializing ProtocolHandler ["http-nio-8080"] +2024-09-22 22:44:11.587 [main] INFO o.a.catalina.core.StandardService - Starting service [Tomcat] +2024-09-22 22:44:11.587 [main] INFO o.a.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/10.1.30] +2024-09-22 22:44:11.643 [main] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring embedded WebApplicationContext +2024-09-22 22:44:11.643 [main] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 1016 ms +2024-09-22 22:44:12.280 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Starting... +2024-09-22 22:44:12.372 [main] INFO com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - Added connection com.mysql.cj.jdbc.ConnectionImpl@7438c3d5 +2024-09-22 22:44:12.374 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Start completed. +2024-09-22 22:44:12.484 [main] INFO o.a.coyote.http11.Http11NioProtocol - Starting ProtocolHandler ["http-nio-8080"] +2024-09-22 22:44:12.497 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat started on port 8080 (http) with context path '/' +2024-09-22 22:44:12.504 [main] INFO c.g.h.HarmonyLifeServerApplication - Started HarmonyLifeServerApplication in 2.235 seconds (process running for 2.631) +2024-09-22 22:44:22.715 [http-nio-8080-exec-1] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring DispatcherServlet 'dispatcherServlet' +2024-09-22 22:44:22.715 [http-nio-8080-exec-1] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet' +2024-09-22 22:44:22.716 [http-nio-8080-exec-1] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 1 ms +2024-09-22 22:44:22.789 [http-nio-8080-exec-1] DEBUG c.g.h.m.AuthMapper.getUserByAccount - ==> Preparing: SELECT * from user_info where username=? AND status=1 +2024-09-22 22:44:22.804 [http-nio-8080-exec-1] DEBUG c.g.h.m.AuthMapper.getUserByAccount - ==> Parameters: xrilang(String) +2024-09-22 22:44:22.823 [http-nio-8080-exec-1] DEBUG c.g.h.m.AuthMapper.getUserByAccount - <== Total: 1 +2024-09-22 22:44:22.827 [http-nio-8080-exec-1] INFO c.g.h.service.impl.AuthServiceImpl - 查询到用户UserInfo(id=1, name=萌狼蓝天, username=xrilang, password=VomAhgnr1XAkMKzicqYxdCFBx0ooiXBN66Xq9XCWGJTsJgH3uLJVAVGkoZi2n1Ml, avatar=https://q1.qlogo.cn/g?b=qq&nk=3447902411&s=640, status=1, telephone=null, email=null, createTime=2024-09-22 06:31:02.0, merchantCode=null, deleted=0, roleId=root, creatorId=0) +2024-09-22 22:44:23.202 [http-nio-8080-exec-1] INFO c.g.h.service.impl.AuthServiceImpl - xrilang(xrilang)登录成功,id:1;身份:root +2024-09-22 22:44:23.202 [http-nio-8080-exec-1] INFO c.g.h.service.impl.AuthServiceImpl - Token:bf17c7d5-5dfa-4332-bc46-2ccdcc20f2cd +2024-09-22 22:48:03.880 [http-nio-8080-exec-2] ERROR c.g.h.config.GlobalExceptionHandler - No static resource auth/2step-code. +2024-09-22 22:48:19.947 [http-nio-8080-exec-4] DEBUG c.g.h.m.AuthMapper.getUserByAccount - ==> Preparing: SELECT * from user_info where username=? AND status=1 +2024-09-22 22:48:19.947 [http-nio-8080-exec-4] DEBUG c.g.h.m.AuthMapper.getUserByAccount - ==> Parameters: xrilang(String) +2024-09-22 22:48:19.949 [http-nio-8080-exec-4] DEBUG c.g.h.m.AuthMapper.getUserByAccount - <== Total: 1 +2024-09-22 22:48:19.949 [http-nio-8080-exec-4] INFO c.g.h.service.impl.AuthServiceImpl - 查询到用户UserInfo(id=1, name=萌狼蓝天, username=xrilang, password=VomAhgnr1XAkMKzicqYxdCFBx0ooiXBN66Xq9XCWGJTsJgH3uLJVAVGkoZi2n1Ml, avatar=https://q1.qlogo.cn/g?b=qq&nk=3447902411&s=640, status=1, telephone=null, email=null, createTime=2024-09-22 06:31:02.0, merchantCode=null, deleted=0, roleId=root, creatorId=0) +2024-09-22 22:48:19.952 [http-nio-8080-exec-4] INFO c.g.h.service.impl.AuthServiceImpl - xrilang(xrilang)登录成功,id:1;身份:root +2024-09-22 22:48:19.952 [http-nio-8080-exec-4] INFO c.g.h.service.impl.AuthServiceImpl - Token:bf17c7d5-5dfa-4332-bc46-2ccdcc20f2cd +2024-09-22 22:48:20.206 [http-nio-8080-exec-3] ERROR c.g.h.config.GlobalExceptionHandler - No static resource user/info. +2024-09-22 22:48:20.279 [http-nio-8080-exec-5] ERROR c.g.h.config.GlobalExceptionHandler - No static resource auth/logout. +2024-09-22 22:48:44.386 [http-nio-8080-exec-6] ERROR c.g.h.config.GlobalExceptionHandler - No static resource auth/2step-code. +2024-09-22 22:49:58.139 [http-nio-8080-exec-7] ERROR c.g.h.config.GlobalExceptionHandler - No static resource auth/2step-code. +2024-09-22 22:50:42.792 [http-nio-8080-exec-9] DEBUG c.g.h.m.AuthMapper.getUserByAccount - ==> Preparing: SELECT * from user_info where username=? AND status=1 +2024-09-22 22:50:42.792 [http-nio-8080-exec-9] DEBUG c.g.h.m.AuthMapper.getUserByAccount - ==> Parameters: xrilang(String) +2024-09-22 22:50:42.794 [http-nio-8080-exec-9] DEBUG c.g.h.m.AuthMapper.getUserByAccount - <== Total: 1 +2024-09-22 22:50:42.794 [http-nio-8080-exec-9] INFO c.g.h.service.impl.AuthServiceImpl - 查询到用户UserInfo(id=1, name=萌狼蓝天, username=xrilang, password=VomAhgnr1XAkMKzicqYxdCFBx0ooiXBN66Xq9XCWGJTsJgH3uLJVAVGkoZi2n1Ml, avatar=https://q1.qlogo.cn/g?b=qq&nk=3447902411&s=640, status=1, telephone=null, email=null, createTime=2024-09-22 06:31:02.0, merchantCode=null, deleted=0, roleId=root, creatorId=0) +2024-09-22 22:50:42.798 [http-nio-8080-exec-9] INFO c.g.h.service.impl.AuthServiceImpl - xrilang(xrilang)登录成功,id:1;身份:root +2024-09-22 22:50:42.798 [http-nio-8080-exec-9] INFO c.g.h.service.impl.AuthServiceImpl - Token:bf17c7d5-5dfa-4332-bc46-2ccdcc20f2cd +2024-09-22 22:50:43.071 [http-nio-8080-exec-10] ERROR c.g.h.config.GlobalExceptionHandler - No static resource user/info. +2024-09-22 22:50:43.126 [http-nio-8080-exec-8] ERROR c.g.h.config.GlobalExceptionHandler - No static resource auth/logout. +2024-09-22 23:34:04.042 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown initiated... +2024-09-22 23:34:04.046 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown completed. +2024-09-22 23:34:09.568 [main] INFO o.s.boot.SpringApplication - +██╗ ██╗██████╗ ██╗██╗ █████╗ ███╗ ██╗ ██████╗ +╚██╗██╔╝██╔══██╗██║██║ ██╔══██╗████╗ ██║██╔════╝ + ╚███╔╝ ██████╔╝██║██║ ███████║██╔██╗ ██║██║ ███╗ + ██╔██╗ ██╔══██╗██║██║ ██╔══██║██║╚██╗██║██║ ██║ +██╔╝ ██╗██║ ██║██║███████╗██║ ██║██║ ╚████║╚██████╔╝ +╚═╝ ╚═╝╚═╝ ╚═╝╚═╝╚══════╝╚═╝ ╚═╝╚═╝ ╚═══╝ ╚═════╝ + +^_^ 服务启动成功 He Sheng +# 项目名称:harmony-life-server +# 项目版本:1.0.0 +# 框架版本:3.3.4 +# 最后更新于 2024年 9月 25日 + + +2024-09-22 23:34:09.622 [main] INFO c.g.h.HarmonyLifeServerApplication - Starting HarmonyLifeServerApplication using Java 17.0.8 with PID 31196 (C:\Users\xrilang\Desktop\harmony-life\harmony-life-server\harmony-life-server\target\classes started by xrilang in C:\Users\xrilang\Desktop\harmony-life\harmony-life-server\harmony-life-server) +2024-09-22 23:34:09.622 [main] DEBUG c.g.h.HarmonyLifeServerApplication - Running with Spring Boot v3.3.4, Spring v6.1.13 +2024-09-22 23:34:09.623 [main] INFO c.g.h.HarmonyLifeServerApplication - No active profile set, falling back to 1 default profile: "default" +2024-09-22 23:34:10.303 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode +2024-09-22 23:34:10.304 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data JDBC repositories in DEFAULT mode. +2024-09-22 23:34:10.319 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 9 ms. Found 0 JDBC repository interfaces. +2024-09-22 23:34:10.330 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode +2024-09-22 23:34:10.331 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2024-09-22 23:34:10.345 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 6 ms. Found 0 Redis repository interfaces. +2024-09-22 23:34:10.879 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat initialized with port 8080 (http) +2024-09-22 23:34:10.894 [main] INFO o.a.coyote.http11.Http11NioProtocol - Initializing ProtocolHandler ["http-nio-8080"] +2024-09-22 23:34:10.898 [main] INFO o.a.catalina.core.StandardService - Starting service [Tomcat] +2024-09-22 23:34:10.898 [main] INFO o.a.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/10.1.30] +2024-09-22 23:34:10.974 [main] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring embedded WebApplicationContext +2024-09-22 23:34:10.974 [main] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 1313 ms +2024-09-22 23:34:11.906 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Starting... +2024-09-22 23:34:12.036 [main] INFO com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - Added connection com.mysql.cj.jdbc.ConnectionImpl@69d021c1 +2024-09-22 23:34:12.037 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Start completed. +2024-09-22 23:34:12.175 [main] INFO o.a.coyote.http11.Http11NioProtocol - Starting ProtocolHandler ["http-nio-8080"] +2024-09-22 23:34:12.190 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat started on port 8080 (http) with context path '/' +2024-09-22 23:34:12.198 [main] INFO c.g.h.HarmonyLifeServerApplication - Started HarmonyLifeServerApplication in 2.986 seconds (process running for 3.535) +2024-09-22 23:35:25.595 [http-nio-8080-exec-1] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring DispatcherServlet 'dispatcherServlet' +2024-09-22 23:35:25.595 [http-nio-8080-exec-1] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet' +2024-09-22 23:35:25.597 [http-nio-8080-exec-1] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 2 ms +2024-09-22 23:35:25.697 [http-nio-8080-exec-1] DEBUG c.g.h.m.UserMapper.getUserByAccount - ==> Preparing: SELECT * from user_info where username=? AND status=1 +2024-09-22 23:35:25.717 [http-nio-8080-exec-1] DEBUG c.g.h.m.UserMapper.getUserByAccount - ==> Parameters: xrilang(String) +2024-09-22 23:35:25.744 [http-nio-8080-exec-1] DEBUG c.g.h.m.UserMapper.getUserByAccount - <== Total: 1 +2024-09-22 23:35:25.748 [http-nio-8080-exec-1] INFO c.g.h.service.impl.AuthServiceImpl - 查询到用户UserInfo(id=1, name=萌狼蓝天, username=xrilang, password=VomAhgnr1XAkMKzicqYxdCFBx0ooiXBN66Xq9XCWGJTsJgH3uLJVAVGkoZi2n1Ml, avatar=https://q1.qlogo.cn/g?b=qq&nk=3447902411&s=640, status=1, telephone=null, email=null, createTime=2024-09-22 06:31:02.0, merchantCode=null, deleted=0, roleId=root, creatorId=0) +2024-09-22 23:35:26.215 [http-nio-8080-exec-1] INFO c.g.h.service.impl.AuthServiceImpl - xrilang(xrilang)登录成功,id:1;身份:root +2024-09-22 23:35:26.215 [http-nio-8080-exec-1] INFO c.g.h.service.impl.AuthServiceImpl - Token:bf17c7d5-5dfa-4332-bc46-2ccdcc20f2cd +2024-09-22 23:35:26.279 [http-nio-8080-exec-2] ERROR c.g.h.config.GlobalExceptionHandler - class java.lang.String cannot be cast to class java.lang.Long (java.lang.String and java.lang.Long are in module java.base of loader 'bootstrap') +2024-09-22 23:35:26.623 [http-nio-8080-exec-3] ERROR c.g.h.config.GlobalExceptionHandler - Request method 'POST' is not supported +2024-09-22 23:36:25.557 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown initiated... +2024-09-22 23:36:25.572 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown completed. +2024-09-22 23:36:34.607 [main] INFO o.s.boot.SpringApplication - +██╗ ██╗██████╗ ██╗██╗ █████╗ ███╗ ██╗ ██████╗ +╚██╗██╔╝██╔══██╗██║██║ ██╔══██╗████╗ ██║██╔════╝ + ╚███╔╝ ██████╔╝██║██║ ███████║██╔██╗ ██║██║ ███╗ + ██╔██╗ ██╔══██╗██║██║ ██╔══██║██║╚██╗██║██║ ██║ +██╔╝ ██╗██║ ██║██║███████╗██║ ██║██║ ╚████║╚██████╔╝ +╚═╝ ╚═╝╚═╝ ╚═╝╚═╝╚══════╝╚═╝ ╚═╝╚═╝ ╚═══╝ ╚═════╝ + +^_^ 服务启动成功 He Sheng +# 项目名称:harmony-life-server +# 项目版本:1.0.0 +# 框架版本:3.3.4 +# 最后更新于 2024年 9月 25日 + + +2024-09-22 23:36:34.659 [main] INFO c.g.h.HarmonyLifeServerApplication - Starting HarmonyLifeServerApplication using Java 17.0.8 with PID 31360 (C:\Users\xrilang\Desktop\harmony-life\harmony-life-server\harmony-life-server\target\classes started by xrilang in C:\Users\xrilang\Desktop\harmony-life\harmony-life-server\harmony-life-server) +2024-09-22 23:36:34.660 [main] DEBUG c.g.h.HarmonyLifeServerApplication - Running with Spring Boot v3.3.4, Spring v6.1.13 +2024-09-22 23:36:34.661 [main] INFO c.g.h.HarmonyLifeServerApplication - No active profile set, falling back to 1 default profile: "default" +2024-09-22 23:36:35.251 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode +2024-09-22 23:36:35.252 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data JDBC repositories in DEFAULT mode. +2024-09-22 23:36:35.263 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 8 ms. Found 0 JDBC repository interfaces. +2024-09-22 23:36:35.274 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode +2024-09-22 23:36:35.275 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2024-09-22 23:36:35.292 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 8 ms. Found 0 Redis repository interfaces. +2024-09-22 23:36:35.765 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat initialized with port 8080 (http) +2024-09-22 23:36:35.776 [main] INFO o.a.coyote.http11.Http11NioProtocol - Initializing ProtocolHandler ["http-nio-8080"] +2024-09-22 23:36:35.778 [main] INFO o.a.catalina.core.StandardService - Starting service [Tomcat] +2024-09-22 23:36:35.779 [main] INFO o.a.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/10.1.30] +2024-09-22 23:36:35.841 [main] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring embedded WebApplicationContext +2024-09-22 23:36:35.841 [main] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 1146 ms +2024-09-22 23:36:36.629 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Starting... +2024-09-22 23:36:36.729 [main] INFO com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - Added connection com.mysql.cj.jdbc.ConnectionImpl@4d0abb23 +2024-09-22 23:36:36.731 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Start completed. +2024-09-22 23:36:36.861 [main] INFO o.a.coyote.http11.Http11NioProtocol - Starting ProtocolHandler ["http-nio-8080"] +2024-09-22 23:36:36.875 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat started on port 8080 (http) with context path '/' +2024-09-22 23:36:36.881 [main] INFO c.g.h.HarmonyLifeServerApplication - Started HarmonyLifeServerApplication in 2.6 seconds (process running for 3.076) +2024-09-22 23:37:03.799 [http-nio-8080-exec-1] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring DispatcherServlet 'dispatcherServlet' +2024-09-22 23:37:03.800 [http-nio-8080-exec-1] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet' +2024-09-22 23:37:03.802 [http-nio-8080-exec-1] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 1 ms +2024-09-22 23:37:03.994 [http-nio-8080-exec-1] DEBUG c.g.h.m.UserMapper.getUserByAccount - ==> Preparing: SELECT * from user_info where username=? AND status=1 +2024-09-22 23:37:04.035 [http-nio-8080-exec-1] DEBUG c.g.h.m.UserMapper.getUserByAccount - ==> Parameters: xrilang(String) +2024-09-22 23:37:04.083 [http-nio-8080-exec-1] DEBUG c.g.h.m.UserMapper.getUserByAccount - <== Total: 1 +2024-09-22 23:37:04.093 [http-nio-8080-exec-1] INFO c.g.h.service.impl.AuthServiceImpl - 查询到用户UserInfo(id=1, name=萌狼蓝天, username=xrilang, password=VomAhgnr1XAkMKzicqYxdCFBx0ooiXBN66Xq9XCWGJTsJgH3uLJVAVGkoZi2n1Ml, avatar=https://q1.qlogo.cn/g?b=qq&nk=3447902411&s=640, status=1, telephone=null, email=null, createTime=2024-09-22 06:31:02.0, merchantCode=null, deleted=0, roleId=root, creatorId=0) +2024-09-22 23:37:05.045 [http-nio-8080-exec-1] INFO c.g.h.service.impl.AuthServiceImpl - xrilang(xrilang)登录成功,id:1;身份:root +2024-09-22 23:37:05.046 [http-nio-8080-exec-1] INFO c.g.h.service.impl.AuthServiceImpl - Token:bf17c7d5-5dfa-4332-bc46-2ccdcc20f2cd +2024-09-22 23:37:05.103 [http-nio-8080-exec-3] ERROR c.g.h.config.GlobalExceptionHandler - class java.lang.String cannot be cast to class java.lang.Long (java.lang.String and java.lang.Long are in module java.base of loader 'bootstrap') +2024-09-22 23:40:03.446 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown initiated... +2024-09-22 23:40:03.454 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown completed. +2024-09-22 23:40:07.648 [main] INFO o.s.boot.SpringApplication - +██╗ ██╗██████╗ ██╗██╗ █████╗ ███╗ ██╗ ██████╗ +╚██╗██╔╝██╔══██╗██║██║ ██╔══██╗████╗ ██║██╔════╝ + ╚███╔╝ ██████╔╝██║██║ ███████║██╔██╗ ██║██║ ███╗ + ██╔██╗ ██╔══██╗██║██║ ██╔══██║██║╚██╗██║██║ ██║ +██╔╝ ██╗██║ ██║██║███████╗██║ ██║██║ ╚████║╚██████╔╝ +╚═╝ ╚═╝╚═╝ ╚═╝╚═╝╚══════╝╚═╝ ╚═╝╚═╝ ╚═══╝ ╚═════╝ + +^_^ 服务启动成功 He Sheng +# 项目名称:harmony-life-server +# 项目版本:1.0.0 +# 框架版本:3.3.4 +# 最后更新于 2024年 9月 25日 + + +2024-09-22 23:40:07.698 [main] INFO c.g.h.HarmonyLifeServerApplication - Starting HarmonyLifeServerApplication using Java 17.0.8 with PID 25536 (C:\Users\xrilang\Desktop\harmony-life\harmony-life-server\harmony-life-server\target\classes started by xrilang in C:\Users\xrilang\Desktop\harmony-life\harmony-life-server\harmony-life-server) +2024-09-22 23:40:07.698 [main] DEBUG c.g.h.HarmonyLifeServerApplication - Running with Spring Boot v3.3.4, Spring v6.1.13 +2024-09-22 23:40:07.699 [main] INFO c.g.h.HarmonyLifeServerApplication - No active profile set, falling back to 1 default profile: "default" +2024-09-22 23:40:08.356 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode +2024-09-22 23:40:08.357 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data JDBC repositories in DEFAULT mode. +2024-09-22 23:40:08.371 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 10 ms. Found 0 JDBC repository interfaces. +2024-09-22 23:40:08.382 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode +2024-09-22 23:40:08.383 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2024-09-22 23:40:08.400 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 7 ms. Found 0 Redis repository interfaces. +2024-09-22 23:40:08.880 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat initialized with port 8080 (http) +2024-09-22 23:40:08.889 [main] INFO o.a.coyote.http11.Http11NioProtocol - Initializing ProtocolHandler ["http-nio-8080"] +2024-09-22 23:40:08.891 [main] INFO o.a.catalina.core.StandardService - Starting service [Tomcat] +2024-09-22 23:40:08.891 [main] INFO o.a.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/10.1.30] +2024-09-22 23:40:08.958 [main] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring embedded WebApplicationContext +2024-09-22 23:40:08.958 [main] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 1226 ms +2024-09-22 23:40:09.763 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Starting... +2024-09-22 23:40:09.888 [main] INFO com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - Added connection com.mysql.cj.jdbc.ConnectionImpl@76d1f6ea +2024-09-22 23:40:09.889 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Start completed. +2024-09-22 23:40:10.023 [main] INFO o.a.coyote.http11.Http11NioProtocol - Starting ProtocolHandler ["http-nio-8080"] +2024-09-22 23:40:10.040 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat started on port 8080 (http) with context path '/' +2024-09-22 23:40:10.048 [main] INFO c.g.h.HarmonyLifeServerApplication - Started HarmonyLifeServerApplication in 2.733 seconds (process running for 3.221) +2024-09-22 23:40:20.335 [http-nio-8080-exec-1] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring DispatcherServlet 'dispatcherServlet' +2024-09-22 23:40:20.336 [http-nio-8080-exec-1] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet' +2024-09-22 23:40:20.337 [http-nio-8080-exec-1] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 1 ms +2024-09-22 23:40:20.438 [http-nio-8080-exec-1] DEBUG c.g.h.m.UserMapper.getUserByAccount - ==> Preparing: SELECT * from user_info where username=? AND status=1 +2024-09-22 23:40:20.457 [http-nio-8080-exec-1] DEBUG c.g.h.m.UserMapper.getUserByAccount - ==> Parameters: xrilang(String) +2024-09-22 23:40:20.480 [http-nio-8080-exec-1] DEBUG c.g.h.m.UserMapper.getUserByAccount - <== Total: 1 +2024-09-22 23:40:20.486 [http-nio-8080-exec-1] INFO c.g.h.service.impl.AuthServiceImpl - 查询到用户UserInfo(id=1, name=萌狼蓝天, username=xrilang, password=VomAhgnr1XAkMKzicqYxdCFBx0ooiXBN66Xq9XCWGJTsJgH3uLJVAVGkoZi2n1Ml, avatar=https://q1.qlogo.cn/g?b=qq&nk=3447902411&s=640, status=1, telephone=null, email=null, createTime=2024-09-22 06:31:02.0, merchantCode=null, deleted=0, roleId=root, creatorId=0) +2024-09-22 23:40:20.898 [http-nio-8080-exec-1] INFO c.g.h.service.impl.AuthServiceImpl - xrilang(xrilang)登录成功,id:1;身份:root +2024-09-22 23:40:20.899 [http-nio-8080-exec-1] INFO c.g.h.service.impl.AuthServiceImpl - Token:ff77e1e6-80a8-4c9a-9f24-7eb13020c1db +2024-09-22 23:40:20.944 [http-nio-8080-exec-2] INFO c.g.h.service.impl.UserServiceImpl - 查询用户1的用户信息 +2024-09-22 23:40:20.946 [http-nio-8080-exec-2] ERROR c.g.h.config.GlobalExceptionHandler - class java.lang.String cannot be cast to class java.lang.Long (java.lang.String and java.lang.Long are in module java.base of loader 'bootstrap') +2024-09-22 23:41:07.023 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown initiated... +2024-09-22 23:41:07.028 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown completed. +2024-09-22 23:41:11.179 [main] INFO o.s.boot.SpringApplication - +██╗ ██╗██████╗ ██╗██╗ █████╗ ███╗ ██╗ ██████╗ +╚██╗██╔╝██╔══██╗██║██║ ██╔══██╗████╗ ██║██╔════╝ + ╚███╔╝ ██████╔╝██║██║ ███████║██╔██╗ ██║██║ ███╗ + ██╔██╗ ██╔══██╗██║██║ ██╔══██║██║╚██╗██║██║ ██║ +██╔╝ ██╗██║ ██║██║███████╗██║ ██║██║ ╚████║╚██████╔╝ +╚═╝ ╚═╝╚═╝ ╚═╝╚═╝╚══════╝╚═╝ ╚═╝╚═╝ ╚═══╝ ╚═════╝ + +^_^ 服务启动成功 He Sheng +# 项目名称:harmony-life-server +# 项目版本:1.0.0 +# 框架版本:3.3.4 +# 最后更新于 2024年 9月 25日 + + +2024-09-22 23:41:11.228 [main] INFO c.g.h.HarmonyLifeServerApplication - Starting HarmonyLifeServerApplication using Java 17.0.8 with PID 30900 (C:\Users\xrilang\Desktop\harmony-life\harmony-life-server\harmony-life-server\target\classes started by xrilang in C:\Users\xrilang\Desktop\harmony-life\harmony-life-server\harmony-life-server) +2024-09-22 23:41:11.229 [main] DEBUG c.g.h.HarmonyLifeServerApplication - Running with Spring Boot v3.3.4, Spring v6.1.13 +2024-09-22 23:41:11.229 [main] INFO c.g.h.HarmonyLifeServerApplication - No active profile set, falling back to 1 default profile: "default" +2024-09-22 23:41:11.849 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode +2024-09-22 23:41:11.850 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data JDBC repositories in DEFAULT mode. +2024-09-22 23:41:11.861 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 8 ms. Found 0 JDBC repository interfaces. +2024-09-22 23:41:11.872 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode +2024-09-22 23:41:11.873 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2024-09-22 23:41:11.889 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 6 ms. Found 0 Redis repository interfaces. +2024-09-22 23:41:12.388 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat initialized with port 8080 (http) +2024-09-22 23:41:12.395 [main] INFO o.a.coyote.http11.Http11NioProtocol - Initializing ProtocolHandler ["http-nio-8080"] +2024-09-22 23:41:12.406 [main] INFO o.a.catalina.core.StandardService - Starting service [Tomcat] +2024-09-22 23:41:12.406 [main] INFO o.a.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/10.1.30] +2024-09-22 23:41:12.481 [main] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring embedded WebApplicationContext +2024-09-22 23:41:12.481 [main] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 1220 ms +2024-09-22 23:41:13.291 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Starting... +2024-09-22 23:41:13.406 [main] INFO com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - Added connection com.mysql.cj.jdbc.ConnectionImpl@69d021c1 +2024-09-22 23:41:13.407 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Start completed. +2024-09-22 23:41:13.541 [main] INFO o.a.coyote.http11.Http11NioProtocol - Starting ProtocolHandler ["http-nio-8080"] +2024-09-22 23:41:13.556 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat started on port 8080 (http) with context path '/' +2024-09-22 23:41:13.564 [main] INFO c.g.h.HarmonyLifeServerApplication - Started HarmonyLifeServerApplication in 2.715 seconds (process running for 3.188) +2024-09-22 23:41:19.189 [http-nio-8080-exec-1] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring DispatcherServlet 'dispatcherServlet' +2024-09-22 23:41:19.189 [http-nio-8080-exec-1] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet' +2024-09-22 23:41:19.191 [http-nio-8080-exec-1] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 2 ms +2024-09-22 23:41:19.292 [http-nio-8080-exec-1] DEBUG c.g.h.m.UserMapper.getUserByAccount - ==> Preparing: SELECT * from user_info where username=? AND status=1 +2024-09-22 23:41:19.311 [http-nio-8080-exec-1] DEBUG c.g.h.m.UserMapper.getUserByAccount - ==> Parameters: xrilang(String) +2024-09-22 23:41:19.342 [http-nio-8080-exec-1] DEBUG c.g.h.m.UserMapper.getUserByAccount - <== Total: 1 +2024-09-22 23:41:19.347 [http-nio-8080-exec-1] INFO c.g.h.service.impl.AuthServiceImpl - 查询到用户UserInfo(id=1, name=萌狼蓝天, username=xrilang, password=VomAhgnr1XAkMKzicqYxdCFBx0ooiXBN66Xq9XCWGJTsJgH3uLJVAVGkoZi2n1Ml, avatar=https://q1.qlogo.cn/g?b=qq&nk=3447902411&s=640, status=1, telephone=null, email=null, createTime=2024-09-22 06:31:02.0, merchantCode=null, deleted=0, roleId=root, creatorId=0) +2024-09-22 23:41:19.734 [http-nio-8080-exec-1] INFO c.g.h.service.impl.AuthServiceImpl - xrilang(xrilang)登录成功,id:1;身份:root +2024-09-22 23:41:19.735 [http-nio-8080-exec-1] INFO c.g.h.service.impl.AuthServiceImpl - Token:24371fa4-8e7c-40a0-8947-71e93fe070f0 +2024-09-22 23:41:19.779 [http-nio-8080-exec-2] INFO c.g.h.service.impl.UserServiceImpl - 查询用户1的用户信息 +2024-09-22 23:41:19.781 [http-nio-8080-exec-2] ERROR c.g.h.config.GlobalExceptionHandler - class java.lang.String cannot be cast to class java.lang.Long (java.lang.String and java.lang.Long are in module java.base of loader 'bootstrap') +2024-09-22 23:43:22.276 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown initiated... +2024-09-22 23:43:22.283 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown completed. +2024-09-22 23:43:26.607 [main] INFO o.s.boot.SpringApplication - +██╗ ██╗██████╗ ██╗██╗ █████╗ ███╗ ██╗ ██████╗ +╚██╗██╔╝██╔══██╗██║██║ ██╔══██╗████╗ ██║██╔════╝ + ╚███╔╝ ██████╔╝██║██║ ███████║██╔██╗ ██║██║ ███╗ + ██╔██╗ ██╔══██╗██║██║ ██╔══██║██║╚██╗██║██║ ██║ +██╔╝ ██╗██║ ██║██║███████╗██║ ██║██║ ╚████║╚██████╔╝ +╚═╝ ╚═╝╚═╝ ╚═╝╚═╝╚══════╝╚═╝ ╚═╝╚═╝ ╚═══╝ ╚═════╝ + +^_^ 服务启动成功 He Sheng +# 项目名称:harmony-life-server +# 项目版本:1.0.0 +# 框架版本:3.3.4 +# 最后更新于 2024年 9月 25日 + + +2024-09-22 23:43:26.659 [main] INFO c.g.h.HarmonyLifeServerApplication - Starting HarmonyLifeServerApplication using Java 17.0.8 with PID 35576 (C:\Users\xrilang\Desktop\harmony-life\harmony-life-server\harmony-life-server\target\classes started by xrilang in C:\Users\xrilang\Desktop\harmony-life\harmony-life-server\harmony-life-server) +2024-09-22 23:43:26.660 [main] DEBUG c.g.h.HarmonyLifeServerApplication - Running with Spring Boot v3.3.4, Spring v6.1.13 +2024-09-22 23:43:26.661 [main] INFO c.g.h.HarmonyLifeServerApplication - No active profile set, falling back to 1 default profile: "default" +2024-09-22 23:43:27.308 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode +2024-09-22 23:43:27.309 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data JDBC repositories in DEFAULT mode. +2024-09-22 23:43:27.321 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 9 ms. Found 0 JDBC repository interfaces. +2024-09-22 23:43:27.331 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode +2024-09-22 23:43:27.332 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2024-09-22 23:43:27.348 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 6 ms. Found 0 Redis repository interfaces. +2024-09-22 23:43:27.831 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat initialized with port 8080 (http) +2024-09-22 23:43:27.841 [main] INFO o.a.coyote.http11.Http11NioProtocol - Initializing ProtocolHandler ["http-nio-8080"] +2024-09-22 23:43:27.843 [main] INFO o.a.catalina.core.StandardService - Starting service [Tomcat] +2024-09-22 23:43:27.844 [main] INFO o.a.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/10.1.30] +2024-09-22 23:43:27.911 [main] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring embedded WebApplicationContext +2024-09-22 23:43:27.911 [main] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 1217 ms +2024-09-22 23:43:28.680 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Starting... +2024-09-22 23:43:28.794 [main] INFO com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - Added connection com.mysql.cj.jdbc.ConnectionImpl@69d021c1 +2024-09-22 23:43:28.796 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Start completed. +2024-09-22 23:43:28.921 [main] INFO o.a.coyote.http11.Http11NioProtocol - Starting ProtocolHandler ["http-nio-8080"] +2024-09-22 23:43:28.936 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat started on port 8080 (http) with context path '/' +2024-09-22 23:43:28.944 [main] INFO c.g.h.HarmonyLifeServerApplication - Started HarmonyLifeServerApplication in 2.666 seconds (process running for 3.153) +2024-09-22 23:43:40.656 [http-nio-8080-exec-1] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring DispatcherServlet 'dispatcherServlet' +2024-09-22 23:43:40.657 [http-nio-8080-exec-1] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet' +2024-09-22 23:43:40.658 [http-nio-8080-exec-1] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 0 ms +2024-09-22 23:43:40.747 [http-nio-8080-exec-1] DEBUG c.g.h.m.UserMapper.getUserByAccount - ==> Preparing: SELECT * from user_info where username=? AND status=1 +2024-09-22 23:43:40.765 [http-nio-8080-exec-1] DEBUG c.g.h.m.UserMapper.getUserByAccount - ==> Parameters: xrilang(String) +2024-09-22 23:43:40.784 [http-nio-8080-exec-1] DEBUG c.g.h.m.UserMapper.getUserByAccount - <== Total: 1 +2024-09-22 23:43:40.789 [http-nio-8080-exec-1] INFO c.g.h.service.impl.AuthServiceImpl - 查询到用户UserInfo(id=1, name=萌狼蓝天, username=xrilang, password=VomAhgnr1XAkMKzicqYxdCFBx0ooiXBN66Xq9XCWGJTsJgH3uLJVAVGkoZi2n1Ml, avatar=https://q1.qlogo.cn/g?b=qq&nk=3447902411&s=640, status=1, telephone=null, email=null, createTime=2024-09-22 06:31:02.0, merchantCode=null, deleted=0, roleId=root, creatorId=0) +2024-09-22 23:43:41.181 [http-nio-8080-exec-1] INFO c.g.h.service.impl.AuthServiceImpl - xrilang(xrilang)登录成功,id:1;身份:root +2024-09-22 23:43:41.182 [http-nio-8080-exec-1] INFO c.g.h.service.impl.AuthServiceImpl - Token:b33dbdbd-8bb0-497d-8b54-293bbafbe1f5 +2024-09-22 23:43:41.251 [http-nio-8080-exec-8] INFO c.g.h.service.impl.UserServiceImpl - 查询用户1的用户信息 +2024-09-22 23:43:41.253 [http-nio-8080-exec-8] DEBUG c.g.h.mapper.UserMapper.getUserById - ==> Preparing: SELECT * from user_info where id=? AND status=1 +2024-09-22 23:43:41.253 [http-nio-8080-exec-8] DEBUG c.g.h.mapper.UserMapper.getUserById - ==> Parameters: 1(Long) +2024-09-22 23:43:41.257 [http-nio-8080-exec-8] DEBUG c.g.h.mapper.UserMapper.getUserById - <== Total: 1 +2024-09-22 23:43:41.257 [http-nio-8080-exec-8] INFO c.g.h.service.impl.UserServiceImpl - 查询信息完毕,开始构建返回值对象 +2024-09-22 23:44:25.923 [http-nio-8080-exec-4] DEBUG c.g.h.m.UserMapper.getUserByAccount - ==> Preparing: SELECT * from user_info where username=? AND status=1 +2024-09-22 23:44:25.924 [http-nio-8080-exec-4] DEBUG c.g.h.m.UserMapper.getUserByAccount - ==> Parameters: xrilang(String) +2024-09-22 23:44:25.925 [http-nio-8080-exec-4] DEBUG c.g.h.m.UserMapper.getUserByAccount - <== Total: 1 +2024-09-22 23:44:25.926 [http-nio-8080-exec-4] INFO c.g.h.service.impl.AuthServiceImpl - 查询到用户UserInfo(id=1, name=萌狼蓝天, username=xrilang, password=VomAhgnr1XAkMKzicqYxdCFBx0ooiXBN66Xq9XCWGJTsJgH3uLJVAVGkoZi2n1Ml, avatar=https://q1.qlogo.cn/g?b=qq&nk=3447902411&s=640, status=1, telephone=null, email=null, createTime=2024-09-22 06:31:02.0, merchantCode=null, deleted=0, roleId=root, creatorId=0) +2024-09-22 23:44:25.934 [http-nio-8080-exec-4] INFO c.g.h.service.impl.AuthServiceImpl - xrilang(xrilang)登录成功,id:1;身份:root +2024-09-22 23:44:25.934 [http-nio-8080-exec-4] INFO c.g.h.service.impl.AuthServiceImpl - Token:e8b85a38-e04c-4ba6-afd3-67d983ecab66 +2024-09-22 23:44:26.189 [http-nio-8080-exec-5] INFO c.g.h.service.impl.UserServiceImpl - 查询用户1的用户信息 +2024-09-22 23:44:26.191 [http-nio-8080-exec-5] DEBUG c.g.h.mapper.UserMapper.getUserById - ==> Preparing: SELECT * from user_info where id=? AND status=1 +2024-09-22 23:44:26.192 [http-nio-8080-exec-5] DEBUG c.g.h.mapper.UserMapper.getUserById - ==> Parameters: 1(Long) +2024-09-22 23:44:26.194 [http-nio-8080-exec-5] DEBUG c.g.h.mapper.UserMapper.getUserById - <== Total: 1 +2024-09-22 23:44:26.194 [http-nio-8080-exec-5] INFO c.g.h.service.impl.UserServiceImpl - 查询信息完毕,开始构建返回值对象 +2024-09-22 23:47:22.144 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown initiated... +2024-09-22 23:47:22.149 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown completed. +2024-09-23 09:10:09.821 [main] INFO o.s.boot.SpringApplication - +██╗ ██╗██████╗ ██╗██╗ █████╗ ███╗ ██╗ ██████╗ +╚██╗██╔╝██╔══██╗██║██║ ██╔══██╗████╗ ██║██╔════╝ + ╚███╔╝ ██████╔╝██║██║ ███████║██╔██╗ ██║██║ ███╗ + ██╔██╗ ██╔══██╗██║██║ ██╔══██║██║╚██╗██║██║ ██║ +██╔╝ ██╗██║ ██║██║███████╗██║ ██║██║ ╚████║╚██████╔╝ +╚═╝ ╚═╝╚═╝ ╚═╝╚═╝╚══════╝╚═╝ ╚═╝╚═╝ ╚═══╝ ╚═════╝ + +^_^ 服务启动成功 He Sheng +# 项目名称:harmony-life-server +# 项目版本:1.0.0 +# 框架版本:3.3.4 +# 最后更新于 2024年 9月 25日 + + +2024-09-23 09:10:09.874 [main] INFO c.g.h.HarmonyLifeServerApplication - Starting HarmonyLifeServerApplication using Java 17.0.8 with PID 7912 (C:\Users\xrilang\Desktop\harmony-life\harmony-life-server\harmony-life-server\target\classes started by xrilang in C:\Users\xrilang\Desktop\harmony-life\harmony-life-server\harmony-life-server) +2024-09-23 09:10:09.876 [main] DEBUG c.g.h.HarmonyLifeServerApplication - Running with Spring Boot v3.3.4, Spring v6.1.13 +2024-09-23 09:10:09.877 [main] INFO c.g.h.HarmonyLifeServerApplication - No active profile set, falling back to 1 default profile: "default" +2024-09-23 09:10:10.589 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode +2024-09-23 09:10:10.590 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data JDBC repositories in DEFAULT mode. +2024-09-23 09:10:10.607 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 12 ms. Found 0 JDBC repository interfaces. +2024-09-23 09:10:10.619 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode +2024-09-23 09:10:10.620 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2024-09-23 09:10:10.640 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 10 ms. Found 0 Redis repository interfaces. +2024-09-23 09:10:11.192 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat initialized with port 8080 (http) +2024-09-23 09:10:11.202 [main] INFO o.a.coyote.http11.Http11NioProtocol - Initializing ProtocolHandler ["http-nio-8080"] +2024-09-23 09:10:11.206 [main] INFO o.a.catalina.core.StandardService - Starting service [Tomcat] +2024-09-23 09:10:11.206 [main] INFO o.a.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/10.1.30] +2024-09-23 09:10:11.296 [main] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring embedded WebApplicationContext +2024-09-23 09:10:11.297 [main] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 1387 ms +2024-09-23 09:10:12.107 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Starting... +2024-09-23 09:10:12.229 [main] INFO com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - Added connection com.mysql.cj.jdbc.ConnectionImpl@fceab5d +2024-09-23 09:10:12.230 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Start completed. +2024-09-23 09:10:12.355 [main] INFO o.a.coyote.http11.Http11NioProtocol - Starting ProtocolHandler ["http-nio-8080"] +2024-09-23 09:10:12.373 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat started on port 8080 (http) with context path '/' +2024-09-23 09:10:12.379 [main] INFO c.g.h.HarmonyLifeServerApplication - Started HarmonyLifeServerApplication in 2.912 seconds (process running for 3.565) +2024-09-23 10:07:24.128 [main] INFO o.s.boot.SpringApplication - +██╗ ██╗██████╗ ██╗██╗ █████╗ ███╗ ██╗ ██████╗ +╚██╗██╔╝██╔══██╗██║██║ ██╔══██╗████╗ ██║██╔════╝ + ╚███╔╝ ██████╔╝██║██║ ███████║██╔██╗ ██║██║ ███╗ + ██╔██╗ ██╔══██╗██║██║ ██╔══██║██║╚██╗██║██║ ██║ +██╔╝ ██╗██║ ██║██║███████╗██║ ██║██║ ╚████║╚██████╔╝ +╚═╝ ╚═╝╚═╝ ╚═╝╚═╝╚══════╝╚═╝ ╚═╝╚═╝ ╚═══╝ ╚═════╝ + +^_^ 服务启动成功 He Sheng +# 项目名称:harmony-life-server +# 项目版本:1.0.0 +# 框架版本:3.3.4 +# 最后更新于 2024年 9月 25日 + + +2024-09-23 10:07:24.161 [main] INFO c.g.h.HarmonyLifeServerApplicationTests - Starting HarmonyLifeServerApplicationTests using Java 17.0.8 with PID 5248 (started by xrilang in C:\Users\xrilang\Desktop\harmony-life\harmony-life-server\harmony-life-server) +2024-09-23 10:07:24.161 [main] DEBUG c.g.h.HarmonyLifeServerApplicationTests - Running with Spring Boot v3.3.4, Spring v6.1.13 +2024-09-23 10:07:24.162 [main] INFO c.g.h.HarmonyLifeServerApplicationTests - No active profile set, falling back to 1 default profile: "default" +2024-09-23 10:07:25.034 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode +2024-09-23 10:07:25.035 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data JDBC repositories in DEFAULT mode. +2024-09-23 10:07:25.050 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 10 ms. Found 0 JDBC repository interfaces. +2024-09-23 10:07:25.065 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode +2024-09-23 10:07:25.066 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2024-09-23 10:07:25.081 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 5 ms. Found 0 Redis repository interfaces. +2024-09-23 10:07:28.146 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Starting... +2024-09-23 10:07:28.479 [main] INFO com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - Added connection com.mysql.cj.jdbc.ConnectionImpl@4adcc981 +2024-09-23 10:07:28.482 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Start completed. +2024-09-23 10:07:28.956 [main] INFO c.g.h.HarmonyLifeServerApplicationTests - Started HarmonyLifeServerApplicationTests in 5.108 seconds (process running for 5.956) +2024-09-23 10:07:29.820 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown initiated... +2024-09-23 10:07:29.827 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown completed. +2024-09-23 10:08:12.626 [main] INFO o.s.boot.SpringApplication - +██╗ ██╗██████╗ ██╗██╗ █████╗ ███╗ ██╗ ██████╗ +╚██╗██╔╝██╔══██╗██║██║ ██╔══██╗████╗ ██║██╔════╝ + ╚███╔╝ ██████╔╝██║██║ ███████║██╔██╗ ██║██║ ███╗ + ██╔██╗ ██╔══██╗██║██║ ██╔══██║██║╚██╗██║██║ ██║ +██╔╝ ██╗██║ ██║██║███████╗██║ ██║██║ ╚████║╚██████╔╝ +╚═╝ ╚═╝╚═╝ ╚═╝╚═╝╚══════╝╚═╝ ╚═╝╚═╝ ╚═══╝ ╚═════╝ + +^_^ 服务启动成功 He Sheng +# 项目名称:harmony-life-server +# 项目版本:1.0.0 +# 框架版本:3.3.4 +# 最后更新于 2024年 9月 25日 + + +2024-09-23 10:08:12.669 [main] INFO c.g.h.HarmonyLifeServerApplicationTests - Starting HarmonyLifeServerApplicationTests using Java 17.0.8 with PID 256 (started by xrilang in C:\Users\xrilang\Desktop\harmony-life\harmony-life-server\harmony-life-server) +2024-09-23 10:08:12.671 [main] DEBUG c.g.h.HarmonyLifeServerApplicationTests - Running with Spring Boot v3.3.4, Spring v6.1.13 +2024-09-23 10:08:12.672 [main] INFO c.g.h.HarmonyLifeServerApplicationTests - No active profile set, falling back to 1 default profile: "default" +2024-09-23 10:08:13.608 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode +2024-09-23 10:08:13.609 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data JDBC repositories in DEFAULT mode. +2024-09-23 10:08:13.623 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 9 ms. Found 0 JDBC repository interfaces. +2024-09-23 10:08:13.635 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode +2024-09-23 10:08:13.636 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2024-09-23 10:08:13.649 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 6 ms. Found 0 Redis repository interfaces. +2024-09-23 10:08:16.529 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Starting... +2024-09-23 10:08:16.843 [main] INFO com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - Added connection com.mysql.cj.jdbc.ConnectionImpl@4adcc981 +2024-09-23 10:08:16.845 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Start completed. +2024-09-23 10:08:17.156 [main] INFO c.g.h.HarmonyLifeServerApplicationTests - Started HarmonyLifeServerApplicationTests in 4.789 seconds (process running for 5.606) +2024-09-23 10:08:17.861 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown initiated... +2024-09-23 10:08:17.869 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown completed. +2024-09-23 13:20:16.482 [HikariPool-1 housekeeper] WARN com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - Thread starvation or clock leap detected (housekeeper delta=1h47m2s38ms478µs100ns). +2024-09-23 14:01:28.052 [HikariPool-1 housekeeper] WARN com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - Thread starvation or clock leap detected (housekeeper delta=11m41s250ms889µs200ns). +2024-09-23 14:31:36.537 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown initiated... +2024-09-23 14:31:36.541 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown completed. +2024-09-23 14:31:40.926 [main] INFO o.s.boot.SpringApplication - +██╗ ██╗██████╗ ██╗██╗ █████╗ ███╗ ██╗ ██████╗ +╚██╗██╔╝██╔══██╗██║██║ ██╔══██╗████╗ ██║██╔════╝ + ╚███╔╝ ██████╔╝██║██║ ███████║██╔██╗ ██║██║ ███╗ + ██╔██╗ ██╔══██╗██║██║ ██╔══██║██║╚██╗██║██║ ██║ +██╔╝ ██╗██║ ██║██║███████╗██║ ██║██║ ╚████║╚██████╔╝ +╚═╝ ╚═╝╚═╝ ╚═╝╚═╝╚══════╝╚═╝ ╚═╝╚═╝ ╚═══╝ ╚═════╝ + +^_^ 服务启动成功 He Sheng +# 项目名称:harmony-life-server +# 项目版本:1.0.0 +# 框架版本:3.3.4 +# 最后更新于 2024年 9月 25日 + + +2024-09-23 14:31:40.972 [main] INFO c.g.h.HarmonyLifeServerApplication - Starting HarmonyLifeServerApplication using Java 17.0.8 with PID 22240 (C:\Users\xrilang\Desktop\harmony-life\harmony-life-server\harmony-life-server\target\classes started by xrilang in C:\Users\xrilang\Desktop\harmony-life\harmony-life-server\harmony-life-server) +2024-09-23 14:31:40.973 [main] DEBUG c.g.h.HarmonyLifeServerApplication - Running with Spring Boot v3.3.4, Spring v6.1.13 +2024-09-23 14:31:40.974 [main] INFO c.g.h.HarmonyLifeServerApplication - No active profile set, falling back to 1 default profile: "default" +2024-09-23 14:31:41.527 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode +2024-09-23 14:31:41.528 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data JDBC repositories in DEFAULT mode. +2024-09-23 14:31:41.538 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 7 ms. Found 0 JDBC repository interfaces. +2024-09-23 14:31:41.549 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode +2024-09-23 14:31:41.550 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2024-09-23 14:31:41.562 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 4 ms. Found 0 Redis repository interfaces. +2024-09-23 14:31:41.975 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat initialized with port 8080 (http) +2024-09-23 14:31:41.982 [main] INFO o.a.coyote.http11.Http11NioProtocol - Initializing ProtocolHandler ["http-nio-8080"] +2024-09-23 14:31:41.985 [main] INFO o.a.catalina.core.StandardService - Starting service [Tomcat] +2024-09-23 14:31:41.985 [main] INFO o.a.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/10.1.30] +2024-09-23 14:31:42.046 [main] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring embedded WebApplicationContext +2024-09-23 14:31:42.047 [main] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 1045 ms +2024-09-23 14:31:42.717 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Starting... +2024-09-23 14:31:42.809 [main] INFO com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - Added connection com.mysql.cj.jdbc.ConnectionImpl@5ac0bf84 +2024-09-23 14:31:42.810 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Start completed. +2024-09-23 14:31:42.929 [main] INFO o.a.coyote.http11.Http11NioProtocol - Starting ProtocolHandler ["http-nio-8080"] +2024-09-23 14:31:42.945 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat started on port 8080 (http) with context path '/' +2024-09-23 14:31:42.951 [main] INFO c.g.h.HarmonyLifeServerApplication - Started HarmonyLifeServerApplication in 2.316 seconds (process running for 2.76) +2024-09-23 14:34:36.874 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown initiated... +2024-09-23 14:34:36.881 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown completed. +2024-09-23 14:34:39.602 [main] INFO o.s.boot.SpringApplication - +██╗ ██╗██████╗ ██╗██╗ █████╗ ███╗ ██╗ ██████╗ +╚██╗██╔╝██╔══██╗██║██║ ██╔══██╗████╗ ██║██╔════╝ + ╚███╔╝ ██████╔╝██║██║ ███████║██╔██╗ ██║██║ ███╗ + ██╔██╗ ██╔══██╗██║██║ ██╔══██║██║╚██╗██║██║ ██║ +██╔╝ ██╗██║ ██║██║███████╗██║ ██║██║ ╚████║╚██████╔╝ +╚═╝ ╚═╝╚═╝ ╚═╝╚═╝╚══════╝╚═╝ ╚═╝╚═╝ ╚═══╝ ╚═════╝ + +^_^ 服务启动成功 He Sheng +# 项目名称:harmony-life-server +# 项目版本:1.0.0 +# 框架版本:3.3.4 +# 最后更新于 2024年 9月 25日 + + +2024-09-23 14:34:39.645 [main] INFO c.g.h.HarmonyLifeServerApplication - Starting HarmonyLifeServerApplication using Java 17.0.8 with PID 12008 (C:\Users\xrilang\Desktop\harmony-life\harmony-life-server\harmony-life-server\target\classes started by xrilang in C:\Users\xrilang\Desktop\harmony-life\harmony-life-server\harmony-life-server) +2024-09-23 14:34:39.646 [main] DEBUG c.g.h.HarmonyLifeServerApplication - Running with Spring Boot v3.3.4, Spring v6.1.13 +2024-09-23 14:34:39.647 [main] INFO c.g.h.HarmonyLifeServerApplication - No active profile set, falling back to 1 default profile: "default" +2024-09-23 14:34:40.183 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode +2024-09-23 14:34:40.184 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data JDBC repositories in DEFAULT mode. +2024-09-23 14:34:40.195 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 8 ms. Found 0 JDBC repository interfaces. +2024-09-23 14:34:40.203 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode +2024-09-23 14:34:40.204 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2024-09-23 14:34:40.216 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 5 ms. Found 0 Redis repository interfaces. +2024-09-23 14:34:40.620 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat initialized with port 8080 (http) +2024-09-23 14:34:40.627 [main] INFO o.a.coyote.http11.Http11NioProtocol - Initializing ProtocolHandler ["http-nio-8080"] +2024-09-23 14:34:40.629 [main] INFO o.a.catalina.core.StandardService - Starting service [Tomcat] +2024-09-23 14:34:40.630 [main] INFO o.a.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/10.1.30] +2024-09-23 14:34:40.681 [main] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring embedded WebApplicationContext +2024-09-23 14:34:40.682 [main] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 1006 ms +2024-09-23 14:34:41.331 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Starting... +2024-09-23 14:34:41.421 [main] INFO com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - Added connection com.mysql.cj.jdbc.ConnectionImpl@3d8bd881 +2024-09-23 14:34:41.422 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Start completed. +2024-09-23 14:34:41.543 [main] INFO o.a.coyote.http11.Http11NioProtocol - Starting ProtocolHandler ["http-nio-8080"] +2024-09-23 14:34:41.556 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat started on port 8080 (http) with context path '/' +2024-09-23 14:34:41.562 [main] INFO c.g.h.HarmonyLifeServerApplication - Started HarmonyLifeServerApplication in 2.228 seconds (process running for 2.634) +2024-09-23 14:51:26.504 [HikariPool-1 housekeeper] WARN com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - Thread starvation or clock leap detected (housekeeper delta=9m15s10ms788µs100ns). +2024-09-23 14:51:56.242 [http-nio-8080-exec-1] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring DispatcherServlet 'dispatcherServlet' +2024-09-23 14:51:56.242 [http-nio-8080-exec-1] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet' +2024-09-23 14:51:56.243 [http-nio-8080-exec-1] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 1 ms +2024-09-23 14:51:56.285 [http-nio-8080-exec-2] ERROR c.g.h.config.GlobalExceptionHandler - 未能读取到有效 token +2024-09-23 14:51:56.285 [http-nio-8080-exec-8] ERROR c.g.h.config.GlobalExceptionHandler - 未能读取到有效 token +2024-09-23 14:51:56.285 [http-nio-8080-exec-3] ERROR c.g.h.config.GlobalExceptionHandler - 未能读取到有效 token +2024-09-23 14:51:56.285 [http-nio-8080-exec-5] ERROR c.g.h.config.GlobalExceptionHandler - 未能读取到有效 token +2024-09-23 14:51:56.294 [http-nio-8080-exec-6] ERROR c.g.h.config.GlobalExceptionHandler - 未能读取到有效 token +2024-09-23 14:51:56.294 [http-nio-8080-exec-7] ERROR c.g.h.config.GlobalExceptionHandler - 未能读取到有效 token +2024-09-23 14:51:56.342 [http-nio-8080-exec-1] ERROR c.g.h.config.GlobalExceptionHandler - 未能读取到有效 token +2024-09-23 14:51:56.342 [http-nio-8080-exec-4] ERROR c.g.h.config.GlobalExceptionHandler - 未能读取到有效 token +2024-09-23 14:51:56.342 [http-nio-8080-exec-10] ERROR c.g.h.config.GlobalExceptionHandler - 未能读取到有效 token +2024-09-23 14:51:56.342 [http-nio-8080-exec-7] ERROR c.g.h.config.GlobalExceptionHandler - 未能读取到有效 token +2024-09-23 14:51:56.342 [http-nio-8080-exec-9] ERROR c.g.h.config.GlobalExceptionHandler - 未能读取到有效 token +2024-09-23 14:51:56.342 [http-nio-8080-exec-6] ERROR c.g.h.config.GlobalExceptionHandler - 未能读取到有效 token +2024-09-23 14:51:56.348 [http-nio-8080-exec-5] ERROR c.g.h.config.GlobalExceptionHandler - 未能读取到有效 token +2024-09-23 14:51:56.350 [http-nio-8080-exec-8] ERROR c.g.h.config.GlobalExceptionHandler - 未能读取到有效 token +2024-09-23 14:51:56.350 [http-nio-8080-exec-2] ERROR c.g.h.config.GlobalExceptionHandler - 未能读取到有效 token +2024-09-23 14:51:56.350 [http-nio-8080-exec-3] ERROR c.g.h.config.GlobalExceptionHandler - 未能读取到有效 token +2024-09-23 14:51:56.351 [http-nio-8080-exec-4] ERROR c.g.h.config.GlobalExceptionHandler - 未能读取到有效 token +2024-09-23 14:51:56.352 [http-nio-8080-exec-1] ERROR c.g.h.config.GlobalExceptionHandler - 未能读取到有效 token +2024-09-23 14:51:56.377 [http-nio-8080-exec-7] ERROR c.g.h.config.GlobalExceptionHandler - 未能读取到有效 token +2024-09-23 14:51:56.378 [http-nio-8080-exec-9] ERROR c.g.h.config.GlobalExceptionHandler - 未能读取到有效 token +2024-09-23 14:51:56.378 [http-nio-8080-exec-10] ERROR c.g.h.config.GlobalExceptionHandler - 未能读取到有效 token +2024-09-23 14:53:01.918 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown initiated... +2024-09-23 14:53:01.923 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown completed. +2024-09-23 14:53:05.578 [main] INFO o.s.boot.SpringApplication - +██╗ ██╗██████╗ ██╗██╗ █████╗ ███╗ ██╗ ██████╗ +╚██╗██╔╝██╔══██╗██║██║ ██╔══██╗████╗ ██║██╔════╝ + ╚███╔╝ ██████╔╝██║██║ ███████║██╔██╗ ██║██║ ███╗ + ██╔██╗ ██╔══██╗██║██║ ██╔══██║██║╚██╗██║██║ ██║ +██╔╝ ██╗██║ ██║██║███████╗██║ ██║██║ ╚████║╚██████╔╝ +╚═╝ ╚═╝╚═╝ ╚═╝╚═╝╚══════╝╚═╝ ╚═╝╚═╝ ╚═══╝ ╚═════╝ + +^_^ 服务启动成功 He Sheng +# 项目名称:harmony-life-server +# 项目版本:1.0.0 +# 框架版本:3.3.4 +# 最后更新于 2024年 9月 25日 + + +2024-09-23 14:53:05.625 [main] INFO c.g.h.HarmonyLifeServerApplication - Starting HarmonyLifeServerApplication using Java 17.0.8 with PID 27692 (C:\Users\xrilang\Desktop\harmony-life\harmony-life-server\harmony-life-server\target\classes started by xrilang in C:\Users\xrilang\Desktop\harmony-life\harmony-life-server\harmony-life-server) +2024-09-23 14:53:05.625 [main] DEBUG c.g.h.HarmonyLifeServerApplication - Running with Spring Boot v3.3.4, Spring v6.1.13 +2024-09-23 14:53:05.626 [main] INFO c.g.h.HarmonyLifeServerApplication - No active profile set, falling back to 1 default profile: "default" +2024-09-23 14:53:06.181 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode +2024-09-23 14:53:06.182 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data JDBC repositories in DEFAULT mode. +2024-09-23 14:53:06.193 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 8 ms. Found 0 JDBC repository interfaces. +2024-09-23 14:53:06.202 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode +2024-09-23 14:53:06.203 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2024-09-23 14:53:06.216 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 5 ms. Found 0 Redis repository interfaces. +2024-09-23 14:53:06.635 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat initialized with port 8080 (http) +2024-09-23 14:53:06.642 [main] INFO o.a.coyote.http11.Http11NioProtocol - Initializing ProtocolHandler ["http-nio-8080"] +2024-09-23 14:53:06.644 [main] INFO o.a.catalina.core.StandardService - Starting service [Tomcat] +2024-09-23 14:53:06.645 [main] INFO o.a.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/10.1.30] +2024-09-23 14:53:06.700 [main] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring embedded WebApplicationContext +2024-09-23 14:53:06.701 [main] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 1046 ms +2024-09-23 14:53:07.389 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Starting... +2024-09-23 14:53:07.489 [main] INFO com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - Added connection com.mysql.cj.jdbc.ConnectionImpl@5ac0bf84 +2024-09-23 14:53:07.490 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Start completed. +2024-09-23 14:53:07.609 [main] INFO o.a.coyote.http11.Http11NioProtocol - Starting ProtocolHandler ["http-nio-8080"] +2024-09-23 14:53:07.622 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat started on port 8080 (http) with context path '/' +2024-09-23 14:53:07.628 [main] INFO c.g.h.HarmonyLifeServerApplication - Started HarmonyLifeServerApplication in 2.327 seconds (process running for 2.734) +2024-09-23 14:53:10.104 [http-nio-8080-exec-1] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring DispatcherServlet 'dispatcherServlet' +2024-09-23 14:53:10.105 [http-nio-8080-exec-1] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet' +2024-09-23 14:53:10.105 [http-nio-8080-exec-1] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 0 ms +2024-09-23 14:53:10.129 [http-nio-8080-exec-3] ERROR c.g.h.config.GlobalExceptionHandler - 未能读取到有效 token +2024-09-23 14:53:10.129 [http-nio-8080-exec-5] ERROR c.g.h.config.GlobalExceptionHandler - 未能读取到有效 token +2024-09-23 14:53:10.129 [http-nio-8080-exec-1] ERROR c.g.h.config.GlobalExceptionHandler - 未能读取到有效 token +2024-09-23 14:53:10.129 [http-nio-8080-exec-7] ERROR c.g.h.config.GlobalExceptionHandler - 未能读取到有效 token +2024-09-23 14:53:10.129 [http-nio-8080-exec-2] ERROR c.g.h.config.GlobalExceptionHandler - 未能读取到有效 token +2024-09-23 14:53:10.129 [http-nio-8080-exec-4] ERROR c.g.h.config.GlobalExceptionHandler - 未能读取到有效 token +2024-09-23 14:53:10.178 [http-nio-8080-exec-6] ERROR c.g.h.config.GlobalExceptionHandler - 未能读取到有效 token +2024-09-23 14:53:10.179 [http-nio-8080-exec-8] ERROR c.g.h.config.GlobalExceptionHandler - 未能读取到有效 token +2024-09-23 14:53:10.179 [http-nio-8080-exec-9] ERROR c.g.h.config.GlobalExceptionHandler - 未能读取到有效 token +2024-09-23 14:53:10.179 [http-nio-8080-exec-7] ERROR c.g.h.config.GlobalExceptionHandler - 未能读取到有效 token +2024-09-23 14:53:10.179 [http-nio-8080-exec-10] ERROR c.g.h.config.GlobalExceptionHandler - 未能读取到有效 token +2024-09-23 14:53:10.180 [http-nio-8080-exec-3] ERROR c.g.h.config.GlobalExceptionHandler - 未能读取到有效 token +2024-09-23 14:53:10.224 [http-nio-8080-exec-8] ERROR c.g.h.config.GlobalExceptionHandler - 未能读取到有效 token +2024-09-23 14:53:10.224 [http-nio-8080-exec-5] ERROR c.g.h.config.GlobalExceptionHandler - 未能读取到有效 token +2024-09-23 14:53:10.224 [http-nio-8080-exec-1] ERROR c.g.h.config.GlobalExceptionHandler - 未能读取到有效 token +2024-09-23 14:53:10.224 [http-nio-8080-exec-4] ERROR c.g.h.config.GlobalExceptionHandler - 未能读取到有效 token +2024-09-23 14:53:10.224 [http-nio-8080-exec-2] ERROR c.g.h.config.GlobalExceptionHandler - 未能读取到有效 token +2024-09-23 14:53:10.226 [http-nio-8080-exec-6] ERROR c.g.h.config.GlobalExceptionHandler - 未能读取到有效 token +2024-09-23 14:53:10.232 [http-nio-8080-exec-7] ERROR c.g.h.config.GlobalExceptionHandler - 未能读取到有效 token +2024-09-23 14:53:10.234 [http-nio-8080-exec-9] ERROR c.g.h.config.GlobalExceptionHandler - 未能读取到有效 token +2024-09-23 14:53:10.234 [http-nio-8080-exec-10] ERROR c.g.h.config.GlobalExceptionHandler - 未能读取到有效 token +2024-09-23 14:53:19.827 [http-nio-8080-exec-2] ERROR c.g.h.config.GlobalExceptionHandler - 未能读取到有效 token +2024-09-23 14:53:19.870 [http-nio-8080-exec-8] ERROR c.g.h.config.GlobalExceptionHandler - 未能读取到有效 token +2024-09-23 15:00:38.431 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown initiated... +2024-09-23 15:00:38.435 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown completed. +2024-09-23 15:00:42.124 [main] INFO o.s.boot.SpringApplication - +██╗ ██╗██████╗ ██╗██╗ █████╗ ███╗ ██╗ ██████╗ +╚██╗██╔╝██╔══██╗██║██║ ██╔══██╗████╗ ██║██╔════╝ + ╚███╔╝ ██████╔╝██║██║ ███████║██╔██╗ ██║██║ ███╗ + ██╔██╗ ██╔══██╗██║██║ ██╔══██║██║╚██╗██║██║ ██║ +██╔╝ ██╗██║ ██║██║███████╗██║ ██║██║ ╚████║╚██████╔╝ +╚═╝ ╚═╝╚═╝ ╚═╝╚═╝╚══════╝╚═╝ ╚═╝╚═╝ ╚═══╝ ╚═════╝ + +^_^ 服务启动成功 He Sheng +# 项目名称:harmony-life-server +# 项目版本:1.0.0 +# 框架版本:3.3.4 +# 最后更新于 2024年 9月 25日 + + +2024-09-23 15:00:42.168 [main] INFO c.g.h.HarmonyLifeServerApplication - Starting HarmonyLifeServerApplication using Java 17.0.8 with PID 25952 (C:\Users\xrilang\Desktop\harmony-life\harmony-life-server\harmony-life-server\target\classes started by xrilang in C:\Users\xrilang\Desktop\harmony-life\harmony-life-server\harmony-life-server) +2024-09-23 15:00:42.168 [main] DEBUG c.g.h.HarmonyLifeServerApplication - Running with Spring Boot v3.3.4, Spring v6.1.13 +2024-09-23 15:00:42.169 [main] INFO c.g.h.HarmonyLifeServerApplication - No active profile set, falling back to 1 default profile: "default" +2024-09-23 15:00:42.724 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode +2024-09-23 15:00:42.725 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data JDBC repositories in DEFAULT mode. +2024-09-23 15:00:42.737 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 8 ms. Found 0 JDBC repository interfaces. +2024-09-23 15:00:42.746 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode +2024-09-23 15:00:42.747 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2024-09-23 15:00:42.760 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 5 ms. Found 0 Redis repository interfaces. +2024-09-23 15:00:43.189 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat initialized with port 8080 (http) +2024-09-23 15:00:43.197 [main] INFO o.a.coyote.http11.Http11NioProtocol - Initializing ProtocolHandler ["http-nio-8080"] +2024-09-23 15:00:43.200 [main] INFO o.a.catalina.core.StandardService - Starting service [Tomcat] +2024-09-23 15:00:43.200 [main] INFO o.a.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/10.1.30] +2024-09-23 15:00:43.257 [main] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring embedded WebApplicationContext +2024-09-23 15:00:43.257 [main] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 1056 ms +2024-09-23 15:00:43.947 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Starting... +2024-09-23 15:00:44.050 [main] INFO com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - Added connection com.mysql.cj.jdbc.ConnectionImpl@76d1f6ea +2024-09-23 15:00:44.052 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Start completed. +2024-09-23 15:00:44.162 [main] INFO o.a.coyote.http11.Http11NioProtocol - Starting ProtocolHandler ["http-nio-8080"] +2024-09-23 15:00:44.181 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat started on port 8080 (http) with context path '/' +2024-09-23 15:00:44.187 [main] INFO c.g.h.HarmonyLifeServerApplication - Started HarmonyLifeServerApplication in 2.353 seconds (process running for 2.789) +2024-09-23 15:01:12.795 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown initiated... +2024-09-23 15:01:12.800 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown completed. +2024-09-23 15:01:14.944 [main] INFO o.s.boot.SpringApplication - +██╗ ██╗██████╗ ██╗██╗ █████╗ ███╗ ██╗ ██████╗ +╚██╗██╔╝██╔══██╗██║██║ ██╔══██╗████╗ ██║██╔════╝ + ╚███╔╝ ██████╔╝██║██║ ███████║██╔██╗ ██║██║ ███╗ + ██╔██╗ ██╔══██╗██║██║ ██╔══██║██║╚██╗██║██║ ██║ +██╔╝ ██╗██║ ██║██║███████╗██║ ██║██║ ╚████║╚██████╔╝ +╚═╝ ╚═╝╚═╝ ╚═╝╚═╝╚══════╝╚═╝ ╚═╝╚═╝ ╚═══╝ ╚═════╝ + +^_^ 服务启动成功 He Sheng +# 项目名称:harmony-life-server +# 项目版本:1.0.0 +# 框架版本:3.3.4 +# 最后更新于 2024年 9月 25日 + + +2024-09-23 15:01:14.989 [main] INFO c.g.h.HarmonyLifeServerApplication - Starting HarmonyLifeServerApplication using Java 17.0.8 with PID 28324 (C:\Users\xrilang\Desktop\harmony-life\harmony-life-server\harmony-life-server\target\classes started by xrilang in C:\Users\xrilang\Desktop\harmony-life\harmony-life-server\harmony-life-server) +2024-09-23 15:01:14.989 [main] DEBUG c.g.h.HarmonyLifeServerApplication - Running with Spring Boot v3.3.4, Spring v6.1.13 +2024-09-23 15:01:14.990 [main] INFO c.g.h.HarmonyLifeServerApplication - No active profile set, falling back to 1 default profile: "default" +2024-09-23 15:01:15.524 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode +2024-09-23 15:01:15.525 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data JDBC repositories in DEFAULT mode. +2024-09-23 15:01:15.537 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 8 ms. Found 0 JDBC repository interfaces. +2024-09-23 15:01:15.545 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode +2024-09-23 15:01:15.546 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2024-09-23 15:01:15.557 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 4 ms. Found 0 Redis repository interfaces. +2024-09-23 15:01:15.965 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat initialized with port 8080 (http) +2024-09-23 15:01:15.973 [main] INFO o.a.coyote.http11.Http11NioProtocol - Initializing ProtocolHandler ["http-nio-8080"] +2024-09-23 15:01:15.975 [main] INFO o.a.catalina.core.StandardService - Starting service [Tomcat] +2024-09-23 15:01:15.975 [main] INFO o.a.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/10.1.30] +2024-09-23 15:01:16.027 [main] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring embedded WebApplicationContext +2024-09-23 15:01:16.027 [main] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 1009 ms +2024-09-23 15:01:16.695 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Starting... +2024-09-23 15:01:16.797 [main] INFO com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - Added connection com.mysql.cj.jdbc.ConnectionImpl@4ff0706c +2024-09-23 15:01:16.798 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Start completed. +2024-09-23 15:01:16.911 [main] INFO o.a.coyote.http11.Http11NioProtocol - Starting ProtocolHandler ["http-nio-8080"] +2024-09-23 15:01:16.930 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat started on port 8080 (http) with context path '/' +2024-09-23 15:01:16.936 [main] INFO c.g.h.HarmonyLifeServerApplication - Started HarmonyLifeServerApplication in 2.264 seconds (process running for 2.669) +2024-09-23 15:01:28.703 [http-nio-8080-exec-1] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring DispatcherServlet 'dispatcherServlet' +2024-09-23 15:01:28.703 [http-nio-8080-exec-1] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet' +2024-09-23 15:01:28.704 [http-nio-8080-exec-1] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 1 ms +2024-09-23 15:01:28.730 [http-nio-8080-exec-3] ERROR c.g.h.config.GlobalExceptionHandler - 未能读取到有效 token +2024-09-23 15:01:28.730 [http-nio-8080-exec-9] ERROR c.g.h.config.GlobalExceptionHandler - 未能读取到有效 token +2024-09-23 15:01:28.730 [http-nio-8080-exec-6] ERROR c.g.h.config.GlobalExceptionHandler - 未能读取到有效 token +2024-09-23 15:01:28.730 [http-nio-8080-exec-1] ERROR c.g.h.config.GlobalExceptionHandler - 未能读取到有效 token +2024-09-23 15:01:28.730 [http-nio-8080-exec-4] ERROR c.g.h.config.GlobalExceptionHandler - 未能读取到有效 token +2024-09-23 15:01:28.730 [http-nio-8080-exec-5] ERROR c.g.h.config.GlobalExceptionHandler - 未能读取到有效 token +2024-09-23 15:01:28.775 [http-nio-8080-exec-8] ERROR c.g.h.config.GlobalExceptionHandler - 未能读取到有效 token +2024-09-23 15:01:28.775 [http-nio-8080-exec-2] ERROR c.g.h.config.GlobalExceptionHandler - 未能读取到有效 token +2024-09-23 15:01:28.775 [http-nio-8080-exec-6] ERROR c.g.h.config.GlobalExceptionHandler - 未能读取到有效 token +2024-09-23 15:01:28.775 [http-nio-8080-exec-10] ERROR c.g.h.config.GlobalExceptionHandler - 未能读取到有效 token +2024-09-23 15:01:28.775 [http-nio-8080-exec-7] ERROR c.g.h.config.GlobalExceptionHandler - 未能读取到有效 token +2024-09-23 15:01:28.776 [http-nio-8080-exec-1] ERROR c.g.h.config.GlobalExceptionHandler - 未能读取到有效 token +2024-09-23 15:01:28.815 [http-nio-8080-exec-5] ERROR c.g.h.config.GlobalExceptionHandler - 未能读取到有效 token +2024-09-23 15:01:28.815 [http-nio-8080-exec-4] ERROR c.g.h.config.GlobalExceptionHandler - 未能读取到有效 token +2024-09-23 15:01:28.815 [http-nio-8080-exec-3] ERROR c.g.h.config.GlobalExceptionHandler - 未能读取到有效 token +2024-09-23 15:01:28.816 [http-nio-8080-exec-2] ERROR c.g.h.config.GlobalExceptionHandler - 未能读取到有效 token +2024-09-23 15:01:28.816 [http-nio-8080-exec-10] ERROR c.g.h.config.GlobalExceptionHandler - 未能读取到有效 token +2024-09-23 15:01:28.816 [http-nio-8080-exec-9] ERROR c.g.h.config.GlobalExceptionHandler - 未能读取到有效 token +2024-09-23 15:01:28.824 [http-nio-8080-exec-6] ERROR c.g.h.config.GlobalExceptionHandler - 未能读取到有效 token +2024-09-23 15:01:28.825 [http-nio-8080-exec-1] ERROR c.g.h.config.GlobalExceptionHandler - 未能读取到有效 token +2024-09-23 15:01:28.826 [http-nio-8080-exec-7] ERROR c.g.h.config.GlobalExceptionHandler - 未能读取到有效 token +2024-09-23 15:01:50.329 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown initiated... +2024-09-23 15:01:50.334 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown completed. +2024-09-23 15:01:53.917 [main] INFO o.s.boot.SpringApplication - +██╗ ██╗██████╗ ██╗██╗ █████╗ ███╗ ██╗ ██████╗ +╚██╗██╔╝██╔══██╗██║██║ ██╔══██╗████╗ ██║██╔════╝ + ╚███╔╝ ██████╔╝██║██║ ███████║██╔██╗ ██║██║ ███╗ + ██╔██╗ ██╔══██╗██║██║ ██╔══██║██║╚██╗██║██║ ██║ +██╔╝ ██╗██║ ██║██║███████╗██║ ██║██║ ╚████║╚██████╔╝ +╚═╝ ╚═╝╚═╝ ╚═╝╚═╝╚══════╝╚═╝ ╚═╝╚═╝ ╚═══╝ ╚═════╝ + +^_^ 服务启动成功 He Sheng +# 项目名称:harmony-life-server +# 项目版本:1.0.0 +# 框架版本:3.3.4 +# 最后更新于 2024年 9月 25日 + + +2024-09-23 15:01:53.962 [main] INFO c.g.h.HarmonyLifeServerApplication - Starting HarmonyLifeServerApplication using Java 17.0.8 with PID 27504 (C:\Users\xrilang\Desktop\harmony-life\harmony-life-server\harmony-life-server\target\classes started by xrilang in C:\Users\xrilang\Desktop\harmony-life\harmony-life-server\harmony-life-server) +2024-09-23 15:01:53.962 [main] DEBUG c.g.h.HarmonyLifeServerApplication - Running with Spring Boot v3.3.4, Spring v6.1.13 +2024-09-23 15:01:53.963 [main] INFO c.g.h.HarmonyLifeServerApplication - No active profile set, falling back to 1 default profile: "default" +2024-09-23 15:01:54.507 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode +2024-09-23 15:01:54.507 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data JDBC repositories in DEFAULT mode. +2024-09-23 15:01:54.518 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 7 ms. Found 0 JDBC repository interfaces. +2024-09-23 15:01:54.527 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode +2024-09-23 15:01:54.527 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2024-09-23 15:01:54.538 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 4 ms. Found 0 Redis repository interfaces. +2024-09-23 15:01:54.952 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat initialized with port 8080 (http) +2024-09-23 15:01:54.959 [main] INFO o.a.coyote.http11.Http11NioProtocol - Initializing ProtocolHandler ["http-nio-8080"] +2024-09-23 15:01:54.961 [main] INFO o.a.catalina.core.StandardService - Starting service [Tomcat] +2024-09-23 15:01:54.961 [main] INFO o.a.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/10.1.30] +2024-09-23 15:01:55.021 [main] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring embedded WebApplicationContext +2024-09-23 15:01:55.022 [main] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 1032 ms +2024-09-23 15:01:55.668 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Starting... +2024-09-23 15:01:55.762 [main] INFO com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - Added connection com.mysql.cj.jdbc.ConnectionImpl@6d5508a5 +2024-09-23 15:01:55.763 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Start completed. +2024-09-23 15:01:55.882 [main] INFO o.a.coyote.http11.Http11NioProtocol - Starting ProtocolHandler ["http-nio-8080"] +2024-09-23 15:01:55.894 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat started on port 8080 (http) with context path '/' +2024-09-23 15:01:55.901 [main] INFO c.g.h.HarmonyLifeServerApplication - Started HarmonyLifeServerApplication in 2.256 seconds (process running for 2.66) +2024-09-23 15:01:57.579 [http-nio-8080-exec-5] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring DispatcherServlet 'dispatcherServlet' +2024-09-23 15:01:57.580 [http-nio-8080-exec-5] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet' +2024-09-23 15:01:57.581 [http-nio-8080-exec-5] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 1 ms +2024-09-23 15:01:57.606 [http-nio-8080-exec-2] ERROR c.g.h.config.GlobalExceptionHandler - 未能读取到有效 token +2024-09-23 15:01:57.606 [http-nio-8080-exec-5] ERROR c.g.h.config.GlobalExceptionHandler - 未能读取到有效 token +2024-09-23 15:01:57.606 [http-nio-8080-exec-1] ERROR c.g.h.config.GlobalExceptionHandler - 未能读取到有效 token +2024-09-23 15:01:57.606 [http-nio-8080-exec-4] ERROR c.g.h.config.GlobalExceptionHandler - 未能读取到有效 token +2024-09-23 15:01:57.606 [http-nio-8080-exec-3] ERROR c.g.h.config.GlobalExceptionHandler - 未能读取到有效 token +2024-09-23 15:01:57.606 [http-nio-8080-exec-6] ERROR c.g.h.config.GlobalExceptionHandler - 未能读取到有效 token +2024-09-23 15:01:57.653 [http-nio-8080-exec-8] ERROR c.g.h.config.GlobalExceptionHandler - 未能读取到有效 token +2024-09-23 15:01:57.653 [http-nio-8080-exec-7] ERROR c.g.h.config.GlobalExceptionHandler - 未能读取到有效 token +2024-09-23 15:01:57.653 [http-nio-8080-exec-9] ERROR c.g.h.config.GlobalExceptionHandler - 未能读取到有效 token +2024-09-23 15:01:57.654 [http-nio-8080-exec-3] ERROR c.g.h.config.GlobalExceptionHandler - 未能读取到有效 token +2024-09-23 15:01:57.654 [http-nio-8080-exec-2] ERROR c.g.h.config.GlobalExceptionHandler - 未能读取到有效 token +2024-09-23 15:01:57.655 [http-nio-8080-exec-10] ERROR c.g.h.config.GlobalExceptionHandler - 未能读取到有效 token +2024-09-23 15:01:57.660 [http-nio-8080-exec-4] ERROR c.g.h.config.GlobalExceptionHandler - 未能读取到有效 token +2024-09-23 15:01:57.660 [http-nio-8080-exec-5] ERROR c.g.h.config.GlobalExceptionHandler - 未能读取到有效 token +2024-09-23 15:01:57.660 [http-nio-8080-exec-6] ERROR c.g.h.config.GlobalExceptionHandler - 未能读取到有效 token +2024-09-23 15:01:57.663 [http-nio-8080-exec-9] ERROR c.g.h.config.GlobalExceptionHandler - 未能读取到有效 token +2024-09-23 15:01:57.663 [http-nio-8080-exec-1] ERROR c.g.h.config.GlobalExceptionHandler - 未能读取到有效 token +2024-09-23 15:01:57.664 [http-nio-8080-exec-8] ERROR c.g.h.config.GlobalExceptionHandler - 未能读取到有效 token +2024-09-23 15:01:57.692 [http-nio-8080-exec-7] ERROR c.g.h.config.GlobalExceptionHandler - 未能读取到有效 token +2024-09-23 15:01:57.692 [http-nio-8080-exec-2] ERROR c.g.h.config.GlobalExceptionHandler - 未能读取到有效 token +2024-09-23 15:01:57.693 [http-nio-8080-exec-3] ERROR c.g.h.config.GlobalExceptionHandler - 未能读取到有效 token +2024-09-23 15:04:22.376 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown initiated... +2024-09-23 15:04:22.381 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown completed. +2024-09-23 15:04:25.938 [main] INFO o.s.boot.SpringApplication - +██╗ ██╗██████╗ ██╗██╗ █████╗ ███╗ ██╗ ██████╗ +╚██╗██╔╝██╔══██╗██║██║ ██╔══██╗████╗ ██║██╔════╝ + ╚███╔╝ ██████╔╝██║██║ ███████║██╔██╗ ██║██║ ███╗ + ██╔██╗ ██╔══██╗██║██║ ██╔══██║██║╚██╗██║██║ ██║ +██╔╝ ██╗██║ ██║██║███████╗██║ ██║██║ ╚████║╚██████╔╝ +╚═╝ ╚═╝╚═╝ ╚═╝╚═╝╚══════╝╚═╝ ╚═╝╚═╝ ╚═══╝ ╚═════╝ + +^_^ 服务启动成功 He Sheng +# 项目名称:harmony-life-server +# 项目版本:1.0.0 +# 框架版本:3.3.4 +# 最后更新于 2024年 9月 25日 + + +2024-09-23 15:04:25.985 [main] INFO c.g.h.HarmonyLifeServerApplication - Starting HarmonyLifeServerApplication using Java 17.0.8 with PID 27812 (C:\Users\xrilang\Desktop\harmony-life\harmony-life-server\harmony-life-server\target\classes started by xrilang in C:\Users\xrilang\Desktop\harmony-life\harmony-life-server\harmony-life-server) +2024-09-23 15:04:25.986 [main] DEBUG c.g.h.HarmonyLifeServerApplication - Running with Spring Boot v3.3.4, Spring v6.1.13 +2024-09-23 15:04:25.986 [main] INFO c.g.h.HarmonyLifeServerApplication - No active profile set, falling back to 1 default profile: "default" +2024-09-23 15:04:26.524 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode +2024-09-23 15:04:26.525 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data JDBC repositories in DEFAULT mode. +2024-09-23 15:04:26.536 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 7 ms. Found 0 JDBC repository interfaces. +2024-09-23 15:04:26.544 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode +2024-09-23 15:04:26.545 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2024-09-23 15:04:26.558 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 5 ms. Found 0 Redis repository interfaces. +2024-09-23 15:04:26.975 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat initialized with port 8080 (http) +2024-09-23 15:04:26.983 [main] INFO o.a.coyote.http11.Http11NioProtocol - Initializing ProtocolHandler ["http-nio-8080"] +2024-09-23 15:04:26.985 [main] INFO o.a.catalina.core.StandardService - Starting service [Tomcat] +2024-09-23 15:04:26.985 [main] INFO o.a.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/10.1.30] +2024-09-23 15:04:27.042 [main] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring embedded WebApplicationContext +2024-09-23 15:04:27.042 [main] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 1028 ms +2024-09-23 15:04:27.695 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Starting... +2024-09-23 15:04:27.789 [main] INFO com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - Added connection com.mysql.cj.jdbc.ConnectionImpl@731ab49b +2024-09-23 15:04:27.790 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Start completed. +2024-09-23 15:04:27.906 [main] INFO o.a.coyote.http11.Http11NioProtocol - Starting ProtocolHandler ["http-nio-8080"] +2024-09-23 15:04:27.921 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat started on port 8080 (http) with context path '/' +2024-09-23 15:04:27.928 [main] INFO c.g.h.HarmonyLifeServerApplication - Started HarmonyLifeServerApplication in 2.268 seconds (process running for 2.685) +2024-09-23 15:04:34.663 [http-nio-8080-exec-5] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring DispatcherServlet 'dispatcherServlet' +2024-09-23 15:04:34.663 [http-nio-8080-exec-5] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet' +2024-09-23 15:04:34.664 [http-nio-8080-exec-5] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 1 ms +2024-09-23 15:04:34.691 [http-nio-8080-exec-1] ERROR c.g.h.config.GlobalExceptionHandler - 未能读取到有效 token +2024-09-23 15:04:34.691 [http-nio-8080-exec-6] ERROR c.g.h.config.GlobalExceptionHandler - 未能读取到有效 token +2024-09-23 15:04:34.691 [http-nio-8080-exec-4] ERROR c.g.h.config.GlobalExceptionHandler - 未能读取到有效 token +2024-09-23 15:04:34.691 [http-nio-8080-exec-3] ERROR c.g.h.config.GlobalExceptionHandler - 未能读取到有效 token +2024-09-23 15:04:34.691 [http-nio-8080-exec-2] ERROR c.g.h.config.GlobalExceptionHandler - 未能读取到有效 token +2024-09-23 15:04:34.691 [http-nio-8080-exec-5] ERROR c.g.h.config.GlobalExceptionHandler - 未能读取到有效 token +2024-09-23 15:04:34.744 [http-nio-8080-exec-5] ERROR c.g.h.config.GlobalExceptionHandler - 未能读取到有效 token +2024-09-23 15:04:34.744 [http-nio-8080-exec-3] ERROR c.g.h.config.GlobalExceptionHandler - 未能读取到有效 token +2024-09-23 15:04:34.744 [http-nio-8080-exec-8] ERROR c.g.h.config.GlobalExceptionHandler - 未能读取到有效 token +2024-09-23 15:04:34.744 [http-nio-8080-exec-9] ERROR c.g.h.config.GlobalExceptionHandler - 未能读取到有效 token +2024-09-23 15:04:34.744 [http-nio-8080-exec-10] ERROR c.g.h.config.GlobalExceptionHandler - 未能读取到有效 token +2024-09-23 15:04:34.744 [http-nio-8080-exec-7] ERROR c.g.h.config.GlobalExceptionHandler - 未能读取到有效 token +2024-09-23 15:04:34.751 [http-nio-8080-exec-2] ERROR c.g.h.config.GlobalExceptionHandler - 未能读取到有效 token +2024-09-23 15:04:34.753 [http-nio-8080-exec-5] ERROR c.g.h.config.GlobalExceptionHandler - 未能读取到有效 token +2024-09-23 15:04:34.753 [http-nio-8080-exec-1] ERROR c.g.h.config.GlobalExceptionHandler - 未能读取到有效 token +2024-09-23 15:04:34.753 [http-nio-8080-exec-4] ERROR c.g.h.config.GlobalExceptionHandler - 未能读取到有效 token +2024-09-23 15:04:34.753 [http-nio-8080-exec-7] ERROR c.g.h.config.GlobalExceptionHandler - 未能读取到有效 token +2024-09-23 15:04:34.753 [http-nio-8080-exec-6] ERROR c.g.h.config.GlobalExceptionHandler - 未能读取到有效 token +2024-09-23 15:04:34.783 [http-nio-8080-exec-8] ERROR c.g.h.config.GlobalExceptionHandler - 未能读取到有效 token +2024-09-23 15:04:34.793 [http-nio-8080-exec-3] ERROR c.g.h.config.GlobalExceptionHandler - 未能读取到有效 token +2024-09-23 15:04:34.793 [http-nio-8080-exec-10] ERROR c.g.h.config.GlobalExceptionHandler - 未能读取到有效 token +2024-09-23 15:05:37.215 [http-nio-8080-exec-8] ERROR c.g.h.config.GlobalExceptionHandler - 未能读取到有效 token +2024-09-23 15:05:37.215 [http-nio-8080-exec-7] ERROR c.g.h.config.GlobalExceptionHandler - 未能读取到有效 token +2024-09-23 15:05:42.310 [http-nio-8080-exec-10] ERROR c.g.h.config.GlobalExceptionHandler - 未能读取到有效 token +2024-09-23 15:05:42.310 [http-nio-8080-exec-1] ERROR c.g.h.config.GlobalExceptionHandler - 未能读取到有效 token +2024-09-23 15:05:42.312 [http-nio-8080-exec-6] ERROR c.g.h.config.GlobalExceptionHandler - 未能读取到有效 token +2024-09-23 15:05:42.312 [http-nio-8080-exec-5] ERROR c.g.h.config.GlobalExceptionHandler - 未能读取到有效 token +2024-09-23 15:05:42.315 [http-nio-8080-exec-9] ERROR c.g.h.config.GlobalExceptionHandler - 未能读取到有效 token +2024-09-23 15:05:42.315 [http-nio-8080-exec-2] ERROR c.g.h.config.GlobalExceptionHandler - 未能读取到有效 token +2024-09-23 15:05:42.317 [http-nio-8080-exec-7] ERROR c.g.h.config.GlobalExceptionHandler - 未能读取到有效 token +2024-09-23 15:05:42.317 [http-nio-8080-exec-4] ERROR c.g.h.config.GlobalExceptionHandler - 未能读取到有效 token +2024-09-23 15:05:42.317 [http-nio-8080-exec-8] ERROR c.g.h.config.GlobalExceptionHandler - 未能读取到有效 token +2024-09-23 15:05:42.320 [http-nio-8080-exec-3] ERROR c.g.h.config.GlobalExceptionHandler - 未能读取到有效 token +2024-09-23 15:05:42.323 [http-nio-8080-exec-10] ERROR c.g.h.config.GlobalExceptionHandler - 未能读取到有效 token +2024-09-23 15:05:42.359 [http-nio-8080-exec-1] ERROR c.g.h.config.GlobalExceptionHandler - 未能读取到有效 token +2024-09-23 15:05:42.363 [http-nio-8080-exec-9] ERROR c.g.h.config.GlobalExceptionHandler - 未能读取到有效 token +2024-09-23 15:05:42.363 [http-nio-8080-exec-6] ERROR c.g.h.config.GlobalExceptionHandler - 未能读取到有效 token +2024-09-23 15:05:42.363 [http-nio-8080-exec-5] ERROR c.g.h.config.GlobalExceptionHandler - 未能读取到有效 token +2024-09-23 15:05:42.379 [http-nio-8080-exec-2] ERROR c.g.h.config.GlobalExceptionHandler - 未能读取到有效 token +2024-09-23 15:05:42.381 [http-nio-8080-exec-8] ERROR c.g.h.config.GlobalExceptionHandler - 未能读取到有效 token +2024-09-23 15:05:42.387 [http-nio-8080-exec-7] ERROR c.g.h.config.GlobalExceptionHandler - 未能读取到有效 token +2024-09-23 15:05:42.390 [http-nio-8080-exec-4] ERROR c.g.h.config.GlobalExceptionHandler - 未能读取到有效 token +2024-09-23 15:05:42.390 [http-nio-8080-exec-3] ERROR c.g.h.config.GlobalExceptionHandler - 未能读取到有效 token +2024-09-23 15:05:42.394 [http-nio-8080-exec-10] ERROR c.g.h.config.GlobalExceptionHandler - 未能读取到有效 token +2024-09-23 15:06:11.601 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown initiated... +2024-09-23 15:06:11.605 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown completed. +2024-09-23 15:06:15.185 [main] INFO o.s.boot.SpringApplication - +██╗ ██╗██████╗ ██╗██╗ █████╗ ███╗ ██╗ ██████╗ +╚██╗██╔╝██╔══██╗██║██║ ██╔══██╗████╗ ██║██╔════╝ + ╚███╔╝ ██████╔╝██║██║ ███████║██╔██╗ ██║██║ ███╗ + ██╔██╗ ██╔══██╗██║██║ ██╔══██║██║╚██╗██║██║ ██║ +██╔╝ ██╗██║ ██║██║███████╗██║ ██║██║ ╚████║╚██████╔╝ +╚═╝ ╚═╝╚═╝ ╚═╝╚═╝╚══════╝╚═╝ ╚═╝╚═╝ ╚═══╝ ╚═════╝ + +^_^ 服务启动成功 He Sheng +# 项目名称:harmony-life-server +# 项目版本:1.0.0 +# 框架版本:3.3.4 +# 最后更新于 2024年 9月 25日 + + +2024-09-23 15:06:15.227 [main] INFO c.g.h.HarmonyLifeServerApplication - Starting HarmonyLifeServerApplication using Java 17.0.8 with PID 26980 (C:\Users\xrilang\Desktop\harmony-life\harmony-life-server\harmony-life-server\target\classes started by xrilang in C:\Users\xrilang\Desktop\harmony-life\harmony-life-server\harmony-life-server) +2024-09-23 15:06:15.229 [main] DEBUG c.g.h.HarmonyLifeServerApplication - Running with Spring Boot v3.3.4, Spring v6.1.13 +2024-09-23 15:06:15.229 [main] INFO c.g.h.HarmonyLifeServerApplication - No active profile set, falling back to 1 default profile: "default" +2024-09-23 15:06:15.773 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode +2024-09-23 15:06:15.774 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data JDBC repositories in DEFAULT mode. +2024-09-23 15:06:15.784 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 7 ms. Found 0 JDBC repository interfaces. +2024-09-23 15:06:15.793 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode +2024-09-23 15:06:15.794 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2024-09-23 15:06:15.806 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 4 ms. Found 0 Redis repository interfaces. +2024-09-23 15:06:16.229 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat initialized with port 8080 (http) +2024-09-23 15:06:16.236 [main] INFO o.a.coyote.http11.Http11NioProtocol - Initializing ProtocolHandler ["http-nio-8080"] +2024-09-23 15:06:16.239 [main] INFO o.a.catalina.core.StandardService - Starting service [Tomcat] +2024-09-23 15:06:16.239 [main] INFO o.a.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/10.1.30] +2024-09-23 15:06:16.300 [main] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring embedded WebApplicationContext +2024-09-23 15:06:16.301 [main] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 1043 ms +2024-09-23 15:06:16.957 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Starting... +2024-09-23 15:06:17.051 [main] INFO com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - Added connection com.mysql.cj.jdbc.ConnectionImpl@66682e8f +2024-09-23 15:06:17.052 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Start completed. +2024-09-23 15:06:17.157 [main] INFO o.a.coyote.http11.Http11NioProtocol - Starting ProtocolHandler ["http-nio-8080"] +2024-09-23 15:06:17.171 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat started on port 8080 (http) with context path '/' +2024-09-23 15:06:17.178 [main] INFO c.g.h.HarmonyLifeServerApplication - Started HarmonyLifeServerApplication in 2.29 seconds (process running for 2.718) +2024-09-23 15:06:17.235 [http-nio-8080-exec-1] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring DispatcherServlet 'dispatcherServlet' +2024-09-23 15:06:17.236 [http-nio-8080-exec-1] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet' +2024-09-23 15:06:17.237 [http-nio-8080-exec-1] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 0 ms +2024-09-23 15:06:17.271 [http-nio-8080-exec-3] ERROR c.g.h.config.GlobalExceptionHandler - 未能读取到有效 token +2024-09-23 15:06:17.271 [http-nio-8080-exec-8] ERROR c.g.h.config.GlobalExceptionHandler - 未能读取到有效 token +2024-09-23 15:06:17.271 [http-nio-8080-exec-7] ERROR c.g.h.config.GlobalExceptionHandler - 未能读取到有效 token +2024-09-23 15:06:17.278 [http-nio-8080-exec-5] ERROR c.g.h.config.GlobalExceptionHandler - 未能读取到有效 token +2024-09-23 15:06:17.325 [http-nio-8080-exec-6] ERROR c.g.h.config.GlobalExceptionHandler - 未能读取到有效 token +2024-09-23 15:06:17.325 [http-nio-8080-exec-2] ERROR c.g.h.config.GlobalExceptionHandler - 未能读取到有效 token +2024-09-23 15:06:17.326 [http-nio-8080-exec-9] ERROR c.g.h.config.GlobalExceptionHandler - 未能读取到有效 token +2024-09-23 15:06:17.326 [http-nio-8080-exec-4] ERROR c.g.h.config.GlobalExceptionHandler - 未能读取到有效 token +2024-09-23 15:06:17.328 [http-nio-8080-exec-9] ERROR c.g.h.config.GlobalExceptionHandler - 未能读取到有效 token +2024-09-23 15:06:17.328 [http-nio-8080-exec-1] ERROR c.g.h.config.GlobalExceptionHandler - 未能读取到有效 token +2024-09-23 15:06:17.331 [http-nio-8080-exec-5] ERROR c.g.h.config.GlobalExceptionHandler - 未能读取到有效 token +2024-09-23 15:06:17.331 [http-nio-8080-exec-7] ERROR c.g.h.config.GlobalExceptionHandler - 未能读取到有效 token +2024-09-23 15:06:17.362 [http-nio-8080-exec-3] ERROR c.g.h.config.GlobalExceptionHandler - 未能读取到有效 token +2024-09-23 15:06:17.362 [http-nio-8080-exec-8] ERROR c.g.h.config.GlobalExceptionHandler - 未能读取到有效 token +2024-09-23 15:06:17.366 [http-nio-8080-exec-6] ERROR c.g.h.config.GlobalExceptionHandler - 未能读取到有效 token +2024-09-23 15:06:17.366 [http-nio-8080-exec-2] ERROR c.g.h.config.GlobalExceptionHandler - 未能读取到有效 token +2024-09-23 15:06:17.375 [http-nio-8080-exec-4] ERROR c.g.h.config.GlobalExceptionHandler - 未能读取到有效 token +2024-09-23 15:06:17.376 [http-nio-8080-exec-10] ERROR c.g.h.config.GlobalExceptionHandler - 未能读取到有效 token +2024-09-23 15:06:17.378 [http-nio-8080-exec-9] ERROR c.g.h.config.GlobalExceptionHandler - 未能读取到有效 token +2024-09-23 15:06:17.378 [http-nio-8080-exec-1] ERROR c.g.h.config.GlobalExceptionHandler - 未能读取到有效 token +2024-09-23 15:06:17.380 [http-nio-8080-exec-7] ERROR c.g.h.config.GlobalExceptionHandler - 未能读取到有效 token +2024-09-23 15:06:27.685 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown initiated... +2024-09-23 15:06:27.689 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown completed. +2024-09-23 15:06:31.203 [main] INFO o.s.boot.SpringApplication - +██╗ ██╗██████╗ ██╗██╗ █████╗ ███╗ ██╗ ██████╗ +╚██╗██╔╝██╔══██╗██║██║ ██╔══██╗████╗ ██║██╔════╝ + ╚███╔╝ ██████╔╝██║██║ ███████║██╔██╗ ██║██║ ███╗ + ██╔██╗ ██╔══██╗██║██║ ██╔══██║██║╚██╗██║██║ ██║ +██╔╝ ██╗██║ ██║██║███████╗██║ ██║██║ ╚████║╚██████╔╝ +╚═╝ ╚═╝╚═╝ ╚═╝╚═╝╚══════╝╚═╝ ╚═╝╚═╝ ╚═══╝ ╚═════╝ + +^_^ 服务启动成功 He Sheng +# 项目名称:harmony-life-server +# 项目版本:1.0.0 +# 框架版本:3.3.4 +# 最后更新于 2024年 9月 25日 + + +2024-09-23 15:06:31.247 [main] INFO c.g.h.HarmonyLifeServerApplication - Starting HarmonyLifeServerApplication using Java 17.0.8 with PID 3168 (C:\Users\xrilang\Desktop\harmony-life\harmony-life-server\harmony-life-server\target\classes started by xrilang in C:\Users\xrilang\Desktop\harmony-life\harmony-life-server\harmony-life-server) +2024-09-23 15:06:31.248 [main] DEBUG c.g.h.HarmonyLifeServerApplication - Running with Spring Boot v3.3.4, Spring v6.1.13 +2024-09-23 15:06:31.248 [main] INFO c.g.h.HarmonyLifeServerApplication - No active profile set, falling back to 1 default profile: "default" +2024-09-23 15:06:31.790 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode +2024-09-23 15:06:31.791 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data JDBC repositories in DEFAULT mode. +2024-09-23 15:06:31.802 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 8 ms. Found 0 JDBC repository interfaces. +2024-09-23 15:06:31.811 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode +2024-09-23 15:06:31.812 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2024-09-23 15:06:31.825 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 5 ms. Found 0 Redis repository interfaces. +2024-09-23 15:06:32.246 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat initialized with port 8080 (http) +2024-09-23 15:06:32.253 [main] INFO o.a.coyote.http11.Http11NioProtocol - Initializing ProtocolHandler ["http-nio-8080"] +2024-09-23 15:06:32.255 [main] INFO o.a.catalina.core.StandardService - Starting service [Tomcat] +2024-09-23 15:06:32.256 [main] INFO o.a.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/10.1.30] +2024-09-23 15:06:32.312 [main] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring embedded WebApplicationContext +2024-09-23 15:06:32.312 [main] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 1035 ms +2024-09-23 15:06:32.989 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Starting... +2024-09-23 15:06:33.087 [main] INFO com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - Added connection com.mysql.cj.jdbc.ConnectionImpl@6968bb65 +2024-09-23 15:06:33.088 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Start completed. +2024-09-23 15:06:33.200 [main] INFO o.a.coyote.http11.Http11NioProtocol - Starting ProtocolHandler ["http-nio-8080"] +2024-09-23 15:06:33.218 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat started on port 8080 (http) with context path '/' +2024-09-23 15:06:33.225 [main] INFO c.g.h.HarmonyLifeServerApplication - Started HarmonyLifeServerApplication in 2.3 seconds (process running for 2.705) +2024-09-23 15:06:37.669 [http-nio-8080-exec-1] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring DispatcherServlet 'dispatcherServlet' +2024-09-23 15:06:37.669 [http-nio-8080-exec-1] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet' +2024-09-23 15:06:37.670 [http-nio-8080-exec-1] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 1 ms +2024-09-23 15:06:37.965 [http-nio-8080-exec-1] ERROR c.g.h.config.GlobalExceptionHandler - 未能读取到有效 token +2024-09-23 15:06:37.970 [http-nio-8080-exec-4] ERROR c.g.h.config.GlobalExceptionHandler - 未能读取到有效 token +2024-09-23 15:07:14.947 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown initiated... +2024-09-23 15:07:14.951 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown completed. +2024-09-23 15:07:18.620 [main] INFO o.s.boot.SpringApplication - +██╗ ██╗██████╗ ██╗██╗ █████╗ ███╗ ██╗ ██████╗ +╚██╗██╔╝██╔══██╗██║██║ ██╔══██╗████╗ ██║██╔════╝ + ╚███╔╝ ██████╔╝██║██║ ███████║██╔██╗ ██║██║ ███╗ + ██╔██╗ ██╔══██╗██║██║ ██╔══██║██║╚██╗██║██║ ██║ +██╔╝ ██╗██║ ██║██║███████╗██║ ██║██║ ╚████║╚██████╔╝ +╚═╝ ╚═╝╚═╝ ╚═╝╚═╝╚══════╝╚═╝ ╚═╝╚═╝ ╚═══╝ ╚═════╝ + +^_^ 服务启动成功 He Sheng +# 项目名称:harmony-life-server +# 项目版本:1.0.0 +# 框架版本:3.3.4 +# 最后更新于 2024年 9月 25日 + + +2024-09-23 15:07:18.666 [main] INFO c.g.h.HarmonyLifeServerApplication - Starting HarmonyLifeServerApplication using Java 17.0.8 with PID 30976 (C:\Users\xrilang\Desktop\harmony-life\harmony-life-server\harmony-life-server\target\classes started by xrilang in C:\Users\xrilang\Desktop\harmony-life\harmony-life-server\harmony-life-server) +2024-09-23 15:07:18.666 [main] DEBUG c.g.h.HarmonyLifeServerApplication - Running with Spring Boot v3.3.4, Spring v6.1.13 +2024-09-23 15:07:18.667 [main] INFO c.g.h.HarmonyLifeServerApplication - No active profile set, falling back to 1 default profile: "default" +2024-09-23 15:07:19.235 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode +2024-09-23 15:07:19.236 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data JDBC repositories in DEFAULT mode. +2024-09-23 15:07:19.248 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 9 ms. Found 0 JDBC repository interfaces. +2024-09-23 15:07:19.258 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode +2024-09-23 15:07:19.259 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2024-09-23 15:07:19.270 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 4 ms. Found 0 Redis repository interfaces. +2024-09-23 15:07:19.712 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat initialized with port 8080 (http) +2024-09-23 15:07:19.719 [main] INFO o.a.coyote.http11.Http11NioProtocol - Initializing ProtocolHandler ["http-nio-8080"] +2024-09-23 15:07:19.721 [main] INFO o.a.catalina.core.StandardService - Starting service [Tomcat] +2024-09-23 15:07:19.721 [main] INFO o.a.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/10.1.30] +2024-09-23 15:07:19.782 [main] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring embedded WebApplicationContext +2024-09-23 15:07:19.783 [main] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 1087 ms +2024-09-23 15:07:20.458 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Starting... +2024-09-23 15:07:20.553 [main] INFO com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - Added connection com.mysql.cj.jdbc.ConnectionImpl@55fe9c2f +2024-09-23 15:07:20.554 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Start completed. +2024-09-23 15:07:20.658 [main] INFO o.a.coyote.http11.Http11NioProtocol - Starting ProtocolHandler ["http-nio-8080"] +2024-09-23 15:07:20.673 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat started on port 8080 (http) with context path '/' +2024-09-23 15:07:20.679 [main] INFO c.g.h.HarmonyLifeServerApplication - Started HarmonyLifeServerApplication in 2.348 seconds (process running for 2.781) +2024-09-23 15:07:20.841 [http-nio-8080-exec-1] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring DispatcherServlet 'dispatcherServlet' +2024-09-23 15:07:20.841 [http-nio-8080-exec-1] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet' +2024-09-23 15:07:20.843 [http-nio-8080-exec-1] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 2 ms +2024-09-23 15:07:21.137 [http-nio-8080-exec-2] ERROR c.g.h.config.GlobalExceptionHandler - 未能读取到有效 token +2024-09-23 15:07:21.337 [http-nio-8080-exec-4] INFO o.s.api.AbstractOpenApiResource - Init duration for springdoc-openapi is: 146 ms +2024-09-23 15:07:24.313 [http-nio-8080-exec-5] ERROR c.g.h.config.GlobalExceptionHandler - 未能读取到有效 token +2024-09-23 15:08:17.503 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown initiated... +2024-09-23 15:08:17.507 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown completed. +2024-09-23 15:08:21.041 [main] INFO o.s.boot.SpringApplication - +██╗ ██╗██████╗ ██╗██╗ █████╗ ███╗ ██╗ ██████╗ +╚██╗██╔╝██╔══██╗██║██║ ██╔══██╗████╗ ██║██╔════╝ + ╚███╔╝ ██████╔╝██║██║ ███████║██╔██╗ ██║██║ ███╗ + ██╔██╗ ██╔══██╗██║██║ ██╔══██║██║╚██╗██║██║ ██║ +██╔╝ ██╗██║ ██║██║███████╗██║ ██║██║ ╚████║╚██████╔╝ +╚═╝ ╚═╝╚═╝ ╚═╝╚═╝╚══════╝╚═╝ ╚═╝╚═╝ ╚═══╝ ╚═════╝ + +^_^ 服务启动成功 He Sheng +# 项目名称:harmony-life-server +# 项目版本:1.0.0 +# 框架版本:3.3.4 +# 最后更新于 2024年 9月 25日 + + +2024-09-23 15:08:21.085 [main] INFO c.g.h.HarmonyLifeServerApplication - Starting HarmonyLifeServerApplication using Java 17.0.8 with PID 24968 (C:\Users\xrilang\Desktop\harmony-life\harmony-life-server\harmony-life-server\target\classes started by xrilang in C:\Users\xrilang\Desktop\harmony-life\harmony-life-server\harmony-life-server) +2024-09-23 15:08:21.086 [main] DEBUG c.g.h.HarmonyLifeServerApplication - Running with Spring Boot v3.3.4, Spring v6.1.13 +2024-09-23 15:08:21.087 [main] INFO c.g.h.HarmonyLifeServerApplication - No active profile set, falling back to 1 default profile: "default" +2024-09-23 15:08:21.634 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode +2024-09-23 15:08:21.634 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data JDBC repositories in DEFAULT mode. +2024-09-23 15:08:21.645 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 7 ms. Found 0 JDBC repository interfaces. +2024-09-23 15:08:21.654 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode +2024-09-23 15:08:21.655 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2024-09-23 15:08:21.667 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 5 ms. Found 0 Redis repository interfaces. +2024-09-23 15:08:22.100 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat initialized with port 8080 (http) +2024-09-23 15:08:22.108 [main] INFO o.a.coyote.http11.Http11NioProtocol - Initializing ProtocolHandler ["http-nio-8080"] +2024-09-23 15:08:22.110 [main] INFO o.a.catalina.core.StandardService - Starting service [Tomcat] +2024-09-23 15:08:22.111 [main] INFO o.a.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/10.1.30] +2024-09-23 15:08:22.167 [main] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring embedded WebApplicationContext +2024-09-23 15:08:22.167 [main] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 1051 ms +2024-09-23 15:08:22.838 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Starting... +2024-09-23 15:08:22.933 [main] INFO com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - Added connection com.mysql.cj.jdbc.ConnectionImpl@66682e8f +2024-09-23 15:08:22.934 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Start completed. +2024-09-23 15:08:23.052 [main] INFO o.a.coyote.http11.Http11NioProtocol - Starting ProtocolHandler ["http-nio-8080"] +2024-09-23 15:08:23.070 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat started on port 8080 (http) with context path '/' +2024-09-23 15:08:23.076 [main] INFO c.g.h.HarmonyLifeServerApplication - Started HarmonyLifeServerApplication in 2.325 seconds (process running for 2.743) +2024-09-23 15:08:23.154 [http-nio-8080-exec-1] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring DispatcherServlet 'dispatcherServlet' +2024-09-23 15:08:23.154 [http-nio-8080-exec-1] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet' +2024-09-23 15:08:23.156 [http-nio-8080-exec-1] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 1 ms +2024-09-23 15:08:23.366 [http-nio-8080-exec-5] ERROR c.g.h.config.GlobalExceptionHandler - 未能读取到有效 token +2024-09-23 15:08:23.558 [http-nio-8080-exec-4] INFO o.s.api.AbstractOpenApiResource - Init duration for springdoc-openapi is: 135 ms +2024-09-23 15:11:22.903 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown initiated... +2024-09-23 15:11:22.908 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown completed. +2024-09-23 15:11:26.396 [main] INFO o.s.boot.SpringApplication - +██╗ ██╗██████╗ ██╗██╗ █████╗ ███╗ ██╗ ██████╗ +╚██╗██╔╝██╔══██╗██║██║ ██╔══██╗████╗ ██║██╔════╝ + ╚███╔╝ ██████╔╝██║██║ ███████║██╔██╗ ██║██║ ███╗ + ██╔██╗ ██╔══██╗██║██║ ██╔══██║██║╚██╗██║██║ ██║ +██╔╝ ██╗██║ ██║██║███████╗██║ ██║██║ ╚████║╚██████╔╝ +╚═╝ ╚═╝╚═╝ ╚═╝╚═╝╚══════╝╚═╝ ╚═╝╚═╝ ╚═══╝ ╚═════╝ + +^_^ 服务启动成功 He Sheng +# 项目名称:harmony-life-server +# 项目版本:1.0.0 +# 框架版本:3.3.4 +# 最后更新于 2024年 9月 25日 + + +2024-09-23 15:11:26.441 [main] INFO c.g.h.HarmonyLifeServerApplication - Starting HarmonyLifeServerApplication using Java 17.0.8 with PID 28404 (C:\Users\xrilang\Desktop\harmony-life\harmony-life-server\harmony-life-server\target\classes started by xrilang in C:\Users\xrilang\Desktop\harmony-life\harmony-life-server\harmony-life-server) +2024-09-23 15:11:26.441 [main] DEBUG c.g.h.HarmonyLifeServerApplication - Running with Spring Boot v3.3.4, Spring v6.1.13 +2024-09-23 15:11:26.441 [main] INFO c.g.h.HarmonyLifeServerApplication - No active profile set, falling back to 1 default profile: "default" +2024-09-23 15:11:26.985 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode +2024-09-23 15:11:26.986 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data JDBC repositories in DEFAULT mode. +2024-09-23 15:11:26.996 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 7 ms. Found 0 JDBC repository interfaces. +2024-09-23 15:11:27.006 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode +2024-09-23 15:11:27.007 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2024-09-23 15:11:27.020 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 5 ms. Found 0 Redis repository interfaces. +2024-09-23 15:11:27.440 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat initialized with port 8080 (http) +2024-09-23 15:11:27.451 [main] INFO o.a.coyote.http11.Http11NioProtocol - Initializing ProtocolHandler ["http-nio-8080"] +2024-09-23 15:11:27.454 [main] INFO o.a.catalina.core.StandardService - Starting service [Tomcat] +2024-09-23 15:11:27.454 [main] INFO o.a.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/10.1.30] +2024-09-23 15:11:27.507 [main] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring embedded WebApplicationContext +2024-09-23 15:11:27.507 [main] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 1038 ms +2024-09-23 15:11:28.171 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Starting... +2024-09-23 15:11:28.262 [main] INFO com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - Added connection com.mysql.cj.jdbc.ConnectionImpl@2052f095 +2024-09-23 15:11:28.263 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Start completed. +2024-09-23 15:11:28.382 [main] INFO o.a.coyote.http11.Http11NioProtocol - Starting ProtocolHandler ["http-nio-8080"] +2024-09-23 15:11:28.398 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat started on port 8080 (http) with context path '/' +2024-09-23 15:11:28.405 [main] INFO c.g.h.HarmonyLifeServerApplication - Started HarmonyLifeServerApplication in 2.278 seconds (process running for 2.687) +2024-09-23 15:11:35.911 [http-nio-8080-exec-1] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring DispatcherServlet 'dispatcherServlet' +2024-09-23 15:11:35.911 [http-nio-8080-exec-1] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet' +2024-09-23 15:11:35.912 [http-nio-8080-exec-1] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 1 ms +2024-09-23 15:11:35.932 [http-nio-8080-exec-1] ERROR c.g.h.config.GlobalExceptionHandler - 未能读取到有效 token +2024-09-23 15:11:36.128 [http-nio-8080-exec-7] INFO o.s.api.AbstractOpenApiResource - Init duration for springdoc-openapi is: 146 ms +2024-09-23 15:11:38.530 [http-nio-8080-exec-4] ERROR c.g.h.config.GlobalExceptionHandler - 未能读取到有效 token +2024-09-23 15:11:43.502 [http-nio-8080-exec-5] ERROR c.g.h.config.GlobalExceptionHandler - 未能读取到有效 token +2024-09-23 15:11:44.348 [http-nio-8080-exec-3] ERROR c.g.h.config.GlobalExceptionHandler - 未能读取到有效 token +2024-09-23 15:12:44.785 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown initiated... +2024-09-23 15:12:44.788 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown completed. +2024-09-23 15:12:48.303 [main] INFO o.s.boot.SpringApplication - +██╗ ██╗██████╗ ██╗██╗ █████╗ ███╗ ██╗ ██████╗ +╚██╗██╔╝██╔══██╗██║██║ ██╔══██╗████╗ ██║██╔════╝ + ╚███╔╝ ██████╔╝██║██║ ███████║██╔██╗ ██║██║ ███╗ + ██╔██╗ ██╔══██╗██║██║ ██╔══██║██║╚██╗██║██║ ██║ +██╔╝ ██╗██║ ██║██║███████╗██║ ██║██║ ╚████║╚██████╔╝ +╚═╝ ╚═╝╚═╝ ╚═╝╚═╝╚══════╝╚═╝ ╚═╝╚═╝ ╚═══╝ ╚═════╝ + +^_^ 服务启动成功 He Sheng +# 项目名称:harmony-life-server +# 项目版本:1.0.0 +# 框架版本:3.3.4 +# 最后更新于 2024年 9月 25日 + + +2024-09-23 15:12:48.347 [main] INFO c.g.h.HarmonyLifeServerApplication - Starting HarmonyLifeServerApplication using Java 17.0.8 with PID 26112 (C:\Users\xrilang\Desktop\harmony-life\harmony-life-server\harmony-life-server\target\classes started by xrilang in C:\Users\xrilang\Desktop\harmony-life\harmony-life-server\harmony-life-server) +2024-09-23 15:12:48.347 [main] DEBUG c.g.h.HarmonyLifeServerApplication - Running with Spring Boot v3.3.4, Spring v6.1.13 +2024-09-23 15:12:48.348 [main] INFO c.g.h.HarmonyLifeServerApplication - No active profile set, falling back to 1 default profile: "default" +2024-09-23 15:12:48.882 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode +2024-09-23 15:12:48.883 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data JDBC repositories in DEFAULT mode. +2024-09-23 15:12:48.894 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 8 ms. Found 0 JDBC repository interfaces. +2024-09-23 15:12:48.903 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode +2024-09-23 15:12:48.904 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2024-09-23 15:12:48.915 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 5 ms. Found 0 Redis repository interfaces. +2024-09-23 15:12:49.333 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat initialized with port 8080 (http) +2024-09-23 15:12:49.340 [main] INFO o.a.coyote.http11.Http11NioProtocol - Initializing ProtocolHandler ["http-nio-8080"] +2024-09-23 15:12:49.342 [main] INFO o.a.catalina.core.StandardService - Starting service [Tomcat] +2024-09-23 15:12:49.342 [main] INFO o.a.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/10.1.30] +2024-09-23 15:12:49.402 [main] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring embedded WebApplicationContext +2024-09-23 15:12:49.402 [main] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 1026 ms +2024-09-23 15:12:50.067 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Starting... +2024-09-23 15:12:50.159 [main] INFO com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - Added connection com.mysql.cj.jdbc.ConnectionImpl@731ab49b +2024-09-23 15:12:50.160 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Start completed. +2024-09-23 15:12:50.272 [main] INFO o.a.coyote.http11.Http11NioProtocol - Starting ProtocolHandler ["http-nio-8080"] +2024-09-23 15:12:50.285 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat started on port 8080 (http) with context path '/' +2024-09-23 15:12:50.292 [main] INFO c.g.h.HarmonyLifeServerApplication - Started HarmonyLifeServerApplication in 2.257 seconds (process running for 2.659) +2024-09-23 15:12:58.424 [http-nio-8080-exec-1] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring DispatcherServlet 'dispatcherServlet' +2024-09-23 15:12:58.424 [http-nio-8080-exec-1] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet' +2024-09-23 15:12:58.425 [http-nio-8080-exec-1] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 1 ms +2024-09-23 15:12:58.583 [http-nio-8080-exec-8] ERROR c.g.h.config.GlobalExceptionHandler - 未能读取到有效 token +2024-09-23 15:12:58.764 [http-nio-8080-exec-4] INFO o.s.api.AbstractOpenApiResource - Init duration for springdoc-openapi is: 127 ms +2024-09-23 15:13:01.606 [http-nio-8080-exec-5] ERROR c.g.h.config.GlobalExceptionHandler - 未能读取到有效 token +2024-09-23 15:13:03.550 [http-nio-8080-exec-6] ERROR c.g.h.config.GlobalExceptionHandler - 未能读取到有效 token +2024-09-23 15:13:50.637 [http-nio-8080-exec-7] ERROR c.g.h.config.GlobalExceptionHandler - No static resource auth/2step-code. +2024-09-23 15:14:17.511 [http-nio-8080-exec-10] DEBUG c.g.h.m.UserMapper.getUserByAccount - ==> Preparing: SELECT * from user_info where username=? AND status=1 +2024-09-23 15:14:17.540 [http-nio-8080-exec-10] DEBUG c.g.h.m.UserMapper.getUserByAccount - ==> Parameters: xrilang(String) +2024-09-23 15:14:17.577 [http-nio-8080-exec-10] DEBUG c.g.h.m.UserMapper.getUserByAccount - <== Total: 1 +2024-09-23 15:14:17.582 [http-nio-8080-exec-10] INFO c.g.h.service.impl.AuthServiceImpl - 查询到用户UserInfo(id=1, name=萌狼蓝天, username=xrilang, password=VomAhgnr1XAkMKzicqYxdCFBx0ooiXBN66Xq9XCWGJTsJgH3uLJVAVGkoZi2n1Ml, avatar=https://q1.qlogo.cn/g?b=qq&nk=3447902411&s=640, status=1, telephone=null, email=null, createTime=2024-09-22 06:31:02.0, merchantCode=null, deleted=0, roleId=root, creatorId=0) +2024-09-23 15:14:17.584 [http-nio-8080-exec-10] WARN c.g.h.service.impl.AuthServiceImpl - 用户登录密码错误 +2024-09-23 15:14:23.313 [http-nio-8080-exec-1] DEBUG c.g.h.m.UserMapper.getUserByAccount - ==> Preparing: SELECT * from user_info where username=? AND status=1 +2024-09-23 15:14:23.314 [http-nio-8080-exec-1] DEBUG c.g.h.m.UserMapper.getUserByAccount - ==> Parameters: xrilang(String) +2024-09-23 15:14:23.315 [http-nio-8080-exec-1] DEBUG c.g.h.m.UserMapper.getUserByAccount - <== Total: 1 +2024-09-23 15:14:23.316 [http-nio-8080-exec-1] INFO c.g.h.service.impl.AuthServiceImpl - 查询到用户UserInfo(id=1, name=萌狼蓝天, username=xrilang, password=VomAhgnr1XAkMKzicqYxdCFBx0ooiXBN66Xq9XCWGJTsJgH3uLJVAVGkoZi2n1Ml, avatar=https://q1.qlogo.cn/g?b=qq&nk=3447902411&s=640, status=1, telephone=null, email=null, createTime=2024-09-22 06:31:02.0, merchantCode=null, deleted=0, roleId=root, creatorId=0) +2024-09-23 15:14:23.316 [http-nio-8080-exec-1] WARN c.g.h.service.impl.AuthServiceImpl - 用户登录密码错误 +2024-09-23 15:14:32.175 [http-nio-8080-exec-8] DEBUG c.g.h.m.UserMapper.getUserByAccount - ==> Preparing: SELECT * from user_info where username=? AND status=1 +2024-09-23 15:14:32.176 [http-nio-8080-exec-8] DEBUG c.g.h.m.UserMapper.getUserByAccount - ==> Parameters: xrilang(String) +2024-09-23 15:14:32.177 [http-nio-8080-exec-8] DEBUG c.g.h.m.UserMapper.getUserByAccount - <== Total: 1 +2024-09-23 15:14:32.177 [http-nio-8080-exec-8] INFO c.g.h.service.impl.AuthServiceImpl - 查询到用户UserInfo(id=1, name=萌狼蓝天, username=xrilang, password=VomAhgnr1XAkMKzicqYxdCFBx0ooiXBN66Xq9XCWGJTsJgH3uLJVAVGkoZi2n1Ml, avatar=https://q1.qlogo.cn/g?b=qq&nk=3447902411&s=640, status=1, telephone=null, email=null, createTime=2024-09-22 06:31:02.0, merchantCode=null, deleted=0, roleId=root, creatorId=0) +2024-09-23 15:14:32.177 [http-nio-8080-exec-8] WARN c.g.h.service.impl.AuthServiceImpl - 用户登录密码错误 +2024-09-23 15:14:47.254 [http-nio-8080-exec-2] ERROR c.g.h.config.GlobalExceptionHandler - No static resource auth/2step-code. +2024-09-23 15:15:02.070 [http-nio-8080-exec-4] DEBUG c.g.h.m.UserMapper.getUserByAccount - ==> Preparing: SELECT * from user_info where username=? AND status=1 +2024-09-23 15:15:02.071 [http-nio-8080-exec-4] DEBUG c.g.h.m.UserMapper.getUserByAccount - ==> Parameters: admin(String) +2024-09-23 15:15:02.071 [http-nio-8080-exec-4] DEBUG c.g.h.m.UserMapper.getUserByAccount - <== Total: 0 +2024-09-23 15:15:26.660 [http-nio-8080-exec-5] ERROR c.g.h.config.GlobalExceptionHandler - No static resource auth/2step-code. +2024-09-23 15:15:32.991 [http-nio-8080-exec-6] DEBUG c.g.h.m.UserMapper.getUserByAccount - ==> Preparing: SELECT * from user_info where username=? AND status=1 +2024-09-23 15:15:32.992 [http-nio-8080-exec-6] DEBUG c.g.h.m.UserMapper.getUserByAccount - ==> Parameters: admin(String) +2024-09-23 15:15:32.992 [http-nio-8080-exec-6] DEBUG c.g.h.m.UserMapper.getUserByAccount - <== Total: 0 +2024-09-23 15:15:45.436 [http-nio-8080-exec-7] ERROR c.g.h.config.GlobalExceptionHandler - No static resource auth/2step-code. +2024-09-23 15:15:57.226 [http-nio-8080-exec-3] DEBUG c.g.h.m.UserMapper.getUserByAccount - ==> Preparing: SELECT * from user_info where username=? AND status=1 +2024-09-23 15:15:57.227 [http-nio-8080-exec-3] DEBUG c.g.h.m.UserMapper.getUserByAccount - ==> Parameters: admin(String) +2024-09-23 15:15:57.228 [http-nio-8080-exec-3] DEBUG c.g.h.m.UserMapper.getUserByAccount - <== Total: 0 +2024-09-23 15:16:03.620 [http-nio-8080-exec-9] DEBUG c.g.h.m.UserMapper.getUserByAccount - ==> Preparing: SELECT * from user_info where username=? AND status=1 +2024-09-23 15:16:03.620 [http-nio-8080-exec-9] DEBUG c.g.h.m.UserMapper.getUserByAccount - ==> Parameters: admin(String) +2024-09-23 15:16:03.620 [http-nio-8080-exec-9] DEBUG c.g.h.m.UserMapper.getUserByAccount - <== Total: 0 +2024-09-23 15:16:06.834 [http-nio-8080-exec-10] DEBUG c.g.h.m.UserMapper.getUserByAccount - ==> Preparing: SELECT * from user_info where username=? AND status=1 +2024-09-23 15:16:06.834 [http-nio-8080-exec-10] DEBUG c.g.h.m.UserMapper.getUserByAccount - ==> Parameters: admin(String) +2024-09-23 15:16:06.835 [http-nio-8080-exec-10] DEBUG c.g.h.m.UserMapper.getUserByAccount - <== Total: 0 +2024-09-23 15:16:10.654 [http-nio-8080-exec-1] DEBUG c.g.h.m.UserMapper.getUserByAccount - ==> Preparing: SELECT * from user_info where username=? AND status=1 +2024-09-23 15:16:10.654 [http-nio-8080-exec-1] DEBUG c.g.h.m.UserMapper.getUserByAccount - ==> Parameters: admin(String) +2024-09-23 15:16:10.655 [http-nio-8080-exec-1] DEBUG c.g.h.m.UserMapper.getUserByAccount - <== Total: 0 +2024-09-23 15:17:20.764 [http-nio-8080-exec-2] ERROR c.g.h.config.GlobalExceptionHandler - 未能读取到有效 token +2024-09-23 15:17:22.771 [http-nio-8080-exec-6] ERROR c.g.h.config.GlobalExceptionHandler - 未能读取到有效 token +2024-09-23 15:17:28.620 [http-nio-8080-exec-7] ERROR c.g.h.config.GlobalExceptionHandler - 未能读取到有效 token +2024-09-23 15:17:39.025 [http-nio-8080-exec-3] DEBUG c.g.h.m.UserMapper.getUserByAccount - ==> Preparing: SELECT * from user_info where username=? AND status=1 +2024-09-23 15:17:39.025 [http-nio-8080-exec-3] DEBUG c.g.h.m.UserMapper.getUserByAccount - ==> Parameters: xrilang(String) +2024-09-23 15:17:39.026 [http-nio-8080-exec-3] DEBUG c.g.h.m.UserMapper.getUserByAccount - <== Total: 1 +2024-09-23 15:17:39.027 [http-nio-8080-exec-3] INFO c.g.h.service.impl.AuthServiceImpl - 查询到用户UserInfo(id=1, name=萌狼蓝天, username=xrilang, password=VomAhgnr1XAkMKzicqYxdCFBx0ooiXBN66Xq9XCWGJTsJgH3uLJVAVGkoZi2n1Ml, avatar=https://q1.qlogo.cn/g?b=qq&nk=3447902411&s=640, status=1, telephone=null, email=null, createTime=2024-09-22 06:31:02.0, merchantCode=null, deleted=0, roleId=root, creatorId=0) +2024-09-23 15:17:39.027 [http-nio-8080-exec-3] WARN c.g.h.service.impl.AuthServiceImpl - 用户登录密码错误 +2024-09-23 15:17:42.653 [http-nio-8080-exec-9] DEBUG c.g.h.m.UserMapper.getUserByAccount - ==> Preparing: SELECT * from user_info where username=? AND status=1 +2024-09-23 15:17:42.654 [http-nio-8080-exec-9] DEBUG c.g.h.m.UserMapper.getUserByAccount - ==> Parameters: xrilang(String) +2024-09-23 15:17:42.655 [http-nio-8080-exec-9] DEBUG c.g.h.m.UserMapper.getUserByAccount - <== Total: 1 +2024-09-23 15:17:42.655 [http-nio-8080-exec-9] INFO c.g.h.service.impl.AuthServiceImpl - 查询到用户UserInfo(id=1, name=萌狼蓝天, username=xrilang, password=VomAhgnr1XAkMKzicqYxdCFBx0ooiXBN66Xq9XCWGJTsJgH3uLJVAVGkoZi2n1Ml, avatar=https://q1.qlogo.cn/g?b=qq&nk=3447902411&s=640, status=1, telephone=null, email=null, createTime=2024-09-22 06:31:02.0, merchantCode=null, deleted=0, roleId=root, creatorId=0) +2024-09-23 15:17:42.976 [http-nio-8080-exec-9] ERROR c.g.h.config.GlobalExceptionHandler - Unable to connect to Redis +2024-09-23 15:17:59.140 [http-nio-8080-exec-10] DEBUG c.g.h.m.UserMapper.getUserByAccount - ==> Preparing: SELECT * from user_info where username=? AND status=1 +2024-09-23 15:17:59.140 [http-nio-8080-exec-10] DEBUG c.g.h.m.UserMapper.getUserByAccount - ==> Parameters: xrilang(String) +2024-09-23 15:17:59.141 [http-nio-8080-exec-10] DEBUG c.g.h.m.UserMapper.getUserByAccount - <== Total: 1 +2024-09-23 15:17:59.141 [http-nio-8080-exec-10] INFO c.g.h.service.impl.AuthServiceImpl - 查询到用户UserInfo(id=1, name=萌狼蓝天, username=xrilang, password=VomAhgnr1XAkMKzicqYxdCFBx0ooiXBN66Xq9XCWGJTsJgH3uLJVAVGkoZi2n1Ml, avatar=https://q1.qlogo.cn/g?b=qq&nk=3447902411&s=640, status=1, telephone=null, email=null, createTime=2024-09-22 06:31:02.0, merchantCode=null, deleted=0, roleId=root, creatorId=0) +2024-09-23 15:17:59.202 [http-nio-8080-exec-10] INFO c.g.h.service.impl.AuthServiceImpl - xrilang(xrilang)登录成功,id:1;身份:root +2024-09-23 15:17:59.203 [http-nio-8080-exec-10] INFO c.g.h.service.impl.AuthServiceImpl - Token:bf17c7d5-5dfa-4332-bc46-2ccdcc20f2cd +2024-09-23 15:18:02.177 [http-nio-8080-exec-1] ERROR c.g.h.config.GlobalExceptionHandler - No static resource favicon.ico. +2024-09-23 15:18:04.702 [http-nio-8080-exec-8] INFO c.g.h.service.impl.UserServiceImpl - 查询用户1的用户信息 +2024-09-23 15:18:04.704 [http-nio-8080-exec-8] DEBUG c.g.h.mapper.UserMapper.getUserById - ==> Preparing: SELECT * from user_info where id=? AND status=1 +2024-09-23 15:18:04.704 [http-nio-8080-exec-8] DEBUG c.g.h.mapper.UserMapper.getUserById - ==> Parameters: 1(Long) +2024-09-23 15:18:04.705 [http-nio-8080-exec-8] DEBUG c.g.h.mapper.UserMapper.getUserById - <== Total: 1 +2024-09-23 15:18:04.706 [http-nio-8080-exec-8] DEBUG c.g.h.m.AuthMapper.getUserRoleById - ==> Preparing: SELECT * from system_role where role_id=? AND status=1 +2024-09-23 15:18:04.706 [http-nio-8080-exec-8] DEBUG c.g.h.m.AuthMapper.getUserRoleById - ==> Parameters: root(String) +2024-09-23 15:18:04.709 [http-nio-8080-exec-8] DEBUG c.g.h.m.AuthMapper.getUserRoleById - <== Total: 0 +2024-09-23 15:18:04.709 [http-nio-8080-exec-8] ERROR c.g.h.config.GlobalExceptionHandler - Source must not be null +2024-09-23 15:18:13.636 [http-nio-8080-exec-4] INFO c.g.h.service.impl.UserServiceImpl - 查询用户1的用户信息 +2024-09-23 15:18:13.638 [http-nio-8080-exec-4] DEBUG c.g.h.mapper.UserMapper.getUserById - ==> Preparing: SELECT * from user_info where id=? AND status=1 +2024-09-23 15:18:13.638 [http-nio-8080-exec-4] DEBUG c.g.h.mapper.UserMapper.getUserById - ==> Parameters: 1(Long) +2024-09-23 15:18:13.639 [http-nio-8080-exec-4] DEBUG c.g.h.mapper.UserMapper.getUserById - <== Total: 1 +2024-09-23 15:18:13.639 [http-nio-8080-exec-4] DEBUG c.g.h.m.AuthMapper.getUserRoleById - ==> Preparing: SELECT * from system_role where role_id=? AND status=1 +2024-09-23 15:18:13.640 [http-nio-8080-exec-4] DEBUG c.g.h.m.AuthMapper.getUserRoleById - ==> Parameters: root(String) +2024-09-23 15:18:13.641 [http-nio-8080-exec-4] DEBUG c.g.h.m.AuthMapper.getUserRoleById - <== Total: 0 +2024-09-23 15:18:13.642 [http-nio-8080-exec-4] ERROR c.g.h.config.GlobalExceptionHandler - Source must not be null +2024-09-23 15:19:11.944 [http-nio-8080-exec-5] INFO c.g.h.service.impl.UserServiceImpl - 查询用户1的用户信息 +2024-09-23 15:19:11.945 [http-nio-8080-exec-5] DEBUG c.g.h.mapper.UserMapper.getUserById - ==> Preparing: SELECT * from user_info where id=? AND status=1 +2024-09-23 15:19:11.945 [http-nio-8080-exec-5] DEBUG c.g.h.mapper.UserMapper.getUserById - ==> Parameters: 1(Long) +2024-09-23 15:19:11.946 [http-nio-8080-exec-5] DEBUG c.g.h.mapper.UserMapper.getUserById - <== Total: 1 +2024-09-23 15:19:11.947 [http-nio-8080-exec-5] DEBUG c.g.h.m.AuthMapper.getUserRoleById - ==> Preparing: SELECT * from system_role where role_id=? AND status=1 +2024-09-23 15:19:11.947 [http-nio-8080-exec-5] DEBUG c.g.h.m.AuthMapper.getUserRoleById - ==> Parameters: root(String) +2024-09-23 15:19:11.947 [http-nio-8080-exec-5] DEBUG c.g.h.m.AuthMapper.getUserRoleById - <== Total: 1 +2024-09-23 15:19:11.948 [http-nio-8080-exec-5] ERROR c.g.h.config.GlobalExceptionHandler - Invalid bound statement (not found): com.guaiguailang.harmony.mapper.AuthMapper.getUserPermissionList +2024-09-23 15:22:45.016 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown initiated... +2024-09-23 15:22:45.022 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown completed. +2024-09-23 15:22:49.917 [main] INFO o.s.boot.SpringApplication - +██╗ ██╗██████╗ ██╗██╗ █████╗ ███╗ ██╗ ██████╗ +╚██╗██╔╝██╔══██╗██║██║ ██╔══██╗████╗ ██║██╔════╝ + ╚███╔╝ ██████╔╝██║██║ ███████║██╔██╗ ██║██║ ███╗ + ██╔██╗ ██╔══██╗██║██║ ██╔══██║██║╚██╗██║██║ ██║ +██╔╝ ██╗██║ ██║██║███████╗██║ ██║██║ ╚████║╚██████╔╝ +╚═╝ ╚═╝╚═╝ ╚═╝╚═╝╚══════╝╚═╝ ╚═╝╚═╝ ╚═══╝ ╚═════╝ + +^_^ 服务启动成功 He Sheng +# 项目名称:harmony-life-server +# 项目版本:1.0.0 +# 框架版本:3.3.4 +# 最后更新于 2024年 9月 25日 + + +2024-09-23 15:22:49.970 [main] INFO c.g.h.HarmonyLifeServerApplication - Starting HarmonyLifeServerApplication using Java 17.0.8 with PID 14384 (C:\Users\xrilang\Desktop\harmony-life\harmony-life-server\harmony-life-server\target\classes started by xrilang in C:\Users\xrilang\Desktop\harmony-life\harmony-life-server\harmony-life-server) +2024-09-23 15:22:49.971 [main] DEBUG c.g.h.HarmonyLifeServerApplication - Running with Spring Boot v3.3.4, Spring v6.1.13 +2024-09-23 15:22:49.972 [main] INFO c.g.h.HarmonyLifeServerApplication - No active profile set, falling back to 1 default profile: "default" +2024-09-23 15:22:50.635 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode +2024-09-23 15:22:50.636 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data JDBC repositories in DEFAULT mode. +2024-09-23 15:22:50.648 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 8 ms. Found 0 JDBC repository interfaces. +2024-09-23 15:22:50.658 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode +2024-09-23 15:22:50.659 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2024-09-23 15:22:50.675 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 5 ms. Found 0 Redis repository interfaces. +2024-09-23 15:22:51.242 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat initialized with port 8080 (http) +2024-09-23 15:22:51.252 [main] INFO o.a.coyote.http11.Http11NioProtocol - Initializing ProtocolHandler ["http-nio-8080"] +2024-09-23 15:22:51.255 [main] INFO o.a.catalina.core.StandardService - Starting service [Tomcat] +2024-09-23 15:22:51.255 [main] INFO o.a.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/10.1.30] +2024-09-23 15:22:51.321 [main] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring embedded WebApplicationContext +2024-09-23 15:22:51.322 [main] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 1301 ms +2024-09-23 15:22:52.103 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Starting... +2024-09-23 15:22:52.212 [main] INFO com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - Added connection com.mysql.cj.jdbc.ConnectionImpl@1c421b0f +2024-09-23 15:22:52.213 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Start completed. +2024-09-23 15:22:52.335 [main] INFO o.a.coyote.http11.Http11NioProtocol - Starting ProtocolHandler ["http-nio-8080"] +2024-09-23 15:22:52.351 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat started on port 8080 (http) with context path '/' +2024-09-23 15:22:52.358 [main] INFO c.g.h.HarmonyLifeServerApplication - Started HarmonyLifeServerApplication in 2.846 seconds (process running for 3.877) +2024-09-23 15:23:03.202 [http-nio-8080-exec-2] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring DispatcherServlet 'dispatcherServlet' +2024-09-23 15:23:03.202 [http-nio-8080-exec-2] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet' +2024-09-23 15:23:03.203 [http-nio-8080-exec-2] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 1 ms +2024-09-23 15:23:03.578 [http-nio-8080-exec-2] INFO c.g.h.service.impl.UserServiceImpl - 查询用户1的用户信息 +2024-09-23 15:23:03.591 [http-nio-8080-exec-2] DEBUG c.g.h.mapper.UserMapper.getUserById - ==> Preparing: SELECT * from user_info where id=? AND status=1 +2024-09-23 15:23:03.606 [http-nio-8080-exec-2] DEBUG c.g.h.mapper.UserMapper.getUserById - ==> Parameters: 1(Long) +2024-09-23 15:23:03.626 [http-nio-8080-exec-2] DEBUG c.g.h.mapper.UserMapper.getUserById - <== Total: 1 +2024-09-23 15:23:03.628 [http-nio-8080-exec-2] DEBUG c.g.h.m.AuthMapper.getUserRoleById - ==> Preparing: SELECT * from system_role where role_id=? AND status=1 +2024-09-23 15:23:03.629 [http-nio-8080-exec-2] DEBUG c.g.h.m.AuthMapper.getUserRoleById - ==> Parameters: root(String) +2024-09-23 15:23:03.631 [http-nio-8080-exec-2] DEBUG c.g.h.m.AuthMapper.getUserRoleById - <== Total: 1 +2024-09-23 15:23:41.061 [http-nio-8080-exec-2] ERROR c.g.h.config.GlobalExceptionHandler - Invalid bound statement (not found): com.guaiguailang.harmony.mapper.AuthMapper.getUserPermissionList +2024-09-23 15:24:42.010 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown initiated... +2024-09-23 15:24:42.015 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown completed. +2024-09-23 15:24:45.869 [main] INFO o.s.boot.SpringApplication - +██╗ ██╗██████╗ ██╗██╗ █████╗ ███╗ ██╗ ██████╗ +╚██╗██╔╝██╔══██╗██║██║ ██╔══██╗████╗ ██║██╔════╝ + ╚███╔╝ ██████╔╝██║██║ ███████║██╔██╗ ██║██║ ███╗ + ██╔██╗ ██╔══██╗██║██║ ██╔══██║██║╚██╗██║██║ ██║ +██╔╝ ██╗██║ ██║██║███████╗██║ ██║██║ ╚████║╚██████╔╝ +╚═╝ ╚═╝╚═╝ ╚═╝╚═╝╚══════╝╚═╝ ╚═╝╚═╝ ╚═══╝ ╚═════╝ + +^_^ 服务启动成功 He Sheng +# 项目名称:harmony-life-server +# 项目版本:1.0.0 +# 框架版本:3.3.4 +# 最后更新于 2024年 9月 25日 + + +2024-09-23 15:24:45.919 [main] INFO c.g.h.HarmonyLifeServerApplication - Starting HarmonyLifeServerApplication using Java 17.0.8 with PID 14960 (C:\Users\xrilang\Desktop\harmony-life\harmony-life-server\harmony-life-server\target\classes started by xrilang in C:\Users\xrilang\Desktop\harmony-life\harmony-life-server\harmony-life-server) +2024-09-23 15:24:45.921 [main] DEBUG c.g.h.HarmonyLifeServerApplication - Running with Spring Boot v3.3.4, Spring v6.1.13 +2024-09-23 15:24:45.922 [main] INFO c.g.h.HarmonyLifeServerApplication - No active profile set, falling back to 1 default profile: "default" +2024-09-23 15:24:46.518 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode +2024-09-23 15:24:46.519 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data JDBC repositories in DEFAULT mode. +2024-09-23 15:24:46.531 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 8 ms. Found 0 JDBC repository interfaces. +2024-09-23 15:24:46.540 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode +2024-09-23 15:24:46.541 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2024-09-23 15:24:46.553 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 4 ms. Found 0 Redis repository interfaces. +2024-09-23 15:24:47.006 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat initialized with port 8080 (http) +2024-09-23 15:24:47.014 [main] INFO o.a.coyote.http11.Http11NioProtocol - Initializing ProtocolHandler ["http-nio-8080"] +2024-09-23 15:24:47.017 [main] INFO o.a.catalina.core.StandardService - Starting service [Tomcat] +2024-09-23 15:24:47.017 [main] INFO o.a.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/10.1.30] +2024-09-23 15:24:47.075 [main] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring embedded WebApplicationContext +2024-09-23 15:24:47.075 [main] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 1121 ms +2024-09-23 15:24:47.804 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Starting... +2024-09-23 15:24:47.909 [main] INFO com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - Added connection com.mysql.cj.jdbc.ConnectionImpl@28cf179c +2024-09-23 15:24:47.911 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Start completed. +2024-09-23 15:24:48.036 [main] INFO o.a.coyote.http11.Http11NioProtocol - Starting ProtocolHandler ["http-nio-8080"] +2024-09-23 15:24:48.051 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat started on port 8080 (http) with context path '/' +2024-09-23 15:24:48.057 [main] INFO c.g.h.HarmonyLifeServerApplication - Started HarmonyLifeServerApplication in 2.491 seconds (process running for 3.003) +2024-09-23 15:24:51.591 [http-nio-8080-exec-3] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring DispatcherServlet 'dispatcherServlet' +2024-09-23 15:24:51.591 [http-nio-8080-exec-3] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet' +2024-09-23 15:24:51.592 [http-nio-8080-exec-3] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 1 ms +2024-09-23 15:24:51.965 [http-nio-8080-exec-3] INFO c.g.h.service.impl.UserServiceImpl - 查询用户1的用户信息 +2024-09-23 15:24:51.979 [http-nio-8080-exec-3] DEBUG c.g.h.mapper.UserMapper.getUserById - ==> Preparing: SELECT * from user_info where id=? AND status=1 +2024-09-23 15:24:51.994 [http-nio-8080-exec-3] DEBUG c.g.h.mapper.UserMapper.getUserById - ==> Parameters: 1(Long) +2024-09-23 15:24:52.014 [http-nio-8080-exec-3] DEBUG c.g.h.mapper.UserMapper.getUserById - <== Total: 1 +2024-09-23 15:24:52.016 [http-nio-8080-exec-3] DEBUG c.g.h.m.AuthMapper.getUserRoleById - ==> Preparing: SELECT * from system_role where role_id=? AND status=1 +2024-09-23 15:24:52.017 [http-nio-8080-exec-3] DEBUG c.g.h.m.AuthMapper.getUserRoleById - ==> Parameters: root(String) +2024-09-23 15:24:52.019 [http-nio-8080-exec-3] DEBUG c.g.h.m.AuthMapper.getUserRoleById - <== Total: 1 +2024-09-23 15:29:07.317 [HikariPool-1 housekeeper] WARN com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - Thread starvation or clock leap detected (housekeeper delta=4m19s296ms282µs300ns). +2024-09-23 15:29:07.323 [http-nio-8080-exec-3] ERROR c.g.h.config.GlobalExceptionHandler - Invalid bound statement (not found): com.guaiguailang.harmony.mapper.AuthMapper.getUserPermissionList +2024-09-23 15:29:07.963 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown initiated... +2024-09-23 15:29:07.968 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown completed. +2024-09-23 15:29:12.324 [main] INFO o.s.boot.SpringApplication - +██╗ ██╗██████╗ ██╗██╗ █████╗ ███╗ ██╗ ██████╗ +╚██╗██╔╝██╔══██╗██║██║ ██╔══██╗████╗ ██║██╔════╝ + ╚███╔╝ ██████╔╝██║██║ ███████║██╔██╗ ██║██║ ███╗ + ██╔██╗ ██╔══██╗██║██║ ██╔══██║██║╚██╗██║██║ ██║ +██╔╝ ██╗██║ ██║██║███████╗██║ ██║██║ ╚████║╚██████╔╝ +╚═╝ ╚═╝╚═╝ ╚═╝╚═╝╚══════╝╚═╝ ╚═╝╚═╝ ╚═══╝ ╚═════╝ + +^_^ 服务启动成功 He Sheng +# 项目名称:harmony-life-server +# 项目版本:1.0.0 +# 框架版本:3.3.4 +# 最后更新于 2024年 9月 25日 + + +2024-09-23 15:29:12.378 [main] INFO c.g.h.HarmonyLifeServerApplication - Starting HarmonyLifeServerApplication using Java 17.0.8 with PID 24732 (C:\Users\xrilang\Desktop\harmony-life\harmony-life-server\harmony-life-server\target\classes started by xrilang in C:\Users\xrilang\Desktop\harmony-life\harmony-life-server\harmony-life-server) +2024-09-23 15:29:12.378 [main] DEBUG c.g.h.HarmonyLifeServerApplication - Running with Spring Boot v3.3.4, Spring v6.1.13 +2024-09-23 15:29:12.379 [main] INFO c.g.h.HarmonyLifeServerApplication - No active profile set, falling back to 1 default profile: "default" +2024-09-23 15:29:12.968 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode +2024-09-23 15:29:12.969 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data JDBC repositories in DEFAULT mode. +2024-09-23 15:29:12.981 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 8 ms. Found 0 JDBC repository interfaces. +2024-09-23 15:29:12.991 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode +2024-09-23 15:29:12.992 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2024-09-23 15:29:13.004 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 5 ms. Found 0 Redis repository interfaces. +2024-09-23 15:29:13.465 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat initialized with port 8080 (http) +2024-09-23 15:29:13.473 [main] INFO o.a.coyote.http11.Http11NioProtocol - Initializing ProtocolHandler ["http-nio-8080"] +2024-09-23 15:29:13.477 [main] INFO o.a.catalina.core.StandardService - Starting service [Tomcat] +2024-09-23 15:29:13.477 [main] INFO o.a.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/10.1.30] +2024-09-23 15:29:13.534 [main] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring embedded WebApplicationContext +2024-09-23 15:29:13.535 [main] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 1121 ms +2024-09-23 15:29:14.289 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Starting... +2024-09-23 15:29:14.400 [main] INFO com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - Added connection com.mysql.cj.jdbc.ConnectionImpl@13d5606c +2024-09-23 15:29:14.402 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Start completed. +2024-09-23 15:29:14.516 [main] INFO o.a.coyote.http11.Http11NioProtocol - Starting ProtocolHandler ["http-nio-8080"] +2024-09-23 15:29:14.531 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat started on port 8080 (http) with context path '/' +2024-09-23 15:29:14.537 [main] INFO c.g.h.HarmonyLifeServerApplication - Started HarmonyLifeServerApplication in 2.523 seconds (process running for 3.025) +2024-09-23 15:29:26.729 [http-nio-8080-exec-1] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring DispatcherServlet 'dispatcherServlet' +2024-09-23 15:29:26.729 [http-nio-8080-exec-1] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet' +2024-09-23 15:29:26.730 [http-nio-8080-exec-1] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 1 ms +2024-09-23 15:29:27.102 [http-nio-8080-exec-1] INFO c.g.h.service.impl.UserServiceImpl - 查询用户1的用户信息 +2024-09-23 15:29:27.115 [http-nio-8080-exec-1] DEBUG c.g.h.mapper.UserMapper.getUserById - ==> Preparing: SELECT * from user_info where id=? AND status=1 +2024-09-23 15:29:27.130 [http-nio-8080-exec-1] DEBUG c.g.h.mapper.UserMapper.getUserById - ==> Parameters: 1(Long) +2024-09-23 15:29:27.151 [http-nio-8080-exec-1] DEBUG c.g.h.mapper.UserMapper.getUserById - <== Total: 1 +2024-09-23 15:29:27.153 [http-nio-8080-exec-1] DEBUG c.g.h.m.AuthMapper.getUserRoleById - ==> Preparing: SELECT * from system_role where role_id=? AND status=1 +2024-09-23 15:29:27.153 [http-nio-8080-exec-1] DEBUG c.g.h.m.AuthMapper.getUserRoleById - ==> Parameters: root(String) +2024-09-23 15:29:27.156 [http-nio-8080-exec-1] DEBUG c.g.h.m.AuthMapper.getUserRoleById - <== Total: 1 +2024-09-23 15:29:34.634 [http-nio-8080-exec-1] ERROR c.g.h.config.GlobalExceptionHandler - Invalid bound statement (not found): com.guaiguailang.harmony.mapper.AuthMapper.getUserPermissionList +2024-09-23 15:31:06.059 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown initiated... +2024-09-23 15:31:06.064 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown completed. +2024-09-23 15:31:09.941 [main] INFO o.s.boot.SpringApplication - +██╗ ██╗██████╗ ██╗██╗ █████╗ ███╗ ██╗ ██████╗ +╚██╗██╔╝██╔══██╗██║██║ ██╔══██╗████╗ ██║██╔════╝ + ╚███╔╝ ██████╔╝██║██║ ███████║██╔██╗ ██║██║ ███╗ + ██╔██╗ ██╔══██╗██║██║ ██╔══██║██║╚██╗██║██║ ██║ +██╔╝ ██╗██║ ██║██║███████╗██║ ██║██║ ╚████║╚██████╔╝ +╚═╝ ╚═╝╚═╝ ╚═╝╚═╝╚══════╝╚═╝ ╚═╝╚═╝ ╚═══╝ ╚═════╝ + +^_^ 服务启动成功 He Sheng +# 项目名称:harmony-life-server +# 项目版本:1.0.0 +# 框架版本:3.3.4 +# 最后更新于 2024年 9月 25日 + + +2024-09-23 15:31:09.987 [main] INFO c.g.h.HarmonyLifeServerApplication - Starting HarmonyLifeServerApplication using Java 17.0.8 with PID 12768 (C:\Users\xrilang\Desktop\harmony-life\harmony-life-server\harmony-life-server\target\classes started by xrilang in C:\Users\xrilang\Desktop\harmony-life\harmony-life-server\harmony-life-server) +2024-09-23 15:31:09.987 [main] DEBUG c.g.h.HarmonyLifeServerApplication - Running with Spring Boot v3.3.4, Spring v6.1.13 +2024-09-23 15:31:09.988 [main] INFO c.g.h.HarmonyLifeServerApplication - No active profile set, falling back to 1 default profile: "default" +2024-09-23 15:31:10.561 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode +2024-09-23 15:31:10.562 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data JDBC repositories in DEFAULT mode. +2024-09-23 15:31:10.574 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 8 ms. Found 0 JDBC repository interfaces. +2024-09-23 15:31:10.584 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode +2024-09-23 15:31:10.585 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2024-09-23 15:31:10.597 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 5 ms. Found 0 Redis repository interfaces. +2024-09-23 15:31:11.051 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat initialized with port 8080 (http) +2024-09-23 15:31:11.058 [main] INFO o.a.coyote.http11.Http11NioProtocol - Initializing ProtocolHandler ["http-nio-8080"] +2024-09-23 15:31:11.061 [main] INFO o.a.catalina.core.StandardService - Starting service [Tomcat] +2024-09-23 15:31:11.061 [main] INFO o.a.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/10.1.30] +2024-09-23 15:31:11.118 [main] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring embedded WebApplicationContext +2024-09-23 15:31:11.119 [main] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 1100 ms +2024-09-23 15:31:11.829 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Starting... +2024-09-23 15:31:11.933 [main] INFO com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - Added connection com.mysql.cj.jdbc.ConnectionImpl@bdda8a7 +2024-09-23 15:31:11.934 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Start completed. +2024-09-23 15:31:12.057 [main] INFO o.a.coyote.http11.Http11NioProtocol - Starting ProtocolHandler ["http-nio-8080"] +2024-09-23 15:31:12.072 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat started on port 8080 (http) with context path '/' +2024-09-23 15:31:12.078 [main] INFO c.g.h.HarmonyLifeServerApplication - Started HarmonyLifeServerApplication in 2.436 seconds (process running for 2.946) +2024-09-23 15:31:13.519 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown initiated... +2024-09-23 15:31:13.524 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown completed. +2024-09-23 15:31:16.594 [main] INFO o.s.boot.SpringApplication - +██╗ ██╗██████╗ ██╗██╗ █████╗ ███╗ ██╗ ██████╗ +╚██╗██╔╝██╔══██╗██║██║ ██╔══██╗████╗ ██║██╔════╝ + ╚███╔╝ ██████╔╝██║██║ ███████║██╔██╗ ██║██║ ███╗ + ██╔██╗ ██╔══██╗██║██║ ██╔══██║██║╚██╗██║██║ ██║ +██╔╝ ██╗██║ ██║██║███████╗██║ ██║██║ ╚████║╚██████╔╝ +╚═╝ ╚═╝╚═╝ ╚═╝╚═╝╚══════╝╚═╝ ╚═╝╚═╝ ╚═══╝ ╚═════╝ + +^_^ 服务启动成功 He Sheng +# 项目名称:harmony-life-server +# 项目版本:1.0.0 +# 框架版本:3.3.4 +# 最后更新于 2024年 9月 25日 + + +2024-09-23 15:31:16.642 [main] INFO c.g.h.HarmonyLifeServerApplication - Starting HarmonyLifeServerApplication using Java 17.0.8 with PID 20044 (C:\Users\xrilang\Desktop\harmony-life\harmony-life-server\harmony-life-server\target\classes started by xrilang in C:\Users\xrilang\Desktop\harmony-life\harmony-life-server\harmony-life-server) +2024-09-23 15:31:16.642 [main] DEBUG c.g.h.HarmonyLifeServerApplication - Running with Spring Boot v3.3.4, Spring v6.1.13 +2024-09-23 15:31:16.643 [main] INFO c.g.h.HarmonyLifeServerApplication - No active profile set, falling back to 1 default profile: "default" +2024-09-23 15:31:17.189 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode +2024-09-23 15:31:17.190 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data JDBC repositories in DEFAULT mode. +2024-09-23 15:31:17.201 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 7 ms. Found 0 JDBC repository interfaces. +2024-09-23 15:31:17.210 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode +2024-09-23 15:31:17.211 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2024-09-23 15:31:17.224 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 5 ms. Found 0 Redis repository interfaces. +2024-09-23 15:31:17.643 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat initialized with port 8080 (http) +2024-09-23 15:31:17.650 [main] INFO o.a.coyote.http11.Http11NioProtocol - Initializing ProtocolHandler ["http-nio-8080"] +2024-09-23 15:31:17.653 [main] INFO o.a.catalina.core.StandardService - Starting service [Tomcat] +2024-09-23 15:31:17.653 [main] INFO o.a.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/10.1.30] +2024-09-23 15:31:17.706 [main] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring embedded WebApplicationContext +2024-09-23 15:31:17.706 [main] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 1034 ms +2024-09-23 15:31:18.360 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Starting... +2024-09-23 15:31:18.452 [main] INFO com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - Added connection com.mysql.cj.jdbc.ConnectionImpl@6fefc5ea +2024-09-23 15:31:18.452 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Start completed. +2024-09-23 15:31:18.558 [main] INFO o.a.coyote.http11.Http11NioProtocol - Starting ProtocolHandler ["http-nio-8080"] +2024-09-23 15:31:18.572 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat started on port 8080 (http) with context path '/' +2024-09-23 15:31:18.579 [main] INFO c.g.h.HarmonyLifeServerApplication - Started HarmonyLifeServerApplication in 2.259 seconds (process running for 2.666) +2024-09-23 15:31:33.903 [http-nio-8080-exec-1] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring DispatcherServlet 'dispatcherServlet' +2024-09-23 15:31:33.903 [http-nio-8080-exec-1] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet' +2024-09-23 15:31:33.904 [http-nio-8080-exec-1] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 1 ms +2024-09-23 15:31:34.260 [http-nio-8080-exec-1] INFO c.g.h.service.impl.UserServiceImpl - 查询用户1的用户信息 +2024-09-23 15:31:34.272 [http-nio-8080-exec-1] DEBUG c.g.h.mapper.UserMapper.getUserById - ==> Preparing: SELECT * from user_info where id=? AND status=1 +2024-09-23 15:31:34.286 [http-nio-8080-exec-1] DEBUG c.g.h.mapper.UserMapper.getUserById - ==> Parameters: 1(Long) +2024-09-23 15:31:34.308 [http-nio-8080-exec-1] DEBUG c.g.h.mapper.UserMapper.getUserById - <== Total: 1 +2024-09-23 15:31:34.309 [http-nio-8080-exec-1] DEBUG c.g.h.m.AuthMapper.getUserRoleById - ==> Preparing: SELECT * from system_role where role_id=? AND status=1 +2024-09-23 15:31:34.310 [http-nio-8080-exec-1] DEBUG c.g.h.m.AuthMapper.getUserRoleById - ==> Parameters: root(String) +2024-09-23 15:31:34.312 [http-nio-8080-exec-1] DEBUG c.g.h.m.AuthMapper.getUserRoleById - <== Total: 1 +2024-09-23 15:31:34.313 [http-nio-8080-exec-1] INFO c.g.h.service.impl.UserServiceImpl - 开始为用户1准备权限。 +2024-09-23 15:31:34.314 [http-nio-8080-exec-1] ERROR c.g.h.config.GlobalExceptionHandler - Invalid bound statement (not found): com.guaiguailang.harmony.mapper.AuthMapper.getUserPermissionList +2024-09-23 15:34:52.117 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown initiated... +2024-09-23 15:34:52.122 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown completed. +2024-09-23 15:34:54.319 [main] INFO o.s.boot.SpringApplication - +██╗ ██╗██████╗ ██╗██╗ █████╗ ███╗ ██╗ ██████╗ +╚██╗██╔╝██╔══██╗██║██║ ██╔══██╗████╗ ██║██╔════╝ + ╚███╔╝ ██████╔╝██║██║ ███████║██╔██╗ ██║██║ ███╗ + ██╔██╗ ██╔══██╗██║██║ ██╔══██║██║╚██╗██║██║ ██║ +██╔╝ ██╗██║ ██║██║███████╗██║ ██║██║ ╚████║╚██████╔╝ +╚═╝ ╚═╝╚═╝ ╚═╝╚═╝╚══════╝╚═╝ ╚═╝╚═╝ ╚═══╝ ╚═════╝ + +^_^ 服务启动成功 He Sheng +# 项目名称:harmony-life-server +# 项目版本:1.0.0 +# 框架版本:3.3.4 +# 最后更新于 2024年 9月 25日 + + +2024-09-23 15:34:54.364 [main] INFO c.g.h.HarmonyLifeServerApplication - Starting HarmonyLifeServerApplication using Java 17.0.8 with PID 30320 (C:\Users\xrilang\Desktop\harmony-life\harmony-life-server\harmony-life-server\target\classes started by xrilang in C:\Users\xrilang\Desktop\harmony-life\harmony-life-server\harmony-life-server) +2024-09-23 15:34:54.364 [main] DEBUG c.g.h.HarmonyLifeServerApplication - Running with Spring Boot v3.3.4, Spring v6.1.13 +2024-09-23 15:34:54.365 [main] INFO c.g.h.HarmonyLifeServerApplication - No active profile set, falling back to 1 default profile: "default" +2024-09-23 15:34:54.899 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode +2024-09-23 15:34:54.900 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data JDBC repositories in DEFAULT mode. +2024-09-23 15:34:54.910 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 7 ms. Found 0 JDBC repository interfaces. +2024-09-23 15:34:54.919 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode +2024-09-23 15:34:54.919 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2024-09-23 15:34:54.932 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 4 ms. Found 0 Redis repository interfaces. +2024-09-23 15:34:55.335 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat initialized with port 8080 (http) +2024-09-23 15:34:55.342 [main] INFO o.a.coyote.http11.Http11NioProtocol - Initializing ProtocolHandler ["http-nio-8080"] +2024-09-23 15:34:55.344 [main] INFO o.a.catalina.core.StandardService - Starting service [Tomcat] +2024-09-23 15:34:55.345 [main] INFO o.a.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/10.1.30] +2024-09-23 15:34:55.402 [main] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring embedded WebApplicationContext +2024-09-23 15:34:55.402 [main] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 1010 ms +2024-09-23 15:34:56.071 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Starting... +2024-09-23 15:34:56.164 [main] INFO com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - Added connection com.mysql.cj.jdbc.ConnectionImpl@2cdcfaa6 +2024-09-23 15:34:56.165 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Start completed. +2024-09-23 15:34:56.271 [main] INFO o.a.coyote.http11.Http11NioProtocol - Starting ProtocolHandler ["http-nio-8080"] +2024-09-23 15:34:56.285 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat started on port 8080 (http) with context path '/' +2024-09-23 15:34:56.291 [main] INFO c.g.h.HarmonyLifeServerApplication - Started HarmonyLifeServerApplication in 2.243 seconds (process running for 2.678) +2024-09-23 15:37:18.833 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown initiated... +2024-09-23 15:37:18.837 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown completed. +2024-09-23 15:37:20.931 [main] INFO o.s.boot.SpringApplication - +██╗ ██╗██████╗ ██╗██╗ █████╗ ███╗ ██╗ ██████╗ +╚██╗██╔╝██╔══██╗██║██║ ██╔══██╗████╗ ██║██╔════╝ + ╚███╔╝ ██████╔╝██║██║ ███████║██╔██╗ ██║██║ ███╗ + ██╔██╗ ██╔══██╗██║██║ ██╔══██║██║╚██╗██║██║ ██║ +██╔╝ ██╗██║ ██║██║███████╗██║ ██║██║ ╚████║╚██████╔╝ +╚═╝ ╚═╝╚═╝ ╚═╝╚═╝╚══════╝╚═╝ ╚═╝╚═╝ ╚═══╝ ╚═════╝ + +^_^ 服务启动成功 He Sheng +# 项目名称:harmony-life-server +# 项目版本:1.0.0 +# 框架版本:3.3.4 +# 最后更新于 2024年 9月 25日 + + +2024-09-23 15:37:20.975 [main] INFO c.g.h.HarmonyLifeServerApplication - Starting HarmonyLifeServerApplication using Java 17.0.8 with PID 6012 (C:\Users\xrilang\Desktop\harmony-life\harmony-life-server\harmony-life-server\target\classes started by xrilang in C:\Users\xrilang\Desktop\harmony-life\harmony-life-server\harmony-life-server) +2024-09-23 15:37:20.976 [main] DEBUG c.g.h.HarmonyLifeServerApplication - Running with Spring Boot v3.3.4, Spring v6.1.13 +2024-09-23 15:37:20.976 [main] INFO c.g.h.HarmonyLifeServerApplication - No active profile set, falling back to 1 default profile: "default" +2024-09-23 15:37:21.521 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode +2024-09-23 15:37:21.522 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data JDBC repositories in DEFAULT mode. +2024-09-23 15:37:21.533 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 8 ms. Found 0 JDBC repository interfaces. +2024-09-23 15:37:21.542 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode +2024-09-23 15:37:21.543 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2024-09-23 15:37:21.555 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 5 ms. Found 0 Redis repository interfaces. +2024-09-23 15:37:21.967 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat initialized with port 8080 (http) +2024-09-23 15:37:21.974 [main] INFO o.a.coyote.http11.Http11NioProtocol - Initializing ProtocolHandler ["http-nio-8080"] +2024-09-23 15:37:21.976 [main] INFO o.a.catalina.core.StandardService - Starting service [Tomcat] +2024-09-23 15:37:21.977 [main] INFO o.a.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/10.1.30] +2024-09-23 15:37:22.028 [main] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring embedded WebApplicationContext +2024-09-23 15:37:22.029 [main] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 1025 ms +2024-09-23 15:37:22.678 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Starting... +2024-09-23 15:37:22.772 [main] INFO com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - Added connection com.mysql.cj.jdbc.ConnectionImpl@5ac0bf84 +2024-09-23 15:37:22.774 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Start completed. +2024-09-23 15:37:22.890 [main] INFO o.a.coyote.http11.Http11NioProtocol - Starting ProtocolHandler ["http-nio-8080"] +2024-09-23 15:37:22.907 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat started on port 8080 (http) with context path '/' +2024-09-23 15:37:22.913 [main] INFO c.g.h.HarmonyLifeServerApplication - Started HarmonyLifeServerApplication in 2.244 seconds (process running for 2.644) +2024-09-23 15:37:27.014 [http-nio-8080-exec-1] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring DispatcherServlet 'dispatcherServlet' +2024-09-23 15:37:27.015 [http-nio-8080-exec-1] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet' +2024-09-23 15:37:27.015 [http-nio-8080-exec-1] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 0 ms +2024-09-23 15:37:27.354 [http-nio-8080-exec-1] INFO c.g.h.service.impl.UserServiceImpl - 查询用户1的用户信息 +2024-09-23 15:37:27.367 [http-nio-8080-exec-1] DEBUG c.g.h.mapper.UserMapper.getUserById - ==> Preparing: SELECT * from user_info where id=? AND status=1 +2024-09-23 15:37:27.382 [http-nio-8080-exec-1] DEBUG c.g.h.mapper.UserMapper.getUserById - ==> Parameters: 1(Long) +2024-09-23 15:37:27.403 [http-nio-8080-exec-1] DEBUG c.g.h.mapper.UserMapper.getUserById - <== Total: 1 +2024-09-23 15:37:27.404 [http-nio-8080-exec-1] DEBUG c.g.h.m.AuthMapper.getUserRoleById - ==> Preparing: SELECT * from system_role where role_id=? AND status=1 +2024-09-23 15:37:27.405 [http-nio-8080-exec-1] DEBUG c.g.h.m.AuthMapper.getUserRoleById - ==> Parameters: root(String) +2024-09-23 15:37:27.407 [http-nio-8080-exec-1] DEBUG c.g.h.m.AuthMapper.getUserRoleById - <== Total: 1 +2024-09-23 15:37:27.408 [http-nio-8080-exec-1] INFO c.g.h.service.impl.UserServiceImpl - 开始为用户1准备权限。 +2024-09-23 15:37:27.409 [http-nio-8080-exec-1] ERROR c.g.h.config.GlobalExceptionHandler - Invalid bound statement (not found): com.guaiguailang.harmony.mapper.AuthMapper.getUserPermissionList +2024-09-23 15:38:57.568 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown initiated... +2024-09-23 15:38:57.573 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown completed. +2024-09-23 15:38:59.745 [main] INFO o.s.boot.SpringApplication - +██╗ ██╗██████╗ ██╗██╗ █████╗ ███╗ ██╗ ██████╗ +╚██╗██╔╝██╔══██╗██║██║ ██╔══██╗████╗ ██║██╔════╝ + ╚███╔╝ ██████╔╝██║██║ ███████║██╔██╗ ██║██║ ███╗ + ██╔██╗ ██╔══██╗██║██║ ██╔══██║██║╚██╗██║██║ ██║ +██╔╝ ██╗██║ ██║██║███████╗██║ ██║██║ ╚████║╚██████╔╝ +╚═╝ ╚═╝╚═╝ ╚═╝╚═╝╚══════╝╚═╝ ╚═╝╚═╝ ╚═══╝ ╚═════╝ + +^_^ 服务启动成功 He Sheng +# 项目名称:harmony-life-server +# 项目版本:1.0.0 +# 框架版本:3.3.4 +# 最后更新于 2024年 9月 25日 + + +2024-09-23 15:38:59.790 [main] INFO c.g.h.HarmonyLifeServerApplication - Starting HarmonyLifeServerApplication using Java 17.0.8 with PID 31120 (C:\Users\xrilang\Desktop\harmony-life\harmony-life-server\harmony-life-server\target\classes started by xrilang in C:\Users\xrilang\Desktop\harmony-life\harmony-life-server\harmony-life-server) +2024-09-23 15:38:59.791 [main] DEBUG c.g.h.HarmonyLifeServerApplication - Running with Spring Boot v3.3.4, Spring v6.1.13 +2024-09-23 15:38:59.791 [main] INFO c.g.h.HarmonyLifeServerApplication - No active profile set, falling back to 1 default profile: "default" +2024-09-23 15:39:00.352 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode +2024-09-23 15:39:00.353 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data JDBC repositories in DEFAULT mode. +2024-09-23 15:39:00.364 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 7 ms. Found 0 JDBC repository interfaces. +2024-09-23 15:39:00.373 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode +2024-09-23 15:39:00.374 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2024-09-23 15:39:00.386 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 5 ms. Found 0 Redis repository interfaces. +2024-09-23 15:39:00.804 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat initialized with port 8080 (http) +2024-09-23 15:39:00.812 [main] INFO o.a.coyote.http11.Http11NioProtocol - Initializing ProtocolHandler ["http-nio-8080"] +2024-09-23 15:39:00.815 [main] INFO o.a.catalina.core.StandardService - Starting service [Tomcat] +2024-09-23 15:39:00.815 [main] INFO o.a.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/10.1.30] +2024-09-23 15:39:00.868 [main] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring embedded WebApplicationContext +2024-09-23 15:39:00.868 [main] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 1048 ms +2024-09-23 15:39:01.531 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Starting... +2024-09-23 15:39:01.626 [main] INFO com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - Added connection com.mysql.cj.jdbc.ConnectionImpl@66682e8f +2024-09-23 15:39:01.627 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Start completed. +2024-09-23 15:39:01.746 [main] INFO o.a.coyote.http11.Http11NioProtocol - Starting ProtocolHandler ["http-nio-8080"] +2024-09-23 15:39:01.760 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat started on port 8080 (http) with context path '/' +2024-09-23 15:39:01.766 [main] INFO c.g.h.HarmonyLifeServerApplication - Started HarmonyLifeServerApplication in 2.29 seconds (process running for 2.687) +2024-09-23 15:39:10.665 [http-nio-8080-exec-1] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring DispatcherServlet 'dispatcherServlet' +2024-09-23 15:39:10.665 [http-nio-8080-exec-1] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet' +2024-09-23 15:39:10.666 [http-nio-8080-exec-1] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 1 ms +2024-09-23 15:39:11.007 [http-nio-8080-exec-1] INFO c.g.h.service.impl.UserServiceImpl - 查询用户1的用户信息 +2024-09-23 15:39:11.019 [http-nio-8080-exec-1] DEBUG c.g.h.mapper.UserMapper.getUserById - ==> Preparing: SELECT * from user_info where id=? AND status=1 +2024-09-23 15:39:11.035 [http-nio-8080-exec-1] DEBUG c.g.h.mapper.UserMapper.getUserById - ==> Parameters: 1(Long) +2024-09-23 15:39:11.052 [http-nio-8080-exec-1] DEBUG c.g.h.mapper.UserMapper.getUserById - <== Total: 1 +2024-09-23 15:39:11.053 [http-nio-8080-exec-1] DEBUG c.g.h.m.AuthMapper.getUserRoleById - ==> Preparing: SELECT * from system_role where role_id=? AND status=1 +2024-09-23 15:39:11.053 [http-nio-8080-exec-1] DEBUG c.g.h.m.AuthMapper.getUserRoleById - ==> Parameters: root(String) +2024-09-23 15:39:11.055 [http-nio-8080-exec-1] DEBUG c.g.h.m.AuthMapper.getUserRoleById - <== Total: 1 +2024-09-23 15:39:11.055 [http-nio-8080-exec-1] INFO c.g.h.service.impl.UserServiceImpl - 开始为用户1准备权限。 +2024-09-23 15:39:11.057 [http-nio-8080-exec-1] ERROR c.g.h.config.GlobalExceptionHandler - Invalid bound statement (not found): com.guaiguailang.harmony.mapper.AuthMapper.getUserPermissionList +2024-09-23 15:39:51.825 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown initiated... +2024-09-23 15:39:51.830 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown completed. +2024-09-23 15:39:54.484 [main] INFO o.s.boot.SpringApplication - +██╗ ██╗██████╗ ██╗██╗ █████╗ ███╗ ██╗ ██████╗ +╚██╗██╔╝██╔══██╗██║██║ ██╔══██╗████╗ ██║██╔════╝ + ╚███╔╝ ██████╔╝██║██║ ███████║██╔██╗ ██║██║ ███╗ + ██╔██╗ ██╔══██╗██║██║ ██╔══██║██║╚██╗██║██║ ██║ +██╔╝ ██╗██║ ██║██║███████╗██║ ██║██║ ╚████║╚██████╔╝ +╚═╝ ╚═╝╚═╝ ╚═╝╚═╝╚══════╝╚═╝ ╚═╝╚═╝ ╚═══╝ ╚═════╝ + +^_^ 服务启动成功 He Sheng +# 项目名称:harmony-life-server +# 项目版本:1.0.0 +# 框架版本:3.3.4 +# 最后更新于 2024年 9月 25日 + + +2024-09-23 15:39:54.529 [main] INFO c.g.h.HarmonyLifeServerApplication - Starting HarmonyLifeServerApplication using Java 17.0.8 with PID 31492 (C:\Users\xrilang\Desktop\harmony-life\harmony-life-server\harmony-life-server\target\classes started by xrilang in C:\Users\xrilang\Desktop\harmony-life\harmony-life-server\harmony-life-server) +2024-09-23 15:39:54.529 [main] DEBUG c.g.h.HarmonyLifeServerApplication - Running with Spring Boot v3.3.4, Spring v6.1.13 +2024-09-23 15:39:54.530 [main] INFO c.g.h.HarmonyLifeServerApplication - No active profile set, falling back to 1 default profile: "default" +2024-09-23 15:39:55.066 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode +2024-09-23 15:39:55.067 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data JDBC repositories in DEFAULT mode. +2024-09-23 15:39:55.078 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 8 ms. Found 0 JDBC repository interfaces. +2024-09-23 15:39:55.086 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode +2024-09-23 15:39:55.087 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2024-09-23 15:39:55.099 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 5 ms. Found 0 Redis repository interfaces. +2024-09-23 15:39:55.496 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat initialized with port 8080 (http) +2024-09-23 15:39:55.503 [main] INFO o.a.coyote.http11.Http11NioProtocol - Initializing ProtocolHandler ["http-nio-8080"] +2024-09-23 15:39:55.506 [main] INFO o.a.catalina.core.StandardService - Starting service [Tomcat] +2024-09-23 15:39:55.506 [main] INFO o.a.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/10.1.30] +2024-09-23 15:39:55.561 [main] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring embedded WebApplicationContext +2024-09-23 15:39:55.562 [main] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 1001 ms +2024-09-23 15:39:56.206 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Starting... +2024-09-23 15:39:56.302 [main] INFO com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - Added connection com.mysql.cj.jdbc.ConnectionImpl@2cdcfaa6 +2024-09-23 15:39:56.304 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Start completed. +2024-09-23 15:39:56.407 [main] INFO o.a.coyote.http11.Http11NioProtocol - Starting ProtocolHandler ["http-nio-8080"] +2024-09-23 15:39:56.421 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat started on port 8080 (http) with context path '/' +2024-09-23 15:39:56.427 [main] INFO c.g.h.HarmonyLifeServerApplication - Started HarmonyLifeServerApplication in 2.216 seconds (process running for 2.623) +2024-09-23 15:40:03.513 [http-nio-8080-exec-1] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring DispatcherServlet 'dispatcherServlet' +2024-09-23 15:40:03.514 [http-nio-8080-exec-1] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet' +2024-09-23 15:40:03.514 [http-nio-8080-exec-1] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 0 ms +2024-09-23 15:40:03.850 [http-nio-8080-exec-1] INFO c.g.h.service.impl.UserServiceImpl - 查询用户1的用户信息 +2024-09-23 15:40:03.862 [http-nio-8080-exec-1] DEBUG c.g.h.mapper.UserMapper.getUserById - ==> Preparing: SELECT * from user_info where id=? AND status=1 +2024-09-23 15:40:03.877 [http-nio-8080-exec-1] DEBUG c.g.h.mapper.UserMapper.getUserById - ==> Parameters: 1(Long) +2024-09-23 15:40:03.894 [http-nio-8080-exec-1] DEBUG c.g.h.mapper.UserMapper.getUserById - <== Total: 1 +2024-09-23 15:40:03.895 [http-nio-8080-exec-1] DEBUG c.g.h.m.AuthMapper.getUserRoleById - ==> Preparing: SELECT * from system_role where role_id=? AND status=1 +2024-09-23 15:40:03.896 [http-nio-8080-exec-1] DEBUG c.g.h.m.AuthMapper.getUserRoleById - ==> Parameters: root(String) +2024-09-23 15:40:03.897 [http-nio-8080-exec-1] DEBUG c.g.h.m.AuthMapper.getUserRoleById - <== Total: 1 +2024-09-23 15:40:03.897 [http-nio-8080-exec-1] INFO c.g.h.service.impl.UserServiceImpl - 开始为用户1准备权限。 +2024-09-23 15:40:03.898 [http-nio-8080-exec-1] ERROR c.g.h.config.GlobalExceptionHandler - Invalid bound statement (not found): com.guaiguailang.harmony.mapper.AuthMapper.getUserPermissionList +2024-09-23 15:40:51.445 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown initiated... +2024-09-23 15:40:51.450 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown completed. +2024-09-23 15:40:55.068 [main] INFO o.s.boot.SpringApplication - +██╗ ██╗██████╗ ██╗██╗ █████╗ ███╗ ██╗ ██████╗ +╚██╗██╔╝██╔══██╗██║██║ ██╔══██╗████╗ ██║██╔════╝ + ╚███╔╝ ██████╔╝██║██║ ███████║██╔██╗ ██║██║ ███╗ + ██╔██╗ ██╔══██╗██║██║ ██╔══██║██║╚██╗██║██║ ██║ +██╔╝ ██╗██║ ██║██║███████╗██║ ██║██║ ╚████║╚██████╔╝ +╚═╝ ╚═╝╚═╝ ╚═╝╚═╝╚══════╝╚═╝ ╚═╝╚═╝ ╚═══╝ ╚═════╝ + +^_^ 服务启动成功 He Sheng +# 项目名称:harmony-life-server +# 项目版本:1.0.0 +# 框架版本:3.3.4 +# 最后更新于 2024年 9月 25日 + + +2024-09-23 15:40:55.110 [main] INFO c.g.h.HarmonyLifeServerApplication - Starting HarmonyLifeServerApplication using Java 17.0.8 with PID 29716 (C:\Users\xrilang\Desktop\harmony-life\harmony-life-server\harmony-life-server\target\classes started by xrilang in C:\Users\xrilang\Desktop\harmony-life\harmony-life-server\harmony-life-server) +2024-09-23 15:40:55.111 [main] DEBUG c.g.h.HarmonyLifeServerApplication - Running with Spring Boot v3.3.4, Spring v6.1.13 +2024-09-23 15:40:55.111 [main] INFO c.g.h.HarmonyLifeServerApplication - No active profile set, falling back to 1 default profile: "default" +2024-09-23 15:40:55.655 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode +2024-09-23 15:40:55.655 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data JDBC repositories in DEFAULT mode. +2024-09-23 15:40:55.670 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 12 ms. Found 0 JDBC repository interfaces. +2024-09-23 15:40:55.679 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode +2024-09-23 15:40:55.680 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2024-09-23 15:40:55.692 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 5 ms. Found 0 Redis repository interfaces. +2024-09-23 15:40:56.104 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat initialized with port 8080 (http) +2024-09-23 15:40:56.111 [main] INFO o.a.coyote.http11.Http11NioProtocol - Initializing ProtocolHandler ["http-nio-8080"] +2024-09-23 15:40:56.114 [main] INFO o.a.catalina.core.StandardService - Starting service [Tomcat] +2024-09-23 15:40:56.114 [main] INFO o.a.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/10.1.30] +2024-09-23 15:40:56.171 [main] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring embedded WebApplicationContext +2024-09-23 15:40:56.172 [main] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 1028 ms +2024-09-23 15:40:56.832 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Starting... +2024-09-23 15:40:56.926 [main] INFO com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - Added connection com.mysql.cj.jdbc.ConnectionImpl@6338afe2 +2024-09-23 15:40:56.927 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Start completed. +2024-09-23 15:40:57.044 [main] INFO o.a.coyote.http11.Http11NioProtocol - Starting ProtocolHandler ["http-nio-8080"] +2024-09-23 15:40:57.059 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat started on port 8080 (http) with context path '/' +2024-09-23 15:40:57.065 [main] INFO c.g.h.HarmonyLifeServerApplication - Started HarmonyLifeServerApplication in 2.269 seconds (process running for 2.668) +2024-09-23 15:41:02.309 [http-nio-8080-exec-1] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring DispatcherServlet 'dispatcherServlet' +2024-09-23 15:41:02.310 [http-nio-8080-exec-1] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet' +2024-09-23 15:41:02.310 [http-nio-8080-exec-1] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 0 ms +2024-09-23 15:41:02.663 [http-nio-8080-exec-1] INFO c.g.h.service.impl.UserServiceImpl - 查询用户1的用户信息 +2024-09-23 15:41:02.677 [http-nio-8080-exec-1] DEBUG c.g.h.mapper.UserMapper.getUserById - ==> Preparing: SELECT * from user_info where id=? AND status=1 +2024-09-23 15:41:02.692 [http-nio-8080-exec-1] DEBUG c.g.h.mapper.UserMapper.getUserById - ==> Parameters: 1(Long) +2024-09-23 15:41:02.711 [http-nio-8080-exec-1] DEBUG c.g.h.mapper.UserMapper.getUserById - <== Total: 1 +2024-09-23 15:41:02.713 [http-nio-8080-exec-1] DEBUG c.g.h.m.AuthMapper.getUserRoleById - ==> Preparing: SELECT * from system_role where role_id=? AND status=1 +2024-09-23 15:41:02.713 [http-nio-8080-exec-1] DEBUG c.g.h.m.AuthMapper.getUserRoleById - ==> Parameters: root(String) +2024-09-23 15:41:02.715 [http-nio-8080-exec-1] DEBUG c.g.h.m.AuthMapper.getUserRoleById - <== Total: 1 +2024-09-23 15:41:02.715 [http-nio-8080-exec-1] INFO c.g.h.service.impl.UserServiceImpl - 开始为用户1准备权限。 +2024-09-23 15:41:02.717 [http-nio-8080-exec-1] ERROR c.g.h.config.GlobalExceptionHandler - Invalid bound statement (not found): com.guaiguailang.harmony.mapper.AuthMapper.getUserPermissionList +2024-09-23 15:44:35.123 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown initiated... +2024-09-23 15:44:35.128 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown completed. +2024-09-23 15:44:38.602 [main] INFO o.s.boot.SpringApplication - +██╗ ██╗██████╗ ██╗██╗ █████╗ ███╗ ██╗ ██████╗ +╚██╗██╔╝██╔══██╗██║██║ ██╔══██╗████╗ ██║██╔════╝ + ╚███╔╝ ██████╔╝██║██║ ███████║██╔██╗ ██║██║ ███╗ + ██╔██╗ ██╔══██╗██║██║ ██╔══██║██║╚██╗██║██║ ██║ +██╔╝ ██╗██║ ██║██║███████╗██║ ██║██║ ╚████║╚██████╔╝ +╚═╝ ╚═╝╚═╝ ╚═╝╚═╝╚══════╝╚═╝ ╚═╝╚═╝ ╚═══╝ ╚═════╝ + +^_^ 服务启动成功 He Sheng +# 项目名称:harmony-life-server +# 项目版本:1.0.0 +# 框架版本:3.3.4 +# 最后更新于 2024年 9月 25日 + + +2024-09-23 15:44:38.649 [main] INFO c.g.h.HarmonyLifeServerApplication - Starting HarmonyLifeServerApplication using Java 17.0.8 with PID 14280 (C:\Users\xrilang\Desktop\harmony-life\harmony-life-server\harmony-life-server\target\classes started by xrilang in C:\Users\xrilang\Desktop\harmony-life\harmony-life-server\harmony-life-server) +2024-09-23 15:44:38.649 [main] DEBUG c.g.h.HarmonyLifeServerApplication - Running with Spring Boot v3.3.4, Spring v6.1.13 +2024-09-23 15:44:38.650 [main] INFO c.g.h.HarmonyLifeServerApplication - No active profile set, falling back to 1 default profile: "default" +2024-09-23 15:44:39.195 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode +2024-09-23 15:44:39.196 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data JDBC repositories in DEFAULT mode. +2024-09-23 15:44:39.218 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 15 ms. Found 0 JDBC repository interfaces. +2024-09-23 15:44:39.230 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode +2024-09-23 15:44:39.231 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2024-09-23 15:44:39.244 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 5 ms. Found 0 Redis repository interfaces. +2024-09-23 15:44:39.675 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat initialized with port 8080 (http) +2024-09-23 15:44:39.682 [main] INFO o.a.coyote.http11.Http11NioProtocol - Initializing ProtocolHandler ["http-nio-8080"] +2024-09-23 15:44:39.686 [main] INFO o.a.catalina.core.StandardService - Starting service [Tomcat] +2024-09-23 15:44:39.686 [main] INFO o.a.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/10.1.30] +2024-09-23 15:44:39.748 [main] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring embedded WebApplicationContext +2024-09-23 15:44:39.748 [main] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 1067 ms +2024-09-23 15:44:40.434 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Starting... +2024-09-23 15:44:40.529 [main] INFO com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - Added connection com.mysql.cj.jdbc.ConnectionImpl@6338afe2 +2024-09-23 15:44:40.530 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Start completed. +2024-09-23 15:44:40.645 [main] INFO o.a.coyote.http11.Http11NioProtocol - Starting ProtocolHandler ["http-nio-8080"] +2024-09-23 15:44:40.657 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat started on port 8080 (http) with context path '/' +2024-09-23 15:44:40.664 [main] INFO c.g.h.HarmonyLifeServerApplication - Started HarmonyLifeServerApplication in 2.337 seconds (process running for 2.735) +2024-09-23 15:45:01.537 [http-nio-8080-exec-1] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring DispatcherServlet 'dispatcherServlet' +2024-09-23 15:45:01.537 [http-nio-8080-exec-1] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet' +2024-09-23 15:45:01.538 [http-nio-8080-exec-1] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 1 ms +2024-09-23 15:45:01.881 [http-nio-8080-exec-1] INFO c.g.h.service.impl.UserServiceImpl - 查询用户1的用户信息 +2024-09-23 15:45:01.894 [http-nio-8080-exec-1] DEBUG c.g.h.mapper.UserMapper.getUserById - ==> Preparing: SELECT * from user_info where id=? AND status=1 +2024-09-23 15:45:01.908 [http-nio-8080-exec-1] DEBUG c.g.h.mapper.UserMapper.getUserById - ==> Parameters: 1(Long) +2024-09-23 15:45:01.931 [http-nio-8080-exec-1] DEBUG c.g.h.mapper.UserMapper.getUserById - <== Total: 1 +2024-09-23 15:45:01.932 [http-nio-8080-exec-1] DEBUG c.g.h.m.AuthMapper.getUserRoleById - ==> Preparing: SELECT * from system_role where role_id=? AND status=1 +2024-09-23 15:45:01.932 [http-nio-8080-exec-1] DEBUG c.g.h.m.AuthMapper.getUserRoleById - ==> Parameters: root(String) +2024-09-23 15:45:01.933 [http-nio-8080-exec-1] DEBUG c.g.h.m.AuthMapper.getUserRoleById - <== Total: 1 +2024-09-23 15:45:01.934 [http-nio-8080-exec-1] INFO c.g.h.service.impl.UserServiceImpl - 开始为用户1准备权限。 +2024-09-23 15:45:01.935 [http-nio-8080-exec-1] ERROR c.g.h.config.GlobalExceptionHandler - Invalid bound statement (not found): com.guaiguailang.harmony.mapper.AuthMapper.getUserPermissionList +2024-09-23 15:46:18.861 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown initiated... +2024-09-23 15:46:18.865 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown completed. +2024-09-23 15:46:21.084 [main] INFO o.s.boot.SpringApplication - +██╗ ██╗██████╗ ██╗██╗ █████╗ ███╗ ██╗ ██████╗ +╚██╗██╔╝██╔══██╗██║██║ ██╔══██╗████╗ ██║██╔════╝ + ╚███╔╝ ██████╔╝██║██║ ███████║██╔██╗ ██║██║ ███╗ + ██╔██╗ ██╔══██╗██║██║ ██╔══██║██║╚██╗██║██║ ██║ +██╔╝ ██╗██║ ██║██║███████╗██║ ██║██║ ╚████║╚██████╔╝ +╚═╝ ╚═╝╚═╝ ╚═╝╚═╝╚══════╝╚═╝ ╚═╝╚═╝ ╚═══╝ ╚═════╝ + +^_^ 服务启动成功 He Sheng +# 项目名称:harmony-life-server +# 项目版本:1.0.0 +# 框架版本:3.3.4 +# 最后更新于 2024年 9月 25日 + + +2024-09-23 15:46:21.131 [main] INFO c.g.h.HarmonyLifeServerApplication - Starting HarmonyLifeServerApplication using Java 17.0.8 with PID 6288 (C:\Users\xrilang\Desktop\harmony-life\harmony-life-server\harmony-life-server\target\classes started by xrilang in C:\Users\xrilang\Desktop\harmony-life\harmony-life-server\harmony-life-server) +2024-09-23 15:46:21.131 [main] DEBUG c.g.h.HarmonyLifeServerApplication - Running with Spring Boot v3.3.4, Spring v6.1.13 +2024-09-23 15:46:21.131 [main] INFO c.g.h.HarmonyLifeServerApplication - No active profile set, falling back to 1 default profile: "default" +2024-09-23 15:46:21.661 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode +2024-09-23 15:46:21.662 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data JDBC repositories in DEFAULT mode. +2024-09-23 15:46:21.676 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 12 ms. Found 0 JDBC repository interfaces. +2024-09-23 15:46:21.693 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode +2024-09-23 15:46:21.694 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2024-09-23 15:46:21.710 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 5 ms. Found 0 Redis repository interfaces. +2024-09-23 15:46:22.149 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat initialized with port 8080 (http) +2024-09-23 15:46:22.163 [main] INFO o.a.coyote.http11.Http11NioProtocol - Initializing ProtocolHandler ["http-nio-8080"] +2024-09-23 15:46:22.166 [main] INFO o.a.catalina.core.StandardService - Starting service [Tomcat] +2024-09-23 15:46:22.166 [main] INFO o.a.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/10.1.30] +2024-09-23 15:46:22.224 [main] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring embedded WebApplicationContext +2024-09-23 15:46:22.224 [main] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 1062 ms +2024-09-23 15:46:22.959 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Starting... +2024-09-23 15:46:23.054 [main] INFO com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - Added connection com.mysql.cj.jdbc.ConnectionImpl@de0c402 +2024-09-23 15:46:23.055 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Start completed. +2024-09-23 15:46:23.174 [main] INFO o.a.coyote.http11.Http11NioProtocol - Starting ProtocolHandler ["http-nio-8080"] +2024-09-23 15:46:23.189 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat started on port 8080 (http) with context path '/' +2024-09-23 15:46:23.195 [main] INFO c.g.h.HarmonyLifeServerApplication - Started HarmonyLifeServerApplication in 2.384 seconds (process running for 2.799) +2024-09-23 15:46:28.686 [http-nio-8080-exec-1] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring DispatcherServlet 'dispatcherServlet' +2024-09-23 15:46:28.686 [http-nio-8080-exec-1] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet' +2024-09-23 15:46:28.687 [http-nio-8080-exec-1] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 1 ms +2024-09-23 15:46:29.032 [http-nio-8080-exec-1] INFO c.g.h.service.impl.UserServiceImpl - 查询用户1的用户信息 +2024-09-23 15:46:29.044 [http-nio-8080-exec-1] DEBUG c.g.h.mapper.UserMapper.getUserById - ==> Preparing: SELECT * from user_info where id=? AND status=1 +2024-09-23 15:46:29.057 [http-nio-8080-exec-1] DEBUG c.g.h.mapper.UserMapper.getUserById - ==> Parameters: 1(Long) +2024-09-23 15:46:29.075 [http-nio-8080-exec-1] DEBUG c.g.h.mapper.UserMapper.getUserById - <== Total: 1 +2024-09-23 15:46:29.077 [http-nio-8080-exec-1] DEBUG c.g.h.m.AuthMapper.getUserRoleById - ==> Preparing: SELECT * from system_role where role_id=? AND status=1 +2024-09-23 15:46:29.077 [http-nio-8080-exec-1] DEBUG c.g.h.m.AuthMapper.getUserRoleById - ==> Parameters: root(String) +2024-09-23 15:46:29.079 [http-nio-8080-exec-1] DEBUG c.g.h.m.AuthMapper.getUserRoleById - <== Total: 1 +2024-09-23 15:46:29.079 [http-nio-8080-exec-1] INFO c.g.h.service.impl.UserServiceImpl - 开始为用户1准备权限。 +2024-09-23 15:46:29.080 [http-nio-8080-exec-1] DEBUG c.g.h.m.A.getUserPermissionList - ==> Preparing: SELECT * FROM system_role_permission srp INNER JOIN system_permission sp ON srp.permission_id = sp.id WHERE srp.role_id = (SELECT role_id FROM user_info WHERE id = ? AND deleted = 0) AND srp.status = 1 +2024-09-23 15:46:29.080 [http-nio-8080-exec-1] DEBUG c.g.h.m.A.getUserPermissionList - ==> Parameters: 1(Long) +2024-09-23 15:46:29.082 [http-nio-8080-exec-1] DEBUG c.g.h.m.A.getUserPermissionList - <== Total: 0 +2024-09-23 15:46:29.082 [http-nio-8080-exec-1] INFO c.g.h.service.impl.UserServiceImpl - 权限列表(0):[] +2024-09-23 15:46:29.088 [http-nio-8080-exec-1] INFO c.g.h.service.impl.UserServiceImpl - UserInfoLogin(id=1, name=萌狼蓝天, username=xrilang, avatar=https://q1.qlogo.cn/g?b=qq&nk=3447902411&s=640, email=null, telephone=null, status=0, lastLoginIp=null, lastLoginTime=null, createTime=null, creator=null, merchantCode=null, roleId=root, role=RoleInfo(id=root, name=null, description=null, status=0, creatorId=null, createTime=null, deleted=0, permissionInfo=[]), token=null, expireTime=null) +2024-09-23 15:50:51.149 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown initiated... +2024-09-23 15:50:51.154 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown completed. +2024-09-23 15:51:02.138 [main] INFO o.s.boot.SpringApplication - +██╗ ██╗██████╗ ██╗██╗ █████╗ ███╗ ██╗ ██████╗ +╚██╗██╔╝██╔══██╗██║██║ ██╔══██╗████╗ ██║██╔════╝ + ╚███╔╝ ██████╔╝██║██║ ███████║██╔██╗ ██║██║ ███╗ + ██╔██╗ ██╔══██╗██║██║ ██╔══██║██║╚██╗██║██║ ██║ +██╔╝ ██╗██║ ██║██║███████╗██║ ██║██║ ╚████║╚██████╔╝ +╚═╝ ╚═╝╚═╝ ╚═╝╚═╝╚══════╝╚═╝ ╚═╝╚═╝ ╚═══╝ ╚═════╝ + +^_^ 服务启动成功 He Sheng +# 项目名称:harmony-life-server +# 项目版本:1.0.0 +# 框架版本:3.3.4 +# 最后更新于 2024年 9月 25日 + + +2024-09-23 15:51:02.181 [main] INFO c.g.h.HarmonyLifeServerApplication - Starting HarmonyLifeServerApplication using Java 17.0.8 with PID 29868 (C:\Users\xrilang\Desktop\harmony-life\harmony-life-server\harmony-life-server\target\classes started by xrilang in C:\Users\xrilang\Desktop\harmony-life\harmony-life-server\harmony-life-server) +2024-09-23 15:51:02.181 [main] DEBUG c.g.h.HarmonyLifeServerApplication - Running with Spring Boot v3.3.4, Spring v6.1.13 +2024-09-23 15:51:02.182 [main] INFO c.g.h.HarmonyLifeServerApplication - No active profile set, falling back to 1 default profile: "default" +2024-09-23 15:51:02.728 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode +2024-09-23 15:51:02.729 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data JDBC repositories in DEFAULT mode. +2024-09-23 15:51:02.740 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 8 ms. Found 0 JDBC repository interfaces. +2024-09-23 15:51:02.750 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode +2024-09-23 15:51:02.750 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2024-09-23 15:51:02.763 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 5 ms. Found 0 Redis repository interfaces. +2024-09-23 15:51:03.191 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat initialized with port 8080 (http) +2024-09-23 15:51:03.198 [main] INFO o.a.coyote.http11.Http11NioProtocol - Initializing ProtocolHandler ["http-nio-8080"] +2024-09-23 15:51:03.201 [main] INFO o.a.catalina.core.StandardService - Starting service [Tomcat] +2024-09-23 15:51:03.202 [main] INFO o.a.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/10.1.30] +2024-09-23 15:51:03.259 [main] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring embedded WebApplicationContext +2024-09-23 15:51:03.259 [main] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 1048 ms +2024-09-23 15:51:03.958 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Starting... +2024-09-23 15:51:04.057 [main] INFO com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - Added connection com.mysql.cj.jdbc.ConnectionImpl@3d05435c +2024-09-23 15:51:04.058 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Start completed. +2024-09-23 15:51:04.178 [main] INFO o.a.coyote.http11.Http11NioProtocol - Starting ProtocolHandler ["http-nio-8080"] +2024-09-23 15:51:04.191 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat started on port 8080 (http) with context path '/' +2024-09-23 15:51:04.197 [main] INFO c.g.h.HarmonyLifeServerApplication - Started HarmonyLifeServerApplication in 2.33 seconds (process running for 2.727) +2024-09-23 15:51:10.860 [http-nio-8080-exec-1] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring DispatcherServlet 'dispatcherServlet' +2024-09-23 15:51:10.860 [http-nio-8080-exec-1] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet' +2024-09-23 15:51:10.861 [http-nio-8080-exec-1] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 1 ms +2024-09-23 15:51:11.217 [http-nio-8080-exec-1] INFO c.g.h.service.impl.UserServiceImpl - 查询用户1的用户信息 +2024-09-23 15:51:11.230 [http-nio-8080-exec-1] DEBUG c.g.h.mapper.UserMapper.getUserById - ==> Preparing: SELECT * from user_info where id=? AND status=1 +2024-09-23 15:51:11.248 [http-nio-8080-exec-1] DEBUG c.g.h.mapper.UserMapper.getUserById - ==> Parameters: 1(Long) +2024-09-23 15:51:11.267 [http-nio-8080-exec-1] DEBUG c.g.h.mapper.UserMapper.getUserById - <== Total: 1 +2024-09-23 15:51:11.269 [http-nio-8080-exec-1] DEBUG c.g.h.m.AuthMapper.getUserRoleById - ==> Preparing: SELECT * from system_role where role_id=? AND status=1 +2024-09-23 15:51:11.269 [http-nio-8080-exec-1] DEBUG c.g.h.m.AuthMapper.getUserRoleById - ==> Parameters: root(String) +2024-09-23 15:51:11.272 [http-nio-8080-exec-1] DEBUG c.g.h.m.AuthMapper.getUserRoleById - <== Total: 1 +2024-09-23 15:51:11.272 [http-nio-8080-exec-1] INFO c.g.h.service.impl.UserServiceImpl - 开始为用户1准备权限。 +2024-09-23 15:51:11.273 [http-nio-8080-exec-1] DEBUG c.g.h.m.A.getUserPermissionList - ==> Preparing: SELECT * FROM system_role_permission srp INNER JOIN system_permission sp ON srp.permission_id = sp.id WHERE srp.role_id = (SELECT role_id FROM user_info WHERE id = ? AND deleted = 0) AND srp.status = 1 +2024-09-23 15:51:11.273 [http-nio-8080-exec-1] DEBUG c.g.h.m.A.getUserPermissionList - ==> Parameters: 1(Long) +2024-09-23 15:51:11.277 [http-nio-8080-exec-1] DEBUG c.g.h.m.A.getUserPermissionList - <== Total: 0 +2024-09-23 15:51:11.277 [http-nio-8080-exec-1] INFO c.g.h.service.impl.UserServiceImpl - 权限列表(0):[] +2024-09-23 15:51:11.283 [http-nio-8080-exec-1] INFO c.g.h.service.impl.UserServiceImpl - UserInfoLogin(id=1, name=萌狼蓝天, username=xrilang, avatar=https://q1.qlogo.cn/g?b=qq&nk=3447902411&s=640, email=null, telephone=null, status=0, lastLoginIp=null, lastLoginTime=null, createTime=null, creator=null, merchantCode=null, roleId=root, role=RoleInfo(id=root, name=超级管理员, description=最高权限, status=0, creatorId=null, createTime=null, deleted=0, permissionInfo=[]), token=null, expireTime=null) +2024-09-23 15:53:35.351 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown initiated... +2024-09-23 15:53:35.355 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown completed. +2024-09-23 15:53:38.941 [main] INFO o.s.boot.SpringApplication - +██╗ ██╗██████╗ ██╗██╗ █████╗ ███╗ ██╗ ██████╗ +╚██╗██╔╝██╔══██╗██║██║ ██╔══██╗████╗ ██║██╔════╝ + ╚███╔╝ ██████╔╝██║██║ ███████║██╔██╗ ██║██║ ███╗ + ██╔██╗ ██╔══██╗██║██║ ██╔══██║██║╚██╗██║██║ ██║ +██╔╝ ██╗██║ ██║██║███████╗██║ ██║██║ ╚████║╚██████╔╝ +╚═╝ ╚═╝╚═╝ ╚═╝╚═╝╚══════╝╚═╝ ╚═╝╚═╝ ╚═══╝ ╚═════╝ + +^_^ 服务启动成功 He Sheng +# 项目名称:harmony-life-server +# 项目版本:1.0.0 +# 框架版本:3.3.4 +# 最后更新于 2024年 9月 25日 + + +2024-09-23 15:53:38.987 [main] INFO c.g.h.HarmonyLifeServerApplication - Starting HarmonyLifeServerApplication using Java 17.0.8 with PID 10740 (C:\Users\xrilang\Desktop\harmony-life\harmony-life-server\harmony-life-server\target\classes started by xrilang in C:\Users\xrilang\Desktop\harmony-life\harmony-life-server\harmony-life-server) +2024-09-23 15:53:38.988 [main] DEBUG c.g.h.HarmonyLifeServerApplication - Running with Spring Boot v3.3.4, Spring v6.1.13 +2024-09-23 15:53:38.988 [main] INFO c.g.h.HarmonyLifeServerApplication - No active profile set, falling back to 1 default profile: "default" +2024-09-23 15:53:39.531 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode +2024-09-23 15:53:39.532 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data JDBC repositories in DEFAULT mode. +2024-09-23 15:53:39.543 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 8 ms. Found 0 JDBC repository interfaces. +2024-09-23 15:53:39.551 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode +2024-09-23 15:53:39.552 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2024-09-23 15:53:39.564 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 4 ms. Found 0 Redis repository interfaces. +2024-09-23 15:53:39.989 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat initialized with port 8080 (http) +2024-09-23 15:53:39.997 [main] INFO o.a.coyote.http11.Http11NioProtocol - Initializing ProtocolHandler ["http-nio-8080"] +2024-09-23 15:53:39.999 [main] INFO o.a.catalina.core.StandardService - Starting service [Tomcat] +2024-09-23 15:53:40.000 [main] INFO o.a.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/10.1.30] +2024-09-23 15:53:40.057 [main] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring embedded WebApplicationContext +2024-09-23 15:53:40.058 [main] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 1040 ms +2024-09-23 15:53:40.824 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Starting... +2024-09-23 15:53:40.925 [main] INFO com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - Added connection com.mysql.cj.jdbc.ConnectionImpl@81a8898 +2024-09-23 15:53:40.926 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Start completed. +2024-09-23 15:53:41.043 [main] INFO o.a.coyote.http11.Http11NioProtocol - Starting ProtocolHandler ["http-nio-8080"] +2024-09-23 15:53:41.058 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat started on port 8080 (http) with context path '/' +2024-09-23 15:53:41.064 [main] INFO c.g.h.HarmonyLifeServerApplication - Started HarmonyLifeServerApplication in 2.392 seconds (process running for 2.788) +2024-09-23 15:53:46.833 [http-nio-8080-exec-1] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring DispatcherServlet 'dispatcherServlet' +2024-09-23 15:53:46.833 [http-nio-8080-exec-1] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet' +2024-09-23 15:53:46.834 [http-nio-8080-exec-1] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 1 ms +2024-09-23 15:53:47.177 [http-nio-8080-exec-1] INFO c.g.h.service.impl.UserServiceImpl - 查询用户1的用户信息 +2024-09-23 15:53:47.189 [http-nio-8080-exec-1] DEBUG c.g.h.mapper.UserMapper.getUserById - ==> Preparing: SELECT * from user_info where id=? AND status=1 +2024-09-23 15:53:47.204 [http-nio-8080-exec-1] DEBUG c.g.h.mapper.UserMapper.getUserById - ==> Parameters: 1(Long) +2024-09-23 15:53:47.227 [http-nio-8080-exec-1] DEBUG c.g.h.mapper.UserMapper.getUserById - <== Total: 1 +2024-09-23 15:53:47.228 [http-nio-8080-exec-1] DEBUG c.g.h.m.AuthMapper.getUserRoleById - ==> Preparing: SELECT * from system_role where role_id=? AND status=1 +2024-09-23 15:53:47.229 [http-nio-8080-exec-1] DEBUG c.g.h.m.AuthMapper.getUserRoleById - ==> Parameters: root(String) +2024-09-23 15:53:47.233 [http-nio-8080-exec-1] DEBUG c.g.h.m.AuthMapper.getUserRoleById - <== Total: 1 +2024-09-23 15:53:47.233 [http-nio-8080-exec-1] INFO c.g.h.service.impl.UserServiceImpl - 开始为用户1准备权限。 +2024-09-23 15:53:47.233 [http-nio-8080-exec-1] DEBUG c.g.h.m.A.getUserPermissionListByRoleId - ==> Preparing: SELECT * from system_role_permission where role_id=? AND status=1 +2024-09-23 15:53:47.233 [http-nio-8080-exec-1] DEBUG c.g.h.m.A.getUserPermissionListByRoleId - ==> Parameters: root(String) +2024-09-23 15:53:47.236 [http-nio-8080-exec-1] DEBUG c.g.h.m.A.getUserPermissionListByRoleId - <== Total: 10 +2024-09-23 15:53:47.236 [http-nio-8080-exec-1] INFO c.g.h.service.impl.UserServiceImpl - 权限列表(10):[com.guaiguailang.harmony.domain.entity.SystemPermission@2e96fc93, com.guaiguailang.harmony.domain.entity.SystemPermission@246e5669, com.guaiguailang.harmony.domain.entity.SystemPermission@3c7caf65, com.guaiguailang.harmony.domain.entity.SystemPermission@2dec6436, com.guaiguailang.harmony.domain.entity.SystemPermission@3487777c, com.guaiguailang.harmony.domain.entity.SystemPermission@620cb29b, com.guaiguailang.harmony.domain.entity.SystemPermission@3b523e38, com.guaiguailang.harmony.domain.entity.SystemPermission@75d120b0, com.guaiguailang.harmony.domain.entity.SystemPermission@7ae285e1, com.guaiguailang.harmony.domain.entity.SystemPermission@7d7d784c] +2024-09-23 15:53:47.236 [http-nio-8080-exec-1] DEBUG c.g.h.m.A.getActionByPermissionId - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.id = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 +2024-09-23 15:53:47.237 [http-nio-8080-exec-1] DEBUG c.g.h.m.A.getActionByPermissionId - ==> Parameters: dashboard(String) +2024-09-23 15:53:47.240 [http-nio-8080-exec-1] DEBUG c.g.h.m.A.getActionByPermissionId - <== Total: 0 +2024-09-23 15:53:47.243 [http-nio-8080-exec-1] ERROR c.g.h.config.GlobalExceptionHandler - Cannot invoke "java.util.List.addAll(java.util.Collection)" because the return value of "com.guaiguailang.harmony.domain.vo.PermissionInfo.getActionEntitySet()" is null +2024-09-23 15:55:13.531 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown initiated... +2024-09-23 15:55:13.536 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown completed. +2024-09-23 15:55:17.030 [main] INFO o.s.boot.SpringApplication - +██╗ ██╗██████╗ ██╗██╗ █████╗ ███╗ ██╗ ██████╗ +╚██╗██╔╝██╔══██╗██║██║ ██╔══██╗████╗ ██║██╔════╝ + ╚███╔╝ ██████╔╝██║██║ ███████║██╔██╗ ██║██║ ███╗ + ██╔██╗ ██╔══██╗██║██║ ██╔══██║██║╚██╗██║██║ ██║ +██╔╝ ██╗██║ ██║██║███████╗██║ ██║██║ ╚████║╚██████╔╝ +╚═╝ ╚═╝╚═╝ ╚═╝╚═╝╚══════╝╚═╝ ╚═╝╚═╝ ╚═══╝ ╚═════╝ + +^_^ 服务启动成功 He Sheng +# 项目名称:harmony-life-server +# 项目版本:1.0.0 +# 框架版本:3.3.4 +# 最后更新于 2024年 9月 25日 + + +2024-09-23 15:55:17.075 [main] INFO c.g.h.HarmonyLifeServerApplication - Starting HarmonyLifeServerApplication using Java 17.0.8 with PID 20648 (C:\Users\xrilang\Desktop\harmony-life\harmony-life-server\harmony-life-server\target\classes started by xrilang in C:\Users\xrilang\Desktop\harmony-life\harmony-life-server\harmony-life-server) +2024-09-23 15:55:17.075 [main] DEBUG c.g.h.HarmonyLifeServerApplication - Running with Spring Boot v3.3.4, Spring v6.1.13 +2024-09-23 15:55:17.076 [main] INFO c.g.h.HarmonyLifeServerApplication - No active profile set, falling back to 1 default profile: "default" +2024-09-23 15:55:17.626 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode +2024-09-23 15:55:17.626 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data JDBC repositories in DEFAULT mode. +2024-09-23 15:55:17.636 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 8 ms. Found 0 JDBC repository interfaces. +2024-09-23 15:55:17.647 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode +2024-09-23 15:55:17.647 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2024-09-23 15:55:17.660 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 5 ms. Found 0 Redis repository interfaces. +2024-09-23 15:55:18.079 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat initialized with port 8080 (http) +2024-09-23 15:55:18.086 [main] INFO o.a.coyote.http11.Http11NioProtocol - Initializing ProtocolHandler ["http-nio-8080"] +2024-09-23 15:55:18.088 [main] INFO o.a.catalina.core.StandardService - Starting service [Tomcat] +2024-09-23 15:55:18.089 [main] INFO o.a.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/10.1.30] +2024-09-23 15:55:18.148 [main] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring embedded WebApplicationContext +2024-09-23 15:55:18.149 [main] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 1044 ms +2024-09-23 15:55:18.841 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Starting... +2024-09-23 15:55:18.934 [main] INFO com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - Added connection com.mysql.cj.jdbc.ConnectionImpl@3b8d2abe +2024-09-23 15:55:18.935 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Start completed. +2024-09-23 15:55:19.049 [main] INFO o.a.coyote.http11.Http11NioProtocol - Starting ProtocolHandler ["http-nio-8080"] +2024-09-23 15:55:19.062 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat started on port 8080 (http) with context path '/' +2024-09-23 15:55:19.069 [main] INFO c.g.h.HarmonyLifeServerApplication - Started HarmonyLifeServerApplication in 2.315 seconds (process running for 2.726) +2024-09-23 15:55:25.807 [http-nio-8080-exec-2] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring DispatcherServlet 'dispatcherServlet' +2024-09-23 15:55:25.807 [http-nio-8080-exec-2] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet' +2024-09-23 15:55:25.808 [http-nio-8080-exec-2] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 1 ms +2024-09-23 15:55:26.145 [http-nio-8080-exec-2] INFO c.g.h.service.impl.UserServiceImpl - 查询用户1的用户信息 +2024-09-23 15:55:26.157 [http-nio-8080-exec-2] DEBUG c.g.h.mapper.UserMapper.getUserById - ==> Preparing: SELECT * from user_info where id=? AND status=1 +2024-09-23 15:55:26.172 [http-nio-8080-exec-2] DEBUG c.g.h.mapper.UserMapper.getUserById - ==> Parameters: 1(Long) +2024-09-23 15:55:26.191 [http-nio-8080-exec-2] DEBUG c.g.h.mapper.UserMapper.getUserById - <== Total: 1 +2024-09-23 15:55:26.192 [http-nio-8080-exec-2] DEBUG c.g.h.m.AuthMapper.getUserRoleById - ==> Preparing: SELECT * from system_role where role_id=? AND status=1 +2024-09-23 15:55:26.193 [http-nio-8080-exec-2] DEBUG c.g.h.m.AuthMapper.getUserRoleById - ==> Parameters: root(String) +2024-09-23 15:55:26.196 [http-nio-8080-exec-2] DEBUG c.g.h.m.AuthMapper.getUserRoleById - <== Total: 1 +2024-09-23 15:55:26.196 [http-nio-8080-exec-2] INFO c.g.h.service.impl.UserServiceImpl - 开始为用户1准备权限。 +2024-09-23 15:55:26.197 [http-nio-8080-exec-2] DEBUG c.g.h.m.A.getUserPermissionListByRoleId - ==> Preparing: select * from system_role_permission where role_id=? AND status=1 +2024-09-23 15:55:26.198 [http-nio-8080-exec-2] DEBUG c.g.h.m.A.getUserPermissionListByRoleId - ==> Parameters: root(String) +2024-09-23 15:55:26.201 [http-nio-8080-exec-2] DEBUG c.g.h.m.A.getUserPermissionListByRoleId - <== Total: 10 +2024-09-23 15:55:26.201 [http-nio-8080-exec-2] INFO c.g.h.service.impl.UserServiceImpl - 权限列表(10):[com.guaiguailang.harmony.domain.entity.SystemPermission@870a721, com.guaiguailang.harmony.domain.entity.SystemPermission@7ddc87b7, com.guaiguailang.harmony.domain.entity.SystemPermission@5a34b7dd, com.guaiguailang.harmony.domain.entity.SystemPermission@18e4e1b2, com.guaiguailang.harmony.domain.entity.SystemPermission@15200420, com.guaiguailang.harmony.domain.entity.SystemPermission@cd8c80c, com.guaiguailang.harmony.domain.entity.SystemPermission@732d0c15, com.guaiguailang.harmony.domain.entity.SystemPermission@4cfb8ab3, com.guaiguailang.harmony.domain.entity.SystemPermission@596f9608, com.guaiguailang.harmony.domain.entity.SystemPermission@13bdad81] +2024-09-23 15:55:26.201 [http-nio-8080-exec-2] DEBUG c.g.h.m.A.getActionByPermissionId - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.id = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 +2024-09-23 15:55:26.202 [http-nio-8080-exec-2] DEBUG c.g.h.m.A.getActionByPermissionId - ==> Parameters: dashboard(String) +2024-09-23 15:55:26.205 [http-nio-8080-exec-2] DEBUG c.g.h.m.A.getActionByPermissionId - <== Total: 0 +2024-09-23 15:55:26.207 [http-nio-8080-exec-2] ERROR c.g.h.config.GlobalExceptionHandler - Cannot invoke "java.util.List.addAll(java.util.Collection)" because the return value of "com.guaiguailang.harmony.domain.vo.PermissionInfo.getActionEntitySet()" is null +2024-09-23 15:56:55.769 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown initiated... +2024-09-23 15:56:55.774 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown completed. +2024-09-23 15:56:59.472 [main] INFO o.s.boot.SpringApplication - +██╗ ██╗██████╗ ██╗██╗ █████╗ ███╗ ██╗ ██████╗ +╚██╗██╔╝██╔══██╗██║██║ ██╔══██╗████╗ ██║██╔════╝ + ╚███╔╝ ██████╔╝██║██║ ███████║██╔██╗ ██║██║ ███╗ + ██╔██╗ ██╔══██╗██║██║ ██╔══██║██║╚██╗██║██║ ██║ +██╔╝ ██╗██║ ██║██║███████╗██║ ██║██║ ╚████║╚██████╔╝ +╚═╝ ╚═╝╚═╝ ╚═╝╚═╝╚══════╝╚═╝ ╚═╝╚═╝ ╚═══╝ ╚═════╝ + +^_^ 服务启动成功 He Sheng +# 项目名称:harmony-life-server +# 项目版本:1.0.0 +# 框架版本:3.3.4 +# 最后更新于 2024年 9月 25日 + + +2024-09-23 15:56:59.514 [main] INFO c.g.h.HarmonyLifeServerApplication - Starting HarmonyLifeServerApplication using Java 17.0.8 with PID 31516 (C:\Users\xrilang\Desktop\harmony-life\harmony-life-server\harmony-life-server\target\classes started by xrilang in C:\Users\xrilang\Desktop\harmony-life\harmony-life-server\harmony-life-server) +2024-09-23 15:56:59.515 [main] DEBUG c.g.h.HarmonyLifeServerApplication - Running with Spring Boot v3.3.4, Spring v6.1.13 +2024-09-23 15:56:59.515 [main] INFO c.g.h.HarmonyLifeServerApplication - No active profile set, falling back to 1 default profile: "default" +2024-09-23 15:57:00.045 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode +2024-09-23 15:57:00.046 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data JDBC repositories in DEFAULT mode. +2024-09-23 15:57:00.056 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 7 ms. Found 0 JDBC repository interfaces. +2024-09-23 15:57:00.065 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode +2024-09-23 15:57:00.066 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2024-09-23 15:57:00.077 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 4 ms. Found 0 Redis repository interfaces. +2024-09-23 15:57:00.485 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat initialized with port 8080 (http) +2024-09-23 15:57:00.492 [main] INFO o.a.coyote.http11.Http11NioProtocol - Initializing ProtocolHandler ["http-nio-8080"] +2024-09-23 15:57:00.495 [main] INFO o.a.catalina.core.StandardService - Starting service [Tomcat] +2024-09-23 15:57:00.495 [main] INFO o.a.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/10.1.30] +2024-09-23 15:57:00.553 [main] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring embedded WebApplicationContext +2024-09-23 15:57:00.553 [main] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 1010 ms +2024-09-23 15:57:01.246 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Starting... +2024-09-23 15:57:01.344 [main] INFO com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - Added connection com.mysql.cj.jdbc.ConnectionImpl@37c74e4e +2024-09-23 15:57:01.344 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Start completed. +2024-09-23 15:57:01.456 [main] INFO o.a.coyote.http11.Http11NioProtocol - Starting ProtocolHandler ["http-nio-8080"] +2024-09-23 15:57:01.472 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat started on port 8080 (http) with context path '/' +2024-09-23 15:57:01.478 [main] INFO c.g.h.HarmonyLifeServerApplication - Started HarmonyLifeServerApplication in 2.277 seconds (process running for 2.682) +2024-09-23 15:57:05.635 [http-nio-8080-exec-1] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring DispatcherServlet 'dispatcherServlet' +2024-09-23 15:57:05.635 [http-nio-8080-exec-1] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet' +2024-09-23 15:57:05.635 [http-nio-8080-exec-1] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 0 ms +2024-09-23 15:57:05.978 [http-nio-8080-exec-1] INFO c.g.h.service.impl.UserServiceImpl - 查询用户1的用户信息 +2024-09-23 15:57:05.992 [http-nio-8080-exec-1] DEBUG c.g.h.mapper.UserMapper.getUserById - ==> Preparing: SELECT * from user_info where id=? AND status=1 +2024-09-23 15:57:06.011 [http-nio-8080-exec-1] DEBUG c.g.h.mapper.UserMapper.getUserById - ==> Parameters: 1(Long) +2024-09-23 15:57:06.030 [http-nio-8080-exec-1] DEBUG c.g.h.mapper.UserMapper.getUserById - <== Total: 1 +2024-09-23 15:57:06.032 [http-nio-8080-exec-1] DEBUG c.g.h.m.AuthMapper.getUserRoleById - ==> Preparing: SELECT * from system_role where role_id=? AND status=1 +2024-09-23 15:57:06.032 [http-nio-8080-exec-1] DEBUG c.g.h.m.AuthMapper.getUserRoleById - ==> Parameters: root(String) +2024-09-23 15:57:06.035 [http-nio-8080-exec-1] DEBUG c.g.h.m.AuthMapper.getUserRoleById - <== Total: 1 +2024-09-23 15:57:06.036 [http-nio-8080-exec-1] DEBUG c.g.h.m.A.getUserPermissionListByRoleId - ==> Preparing: select * from system_role_permission where role_id=? AND status=1 +2024-09-23 15:57:06.036 [http-nio-8080-exec-1] DEBUG c.g.h.m.A.getUserPermissionListByRoleId - ==> Parameters: root(String) +2024-09-23 15:57:06.039 [http-nio-8080-exec-1] DEBUG c.g.h.m.A.getUserPermissionListByRoleId - <== Total: 10 +2024-09-23 15:57:06.040 [http-nio-8080-exec-1] DEBUG c.g.h.m.A.getActionByPermissionId - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.id = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 +2024-09-23 15:57:06.040 [http-nio-8080-exec-1] DEBUG c.g.h.m.A.getActionByPermissionId - ==> Parameters: dashboard(String) +2024-09-23 15:57:06.043 [http-nio-8080-exec-1] DEBUG c.g.h.m.A.getActionByPermissionId - <== Total: 0 +2024-09-23 15:57:06.044 [http-nio-8080-exec-1] DEBUG c.g.h.m.A.getActionByPermissionId - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.id = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 +2024-09-23 15:57:06.044 [http-nio-8080-exec-1] DEBUG c.g.h.m.A.getActionByPermissionId - ==> Parameters: exception(String) +2024-09-23 15:57:06.045 [http-nio-8080-exec-1] DEBUG c.g.h.m.A.getActionByPermissionId - <== Total: 0 +2024-09-23 15:57:06.045 [http-nio-8080-exec-1] DEBUG c.g.h.m.A.getActionByPermissionId - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.id = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 +2024-09-23 15:57:06.045 [http-nio-8080-exec-1] DEBUG c.g.h.m.A.getActionByPermissionId - ==> Parameters: result(String) +2024-09-23 15:57:06.045 [http-nio-8080-exec-1] DEBUG c.g.h.m.A.getActionByPermissionId - <== Total: 0 +2024-09-23 15:57:06.046 [http-nio-8080-exec-1] DEBUG c.g.h.m.A.getActionByPermissionId - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.id = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 +2024-09-23 15:57:06.046 [http-nio-8080-exec-1] DEBUG c.g.h.m.A.getActionByPermissionId - ==> Parameters: profile(String) +2024-09-23 15:57:06.046 [http-nio-8080-exec-1] DEBUG c.g.h.m.A.getActionByPermissionId - <== Total: 0 +2024-09-23 15:57:06.046 [http-nio-8080-exec-1] DEBUG c.g.h.m.A.getActionByPermissionId - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.id = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 +2024-09-23 15:57:06.046 [http-nio-8080-exec-1] DEBUG c.g.h.m.A.getActionByPermissionId - ==> Parameters: table(String) +2024-09-23 15:57:06.047 [http-nio-8080-exec-1] DEBUG c.g.h.m.A.getActionByPermissionId - <== Total: 0 +2024-09-23 15:57:06.047 [http-nio-8080-exec-1] DEBUG c.g.h.m.A.getActionByPermissionId - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.id = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 +2024-09-23 15:57:06.047 [http-nio-8080-exec-1] DEBUG c.g.h.m.A.getActionByPermissionId - ==> Parameters: form(String) +2024-09-23 15:57:06.047 [http-nio-8080-exec-1] DEBUG c.g.h.m.A.getActionByPermissionId - <== Total: 0 +2024-09-23 15:57:06.047 [http-nio-8080-exec-1] DEBUG c.g.h.m.A.getActionByPermissionId - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.id = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 +2024-09-23 15:57:06.048 [http-nio-8080-exec-1] DEBUG c.g.h.m.A.getActionByPermissionId - ==> Parameters: order(String) +2024-09-23 15:57:06.048 [http-nio-8080-exec-1] DEBUG c.g.h.m.A.getActionByPermissionId - <== Total: 0 +2024-09-23 15:57:06.048 [http-nio-8080-exec-1] DEBUG c.g.h.m.A.getActionByPermissionId - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.id = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 +2024-09-23 15:57:06.048 [http-nio-8080-exec-1] DEBUG c.g.h.m.A.getActionByPermissionId - ==> Parameters: permission(String) +2024-09-23 15:57:06.049 [http-nio-8080-exec-1] DEBUG c.g.h.m.A.getActionByPermissionId - <== Total: 0 +2024-09-23 15:57:06.049 [http-nio-8080-exec-1] DEBUG c.g.h.m.A.getActionByPermissionId - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.id = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 +2024-09-23 15:57:06.049 [http-nio-8080-exec-1] DEBUG c.g.h.m.A.getActionByPermissionId - ==> Parameters: role(String) +2024-09-23 15:57:06.049 [http-nio-8080-exec-1] DEBUG c.g.h.m.A.getActionByPermissionId - <== Total: 0 +2024-09-23 15:57:06.049 [http-nio-8080-exec-1] DEBUG c.g.h.m.A.getActionByPermissionId - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.id = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 +2024-09-23 15:57:06.050 [http-nio-8080-exec-1] DEBUG c.g.h.m.A.getActionByPermissionId - ==> Parameters: user(String) +2024-09-23 15:57:06.050 [http-nio-8080-exec-1] DEBUG c.g.h.m.A.getActionByPermissionId - <== Total: 0 +2024-09-23 15:57:06.056 [http-nio-8080-exec-1] INFO c.g.h.service.impl.UserServiceImpl - UserInfoLogin(id=1, name=萌狼蓝天, username=xrilang, avatar=https://q1.qlogo.cn/g?b=qq&nk=3447902411&s=640, email=null, telephone=null, status=0, lastLoginIp=null, lastLoginTime=null, createTime=null, creator=null, merchantCode=null, roleId=root, role=RoleInfo(id=root, name=超级管理员, description=最高权限, status=0, creatorId=null, createTime=null, deleted=0, permissionInfo=[PermissionInfo(roleId=root, permissionId=dashboard, permissionName=null, actionEntitySet=null, actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=exception, permissionName=null, actionEntitySet=null, actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=result, permissionName=null, actionEntitySet=null, actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=profile, permissionName=null, actionEntitySet=null, actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=table, permissionName=null, actionEntitySet=null, actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=form, permissionName=null, actionEntitySet=null, actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=order, permissionName=null, actionEntitySet=null, actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=permission, permissionName=null, actionEntitySet=null, actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=role, permissionName=null, actionEntitySet=null, actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=user, permissionName=null, actionEntitySet=null, actionList=null, dataAccess=null)]), token=null, expireTime=null) +2024-09-23 15:58:24.911 [http-nio-8080-exec-3] INFO c.g.h.service.impl.UserServiceImpl - 查询用户1的用户信息 +2024-09-23 15:58:24.912 [http-nio-8080-exec-3] DEBUG c.g.h.mapper.UserMapper.getUserById - ==> Preparing: SELECT * from user_info where id=? AND status=1 +2024-09-23 15:58:24.912 [http-nio-8080-exec-3] DEBUG c.g.h.mapper.UserMapper.getUserById - ==> Parameters: 1(Long) +2024-09-23 15:58:24.914 [http-nio-8080-exec-3] DEBUG c.g.h.mapper.UserMapper.getUserById - <== Total: 1 +2024-09-23 15:58:24.914 [http-nio-8080-exec-3] DEBUG c.g.h.m.AuthMapper.getUserRoleById - ==> Preparing: SELECT * from system_role where role_id=? AND status=1 +2024-09-23 15:58:24.914 [http-nio-8080-exec-3] DEBUG c.g.h.m.AuthMapper.getUserRoleById - ==> Parameters: root(String) +2024-09-23 15:58:24.915 [http-nio-8080-exec-3] DEBUG c.g.h.m.AuthMapper.getUserRoleById - <== Total: 1 +2024-09-23 15:58:24.915 [http-nio-8080-exec-3] DEBUG c.g.h.m.A.getUserPermissionListByRoleId - ==> Preparing: select * from system_role_permission where role_id=? AND status=1 +2024-09-23 15:58:24.915 [http-nio-8080-exec-3] DEBUG c.g.h.m.A.getUserPermissionListByRoleId - ==> Parameters: root(String) +2024-09-23 15:58:24.917 [http-nio-8080-exec-3] DEBUG c.g.h.m.A.getUserPermissionListByRoleId - <== Total: 10 +2024-09-23 15:58:24.918 [http-nio-8080-exec-3] DEBUG c.g.h.m.A.getActionByPermissionId - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.id = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 +2024-09-23 15:58:24.918 [http-nio-8080-exec-3] DEBUG c.g.h.m.A.getActionByPermissionId - ==> Parameters: dashboard(String) +2024-09-23 15:58:24.919 [http-nio-8080-exec-3] DEBUG c.g.h.m.A.getActionByPermissionId - <== Total: 0 +2024-09-23 15:58:24.919 [http-nio-8080-exec-3] DEBUG c.g.h.m.A.getActionByPermissionId - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.id = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 +2024-09-23 15:58:24.919 [http-nio-8080-exec-3] DEBUG c.g.h.m.A.getActionByPermissionId - ==> Parameters: exception(String) +2024-09-23 15:58:24.920 [http-nio-8080-exec-3] DEBUG c.g.h.m.A.getActionByPermissionId - <== Total: 0 +2024-09-23 15:58:24.920 [http-nio-8080-exec-3] DEBUG c.g.h.m.A.getActionByPermissionId - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.id = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 +2024-09-23 15:58:24.920 [http-nio-8080-exec-3] DEBUG c.g.h.m.A.getActionByPermissionId - ==> Parameters: result(String) +2024-09-23 15:58:24.920 [http-nio-8080-exec-3] DEBUG c.g.h.m.A.getActionByPermissionId - <== Total: 0 +2024-09-23 15:58:24.921 [http-nio-8080-exec-3] DEBUG c.g.h.m.A.getActionByPermissionId - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.id = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 +2024-09-23 15:58:24.921 [http-nio-8080-exec-3] DEBUG c.g.h.m.A.getActionByPermissionId - ==> Parameters: profile(String) +2024-09-23 15:58:24.921 [http-nio-8080-exec-3] DEBUG c.g.h.m.A.getActionByPermissionId - <== Total: 0 +2024-09-23 15:58:24.922 [http-nio-8080-exec-3] DEBUG c.g.h.m.A.getActionByPermissionId - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.id = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 +2024-09-23 15:58:24.922 [http-nio-8080-exec-3] DEBUG c.g.h.m.A.getActionByPermissionId - ==> Parameters: table(String) +2024-09-23 15:58:24.922 [http-nio-8080-exec-3] DEBUG c.g.h.m.A.getActionByPermissionId - <== Total: 0 +2024-09-23 15:58:24.922 [http-nio-8080-exec-3] DEBUG c.g.h.m.A.getActionByPermissionId - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.id = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 +2024-09-23 15:58:24.923 [http-nio-8080-exec-3] DEBUG c.g.h.m.A.getActionByPermissionId - ==> Parameters: form(String) +2024-09-23 15:58:24.923 [http-nio-8080-exec-3] DEBUG c.g.h.m.A.getActionByPermissionId - <== Total: 0 +2024-09-23 15:58:24.923 [http-nio-8080-exec-3] DEBUG c.g.h.m.A.getActionByPermissionId - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.id = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 +2024-09-23 15:58:24.923 [http-nio-8080-exec-3] DEBUG c.g.h.m.A.getActionByPermissionId - ==> Parameters: order(String) +2024-09-23 15:58:24.925 [http-nio-8080-exec-3] DEBUG c.g.h.m.A.getActionByPermissionId - <== Total: 0 +2024-09-23 15:58:24.925 [http-nio-8080-exec-3] DEBUG c.g.h.m.A.getActionByPermissionId - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.id = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 +2024-09-23 15:58:24.925 [http-nio-8080-exec-3] DEBUG c.g.h.m.A.getActionByPermissionId - ==> Parameters: permission(String) +2024-09-23 15:58:24.925 [http-nio-8080-exec-3] DEBUG c.g.h.m.A.getActionByPermissionId - <== Total: 0 +2024-09-23 15:58:24.925 [http-nio-8080-exec-3] DEBUG c.g.h.m.A.getActionByPermissionId - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.id = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 +2024-09-23 15:58:24.925 [http-nio-8080-exec-3] DEBUG c.g.h.m.A.getActionByPermissionId - ==> Parameters: role(String) +2024-09-23 15:58:24.925 [http-nio-8080-exec-3] DEBUG c.g.h.m.A.getActionByPermissionId - <== Total: 0 +2024-09-23 15:58:24.925 [http-nio-8080-exec-3] DEBUG c.g.h.m.A.getActionByPermissionId - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.id = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 +2024-09-23 15:58:24.925 [http-nio-8080-exec-3] DEBUG c.g.h.m.A.getActionByPermissionId - ==> Parameters: user(String) +2024-09-23 15:58:24.925 [http-nio-8080-exec-3] DEBUG c.g.h.m.A.getActionByPermissionId - <== Total: 0 +2024-09-23 15:58:24.926 [http-nio-8080-exec-3] INFO c.g.h.service.impl.UserServiceImpl - UserInfoLogin(id=1, name=萌狼蓝天, username=xrilang, avatar=https://q1.qlogo.cn/g?b=qq&nk=3447902411&s=640, email=null, telephone=null, status=0, lastLoginIp=null, lastLoginTime=null, createTime=null, creator=null, merchantCode=null, roleId=root, role=RoleInfo(id=root, name=超级管理员, description=最高权限, status=0, creatorId=null, createTime=null, deleted=0, permissionInfo=[PermissionInfo(roleId=root, permissionId=dashboard, permissionName=null, actionEntitySet=null, actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=exception, permissionName=null, actionEntitySet=null, actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=result, permissionName=null, actionEntitySet=null, actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=profile, permissionName=null, actionEntitySet=null, actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=table, permissionName=null, actionEntitySet=null, actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=form, permissionName=null, actionEntitySet=null, actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=order, permissionName=null, actionEntitySet=null, actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=permission, permissionName=null, actionEntitySet=null, actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=role, permissionName=null, actionEntitySet=null, actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=user, permissionName=null, actionEntitySet=null, actionList=null, dataAccess=null)]), token=null, expireTime=null) +2024-09-23 16:02:42.104 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown initiated... +2024-09-23 16:02:42.108 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown completed. +2024-09-23 16:02:46.055 [main] INFO o.s.boot.SpringApplication - +██╗ ██╗██████╗ ██╗██╗ █████╗ ███╗ ██╗ ██████╗ +╚██╗██╔╝██╔══██╗██║██║ ██╔══██╗████╗ ██║██╔════╝ + ╚███╔╝ ██████╔╝██║██║ ███████║██╔██╗ ██║██║ ███╗ + ██╔██╗ ██╔══██╗██║██║ ██╔══██║██║╚██╗██║██║ ██║ +██╔╝ ██╗██║ ██║██║███████╗██║ ██║██║ ╚████║╚██████╔╝ +╚═╝ ╚═╝╚═╝ ╚═╝╚═╝╚══════╝╚═╝ ╚═╝╚═╝ ╚═══╝ ╚═════╝ + +^_^ 服务启动成功 He Sheng +# 项目名称:harmony-life-server +# 项目版本:1.0.0 +# 框架版本:3.3.4 +# 最后更新于 2024年 9月 25日 + + +2024-09-23 16:02:46.098 [main] INFO c.g.h.HarmonyLifeServerApplication - Starting HarmonyLifeServerApplication using Java 17.0.8 with PID 23176 (C:\Users\xrilang\Desktop\harmony-life\harmony-life-server\harmony-life-server\target\classes started by xrilang in C:\Users\xrilang\Desktop\harmony-life\harmony-life-server\harmony-life-server) +2024-09-23 16:02:46.099 [main] DEBUG c.g.h.HarmonyLifeServerApplication - Running with Spring Boot v3.3.4, Spring v6.1.13 +2024-09-23 16:02:46.100 [main] INFO c.g.h.HarmonyLifeServerApplication - No active profile set, falling back to 1 default profile: "default" +2024-09-23 16:02:46.685 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode +2024-09-23 16:02:46.686 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data JDBC repositories in DEFAULT mode. +2024-09-23 16:02:46.697 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 7 ms. Found 0 JDBC repository interfaces. +2024-09-23 16:02:46.706 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode +2024-09-23 16:02:46.707 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2024-09-23 16:02:46.719 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 5 ms. Found 0 Redis repository interfaces. +2024-09-23 16:02:47.133 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat initialized with port 8080 (http) +2024-09-23 16:02:47.139 [main] INFO o.a.coyote.http11.Http11NioProtocol - Initializing ProtocolHandler ["http-nio-8080"] +2024-09-23 16:02:47.142 [main] INFO o.a.catalina.core.StandardService - Starting service [Tomcat] +2024-09-23 16:02:47.143 [main] INFO o.a.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/10.1.30] +2024-09-23 16:02:47.206 [main] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring embedded WebApplicationContext +2024-09-23 16:02:47.206 [main] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 1079 ms +2024-09-23 16:02:47.945 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Starting... +2024-09-23 16:02:48.047 [main] INFO com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - Added connection com.mysql.cj.jdbc.ConnectionImpl@3b8d2abe +2024-09-23 16:02:48.048 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Start completed. +2024-09-23 16:02:48.164 [main] INFO o.a.coyote.http11.Http11NioProtocol - Starting ProtocolHandler ["http-nio-8080"] +2024-09-23 16:02:48.178 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat started on port 8080 (http) with context path '/' +2024-09-23 16:02:48.184 [main] INFO c.g.h.HarmonyLifeServerApplication - Started HarmonyLifeServerApplication in 2.397 seconds (process running for 2.798) +2024-09-23 16:04:28.596 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown initiated... +2024-09-23 16:04:28.600 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown completed. +2024-09-23 16:04:30.834 [main] INFO o.s.boot.SpringApplication - +██╗ ██╗██████╗ ██╗██╗ █████╗ ███╗ ██╗ ██████╗ +╚██╗██╔╝██╔══██╗██║██║ ██╔══██╗████╗ ██║██╔════╝ + ╚███╔╝ ██████╔╝██║██║ ███████║██╔██╗ ██║██║ ███╗ + ██╔██╗ ██╔══██╗██║██║ ██╔══██║██║╚██╗██║██║ ██║ +██╔╝ ██╗██║ ██║██║███████╗██║ ██║██║ ╚████║╚██████╔╝ +╚═╝ ╚═╝╚═╝ ╚═╝╚═╝╚══════╝╚═╝ ╚═╝╚═╝ ╚═══╝ ╚═════╝ + +^_^ 服务启动成功 He Sheng +# 项目名称:harmony-life-server +# 项目版本:1.0.0 +# 框架版本:3.3.4 +# 最后更新于 2024年 9月 25日 + + +2024-09-23 16:04:30.880 [main] INFO c.g.h.HarmonyLifeServerApplication - Starting HarmonyLifeServerApplication using Java 17.0.8 with PID 31320 (C:\Users\xrilang\Desktop\harmony-life\harmony-life-server\harmony-life-server\target\classes started by xrilang in C:\Users\xrilang\Desktop\harmony-life\harmony-life-server\harmony-life-server) +2024-09-23 16:04:30.880 [main] DEBUG c.g.h.HarmonyLifeServerApplication - Running with Spring Boot v3.3.4, Spring v6.1.13 +2024-09-23 16:04:30.881 [main] INFO c.g.h.HarmonyLifeServerApplication - No active profile set, falling back to 1 default profile: "default" +2024-09-23 16:04:31.402 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode +2024-09-23 16:04:31.403 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data JDBC repositories in DEFAULT mode. +2024-09-23 16:04:31.413 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 7 ms. Found 0 JDBC repository interfaces. +2024-09-23 16:04:31.427 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode +2024-09-23 16:04:31.428 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2024-09-23 16:04:31.439 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 4 ms. Found 0 Redis repository interfaces. +2024-09-23 16:04:31.843 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat initialized with port 8080 (http) +2024-09-23 16:04:31.851 [main] INFO o.a.coyote.http11.Http11NioProtocol - Initializing ProtocolHandler ["http-nio-8080"] +2024-09-23 16:04:31.854 [main] INFO o.a.catalina.core.StandardService - Starting service [Tomcat] +2024-09-23 16:04:31.854 [main] INFO o.a.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/10.1.30] +2024-09-23 16:04:31.906 [main] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring embedded WebApplicationContext +2024-09-23 16:04:31.906 [main] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 998 ms +2024-09-23 16:04:32.587 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Starting... +2024-09-23 16:04:32.677 [main] INFO com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - Added connection com.mysql.cj.jdbc.ConnectionImpl@6cb662e8 +2024-09-23 16:04:32.678 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Start completed. +2024-09-23 16:04:32.784 [main] INFO o.a.coyote.http11.Http11NioProtocol - Starting ProtocolHandler ["http-nio-8080"] +2024-09-23 16:04:32.799 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat started on port 8080 (http) with context path '/' +2024-09-23 16:04:32.805 [main] INFO c.g.h.HarmonyLifeServerApplication - Started HarmonyLifeServerApplication in 2.243 seconds (process running for 2.71) +2024-09-23 16:04:37.577 [http-nio-8080-exec-1] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring DispatcherServlet 'dispatcherServlet' +2024-09-23 16:04:37.577 [http-nio-8080-exec-1] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet' +2024-09-23 16:04:37.579 [http-nio-8080-exec-1] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 1 ms +2024-09-23 16:04:37.921 [http-nio-8080-exec-1] INFO c.g.h.service.impl.UserServiceImpl - 查询用户1的用户信息 +2024-09-23 16:04:37.934 [http-nio-8080-exec-1] DEBUG c.g.h.mapper.UserMapper.getUserById - ==> Preparing: SELECT * from user_info where id=? AND status=1 +2024-09-23 16:04:37.948 [http-nio-8080-exec-1] DEBUG c.g.h.mapper.UserMapper.getUserById - ==> Parameters: 1(Long) +2024-09-23 16:04:37.966 [http-nio-8080-exec-1] DEBUG c.g.h.mapper.UserMapper.getUserById - <== Total: 1 +2024-09-23 16:04:37.969 [http-nio-8080-exec-1] DEBUG c.g.h.m.AuthMapper.getUserRoleById - ==> Preparing: SELECT * from system_role where role_id=? AND status=1 +2024-09-23 16:04:37.969 [http-nio-8080-exec-1] DEBUG c.g.h.m.AuthMapper.getUserRoleById - ==> Parameters: root(String) +2024-09-23 16:04:37.971 [http-nio-8080-exec-1] DEBUG c.g.h.m.AuthMapper.getUserRoleById - <== Total: 1 +2024-09-23 16:04:37.973 [http-nio-8080-exec-1] DEBUG c.g.h.m.A.getUserPermissionListByRoleId - ==> Preparing: select * from system_role_permission where role_id=? AND status=1 +2024-09-23 16:04:37.973 [http-nio-8080-exec-1] DEBUG c.g.h.m.A.getUserPermissionListByRoleId - ==> Parameters: root(String) +2024-09-23 16:04:37.976 [http-nio-8080-exec-1] DEBUG c.g.h.m.A.getUserPermissionListByRoleId - <== Total: 10 +2024-09-23 16:04:37.976 [http-nio-8080-exec-1] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.id = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-23 16:04:37.976 [http-nio-8080-exec-1] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: dashboard(String), 1(Long) +2024-09-23 16:04:37.980 [http-nio-8080-exec-1] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 0 +2024-09-23 16:04:37.980 [http-nio-8080-exec-1] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.id = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-23 16:04:37.981 [http-nio-8080-exec-1] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: exception(String), 1(Long) +2024-09-23 16:04:37.981 [http-nio-8080-exec-1] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 0 +2024-09-23 16:04:37.981 [http-nio-8080-exec-1] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.id = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-23 16:04:37.981 [http-nio-8080-exec-1] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: result(String), 1(Long) +2024-09-23 16:04:37.982 [http-nio-8080-exec-1] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 0 +2024-09-23 16:04:37.982 [http-nio-8080-exec-1] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.id = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-23 16:04:37.982 [http-nio-8080-exec-1] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: profile(String), 1(Long) +2024-09-23 16:04:37.982 [http-nio-8080-exec-1] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 0 +2024-09-23 16:04:37.983 [http-nio-8080-exec-1] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.id = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-23 16:04:37.983 [http-nio-8080-exec-1] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: table(String), 1(Long) +2024-09-23 16:04:37.983 [http-nio-8080-exec-1] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 0 +2024-09-23 16:04:37.984 [http-nio-8080-exec-1] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.id = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-23 16:04:37.984 [http-nio-8080-exec-1] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: form(String), 1(Long) +2024-09-23 16:04:37.984 [http-nio-8080-exec-1] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 0 +2024-09-23 16:04:37.984 [http-nio-8080-exec-1] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.id = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-23 16:04:37.985 [http-nio-8080-exec-1] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: order(String), 1(Long) +2024-09-23 16:04:37.985 [http-nio-8080-exec-1] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 0 +2024-09-23 16:04:37.985 [http-nio-8080-exec-1] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.id = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-23 16:04:37.985 [http-nio-8080-exec-1] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: permission(String), 1(Long) +2024-09-23 16:04:37.986 [http-nio-8080-exec-1] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 0 +2024-09-23 16:04:37.986 [http-nio-8080-exec-1] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.id = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-23 16:04:37.987 [http-nio-8080-exec-1] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: role(String), 1(Long) +2024-09-23 16:04:37.987 [http-nio-8080-exec-1] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 0 +2024-09-23 16:04:37.987 [http-nio-8080-exec-1] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.id = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-23 16:04:37.987 [http-nio-8080-exec-1] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: user(String), 1(Long) +2024-09-23 16:04:37.988 [http-nio-8080-exec-1] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 0 +2024-09-23 16:04:37.993 [http-nio-8080-exec-1] INFO c.g.h.service.impl.UserServiceImpl - UserInfoLogin(id=1, name=萌狼蓝天, username=xrilang, avatar=https://q1.qlogo.cn/g?b=qq&nk=3447902411&s=640, email=null, telephone=null, status=0, lastLoginIp=null, lastLoginTime=null, createTime=null, creator=null, merchantCode=null, roleId=root, role=RoleInfo(id=root, name=超级管理员, description=最高权限, status=0, creatorId=null, createTime=null, deleted=0, permissionInfo=[PermissionInfo(roleId=root, permissionId=dashboard, permissionName=null, actionEntitySet=null, actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=exception, permissionName=null, actionEntitySet=null, actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=result, permissionName=null, actionEntitySet=null, actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=profile, permissionName=null, actionEntitySet=null, actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=table, permissionName=null, actionEntitySet=null, actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=form, permissionName=null, actionEntitySet=null, actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=order, permissionName=null, actionEntitySet=null, actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=permission, permissionName=null, actionEntitySet=null, actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=role, permissionName=null, actionEntitySet=null, actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=user, permissionName=null, actionEntitySet=null, actionList=null, dataAccess=null)]), token=null, expireTime=null) +2024-09-23 16:08:09.446 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown initiated... +2024-09-23 16:08:09.450 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown completed. +2024-09-23 16:08:13.143 [main] INFO o.s.boot.SpringApplication - +██╗ ██╗██████╗ ██╗██╗ █████╗ ███╗ ██╗ ██████╗ +╚██╗██╔╝██╔══██╗██║██║ ██╔══██╗████╗ ██║██╔════╝ + ╚███╔╝ ██████╔╝██║██║ ███████║██╔██╗ ██║██║ ███╗ + ██╔██╗ ██╔══██╗██║██║ ██╔══██║██║╚██╗██║██║ ██║ +██╔╝ ██╗██║ ██║██║███████╗██║ ██║██║ ╚████║╚██████╔╝ +╚═╝ ╚═╝╚═╝ ╚═╝╚═╝╚══════╝╚═╝ ╚═╝╚═╝ ╚═══╝ ╚═════╝ + +^_^ 服务启动成功 He Sheng +# 项目名称:harmony-life-server +# 项目版本:1.0.0 +# 框架版本:3.3.4 +# 最后更新于 2024年 9月 25日 + + +2024-09-23 16:08:13.189 [main] INFO c.g.h.HarmonyLifeServerApplication - Starting HarmonyLifeServerApplication using Java 17.0.8 with PID 26336 (C:\Users\xrilang\Desktop\harmony-life\harmony-life-server\harmony-life-server\target\classes started by xrilang in C:\Users\xrilang\Desktop\harmony-life\harmony-life-server\harmony-life-server) +2024-09-23 16:08:13.189 [main] DEBUG c.g.h.HarmonyLifeServerApplication - Running with Spring Boot v3.3.4, Spring v6.1.13 +2024-09-23 16:08:13.190 [main] INFO c.g.h.HarmonyLifeServerApplication - No active profile set, falling back to 1 default profile: "default" +2024-09-23 16:08:13.740 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode +2024-09-23 16:08:13.741 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data JDBC repositories in DEFAULT mode. +2024-09-23 16:08:13.752 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 8 ms. Found 0 JDBC repository interfaces. +2024-09-23 16:08:13.761 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode +2024-09-23 16:08:13.762 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2024-09-23 16:08:13.774 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 5 ms. Found 0 Redis repository interfaces. +2024-09-23 16:08:14.194 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat initialized with port 8080 (http) +2024-09-23 16:08:14.201 [main] INFO o.a.coyote.http11.Http11NioProtocol - Initializing ProtocolHandler ["http-nio-8080"] +2024-09-23 16:08:14.204 [main] INFO o.a.catalina.core.StandardService - Starting service [Tomcat] +2024-09-23 16:08:14.204 [main] INFO o.a.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/10.1.30] +2024-09-23 16:08:14.263 [main] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring embedded WebApplicationContext +2024-09-23 16:08:14.263 [main] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 1044 ms +2024-09-23 16:08:14.980 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Starting... +2024-09-23 16:08:15.072 [main] INFO com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - Added connection com.mysql.cj.jdbc.ConnectionImpl@56f61d74 +2024-09-23 16:08:15.073 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Start completed. +2024-09-23 16:08:15.187 [main] INFO o.a.coyote.http11.Http11NioProtocol - Starting ProtocolHandler ["http-nio-8080"] +2024-09-23 16:08:15.201 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat started on port 8080 (http) with context path '/' +2024-09-23 16:08:15.208 [main] INFO c.g.h.HarmonyLifeServerApplication - Started HarmonyLifeServerApplication in 2.335 seconds (process running for 2.732) +2024-09-23 16:08:19.750 [http-nio-8080-exec-1] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring DispatcherServlet 'dispatcherServlet' +2024-09-23 16:08:19.750 [http-nio-8080-exec-1] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet' +2024-09-23 16:08:19.751 [http-nio-8080-exec-1] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 1 ms +2024-09-23 16:08:20.099 [http-nio-8080-exec-1] INFO c.g.h.service.impl.UserServiceImpl - 查询用户1的用户信息 +2024-09-23 16:08:20.112 [http-nio-8080-exec-1] DEBUG c.g.h.mapper.UserMapper.getUserById - ==> Preparing: SELECT * from user_info where id=? AND status=1 +2024-09-23 16:08:20.127 [http-nio-8080-exec-1] DEBUG c.g.h.mapper.UserMapper.getUserById - ==> Parameters: 1(Long) +2024-09-23 16:08:20.147 [http-nio-8080-exec-1] DEBUG c.g.h.mapper.UserMapper.getUserById - <== Total: 1 +2024-09-23 16:08:20.149 [http-nio-8080-exec-1] DEBUG c.g.h.m.AuthMapper.getUserRoleById - ==> Preparing: SELECT * from system_role where role_id=? AND status=1 +2024-09-23 16:08:20.150 [http-nio-8080-exec-1] DEBUG c.g.h.m.AuthMapper.getUserRoleById - ==> Parameters: root(String) +2024-09-23 16:08:20.153 [http-nio-8080-exec-1] DEBUG c.g.h.m.AuthMapper.getUserRoleById - <== Total: 1 +2024-09-23 16:08:20.154 [http-nio-8080-exec-1] DEBUG c.g.h.m.A.getUserPermissionListByRoleId - ==> Preparing: select * from system_role_permission where role_id=? AND status=1 +2024-09-23 16:08:20.154 [http-nio-8080-exec-1] DEBUG c.g.h.m.A.getUserPermissionListByRoleId - ==> Parameters: root(String) +2024-09-23 16:08:20.157 [http-nio-8080-exec-1] DEBUG c.g.h.m.A.getUserPermissionListByRoleId - <== Total: 10 +2024-09-23 16:08:20.157 [http-nio-8080-exec-1] INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:com.guaiguailang.harmony.domain.entity.SystemPermission@4f0de597 +2024-09-23 16:08:20.157 [http-nio-8080-exec-1] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-23 16:08:20.158 [http-nio-8080-exec-1] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: dashboard(String), 1(Long) +2024-09-23 16:08:20.162 [http-nio-8080-exec-1] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 0 +2024-09-23 16:08:20.162 [http-nio-8080-exec-1] INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:com.guaiguailang.harmony.domain.entity.SystemPermission@12fdb7f9 +2024-09-23 16:08:20.163 [http-nio-8080-exec-1] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-23 16:08:20.163 [http-nio-8080-exec-1] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: exception(String), 1(Long) +2024-09-23 16:08:20.163 [http-nio-8080-exec-1] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 0 +2024-09-23 16:08:20.163 [http-nio-8080-exec-1] INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:com.guaiguailang.harmony.domain.entity.SystemPermission@32954f5f +2024-09-23 16:08:20.163 [http-nio-8080-exec-1] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-23 16:08:20.164 [http-nio-8080-exec-1] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: result(String), 1(Long) +2024-09-23 16:08:20.164 [http-nio-8080-exec-1] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 0 +2024-09-23 16:08:20.164 [http-nio-8080-exec-1] INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:com.guaiguailang.harmony.domain.entity.SystemPermission@34c3de57 +2024-09-23 16:08:20.165 [http-nio-8080-exec-1] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-23 16:08:20.165 [http-nio-8080-exec-1] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: profile(String), 1(Long) +2024-09-23 16:08:20.165 [http-nio-8080-exec-1] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 0 +2024-09-23 16:08:20.165 [http-nio-8080-exec-1] INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:com.guaiguailang.harmony.domain.entity.SystemPermission@7cd07f82 +2024-09-23 16:08:20.165 [http-nio-8080-exec-1] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-23 16:08:20.166 [http-nio-8080-exec-1] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: table(String), 1(Long) +2024-09-23 16:08:20.166 [http-nio-8080-exec-1] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 0 +2024-09-23 16:08:20.166 [http-nio-8080-exec-1] INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:com.guaiguailang.harmony.domain.entity.SystemPermission@6adc0e05 +2024-09-23 16:08:20.166 [http-nio-8080-exec-1] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-23 16:08:20.166 [http-nio-8080-exec-1] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: form(String), 1(Long) +2024-09-23 16:08:20.167 [http-nio-8080-exec-1] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 0 +2024-09-23 16:08:20.167 [http-nio-8080-exec-1] INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:com.guaiguailang.harmony.domain.entity.SystemPermission@482a65f9 +2024-09-23 16:08:20.167 [http-nio-8080-exec-1] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-23 16:08:20.167 [http-nio-8080-exec-1] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: order(String), 1(Long) +2024-09-23 16:08:20.167 [http-nio-8080-exec-1] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 0 +2024-09-23 16:08:20.168 [http-nio-8080-exec-1] INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:com.guaiguailang.harmony.domain.entity.SystemPermission@38b81f91 +2024-09-23 16:08:20.168 [http-nio-8080-exec-1] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-23 16:08:20.168 [http-nio-8080-exec-1] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: permission(String), 1(Long) +2024-09-23 16:08:20.169 [http-nio-8080-exec-1] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 6 +2024-09-23 16:08:20.169 [http-nio-8080-exec-1] INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:com.guaiguailang.harmony.domain.entity.SystemPermission@5da6ae86 +2024-09-23 16:08:20.169 [http-nio-8080-exec-1] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-23 16:08:20.169 [http-nio-8080-exec-1] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: role(String), 1(Long) +2024-09-23 16:08:20.170 [http-nio-8080-exec-1] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 6 +2024-09-23 16:08:20.171 [http-nio-8080-exec-1] INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:com.guaiguailang.harmony.domain.entity.SystemPermission@130870eb +2024-09-23 16:08:20.171 [http-nio-8080-exec-1] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-23 16:08:20.171 [http-nio-8080-exec-1] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: user(String), 1(Long) +2024-09-23 16:08:20.171 [http-nio-8080-exec-1] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 0 +2024-09-23 16:08:20.177 [http-nio-8080-exec-1] INFO c.g.h.service.impl.UserServiceImpl - UserInfoLogin(id=1, name=萌狼蓝天, username=xrilang, avatar=https://q1.qlogo.cn/g?b=qq&nk=3447902411&s=640, email=null, telephone=null, status=0, lastLoginIp=null, lastLoginTime=null, createTime=null, creator=null, merchantCode=null, roleId=root, role=RoleInfo(id=root, name=超级管理员, description=最高权限, status=0, creatorId=null, createTime=null, deleted=0, permissionInfo=[PermissionInfo(roleId=root, permissionId=dashboard, permissionName=null, actionEntitySet=null, actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=exception, permissionName=null, actionEntitySet=null, actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=result, permissionName=null, actionEntitySet=null, actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=profile, permissionName=null, actionEntitySet=null, actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=table, permissionName=null, actionEntitySet=null, actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=form, permissionName=null, actionEntitySet=null, actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=order, permissionName=null, actionEntitySet=null, actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=permission, permissionName=null, actionEntitySet=null, actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=role, permissionName=null, actionEntitySet=null, actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=user, permissionName=null, actionEntitySet=null, actionList=null, dataAccess=null)]), token=null, expireTime=null) +2024-09-23 16:22:43.743 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown initiated... +2024-09-23 16:22:43.749 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown completed. +2024-09-23 16:23:41.875 [main] INFO o.s.boot.SpringApplication - +██╗ ██╗██████╗ ██╗██╗ █████╗ ███╗ ██╗ ██████╗ +╚██╗██╔╝██╔══██╗██║██║ ██╔══██╗████╗ ██║██╔════╝ + ╚███╔╝ ██████╔╝██║██║ ███████║██╔██╗ ██║██║ ███╗ + ██╔██╗ ██╔══██╗██║██║ ██╔══██║██║╚██╗██║██║ ██║ +██╔╝ ██╗██║ ██║██║███████╗██║ ██║██║ ╚████║╚██████╔╝ +╚═╝ ╚═╝╚═╝ ╚═╝╚═╝╚══════╝╚═╝ ╚═╝╚═╝ ╚═══╝ ╚═════╝ + +^_^ 服务启动成功 He Sheng +# 项目名称:harmony-life-server +# 项目版本:1.0.0 +# 框架版本:3.3.4 +# 最后更新于 2024年 9月 25日 + + +2024-09-23 16:23:41.917 [main] INFO c.g.h.HarmonyLifeServerApplication - Starting HarmonyLifeServerApplication using Java 17.0.8 with PID 31588 (C:\Users\xrilang\Desktop\harmony-life\harmony-life-server\harmony-life-server\target\classes started by xrilang in C:\Users\xrilang\Desktop\harmony-life\harmony-life-server\harmony-life-server) +2024-09-23 16:23:41.918 [main] DEBUG c.g.h.HarmonyLifeServerApplication - Running with Spring Boot v3.3.4, Spring v6.1.13 +2024-09-23 16:23:41.919 [main] INFO c.g.h.HarmonyLifeServerApplication - No active profile set, falling back to 1 default profile: "default" +2024-09-23 16:23:42.458 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode +2024-09-23 16:23:42.458 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data JDBC repositories in DEFAULT mode. +2024-09-23 16:23:42.469 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 8 ms. Found 0 JDBC repository interfaces. +2024-09-23 16:23:42.477 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode +2024-09-23 16:23:42.478 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2024-09-23 16:23:42.490 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 4 ms. Found 0 Redis repository interfaces. +2024-09-23 16:23:42.918 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat initialized with port 8080 (http) +2024-09-23 16:23:42.925 [main] INFO o.a.coyote.http11.Http11NioProtocol - Initializing ProtocolHandler ["http-nio-8080"] +2024-09-23 16:23:42.929 [main] INFO o.a.catalina.core.StandardService - Starting service [Tomcat] +2024-09-23 16:23:42.929 [main] INFO o.a.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/10.1.30] +2024-09-23 16:23:42.983 [main] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring embedded WebApplicationContext +2024-09-23 16:23:42.984 [main] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 1037 ms +2024-09-23 16:23:43.714 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Starting... +2024-09-23 16:23:43.812 [main] INFO com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - Added connection com.mysql.cj.jdbc.ConnectionImpl@13f2d42c +2024-09-23 16:23:43.813 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Start completed. +2024-09-23 16:23:43.927 [main] INFO o.a.coyote.http11.Http11NioProtocol - Starting ProtocolHandler ["http-nio-8080"] +2024-09-23 16:23:43.943 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat started on port 8080 (http) with context path '/' +2024-09-23 16:23:43.950 [main] INFO c.g.h.HarmonyLifeServerApplication - Started HarmonyLifeServerApplication in 2.348 seconds (process running for 2.755) +2024-09-23 16:23:47.738 [http-nio-8080-exec-1] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring DispatcherServlet 'dispatcherServlet' +2024-09-23 16:23:47.738 [http-nio-8080-exec-1] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet' +2024-09-23 16:23:47.739 [http-nio-8080-exec-1] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 1 ms +2024-09-23 16:23:48.094 [http-nio-8080-exec-1] INFO c.g.h.service.impl.UserServiceImpl - 查询用户1的用户信息 +2024-09-23 16:23:48.106 [http-nio-8080-exec-1] DEBUG c.g.h.mapper.UserMapper.getUserById - ==> Preparing: SELECT * from user_info where id=? AND status=1 +2024-09-23 16:23:48.121 [http-nio-8080-exec-1] DEBUG c.g.h.mapper.UserMapper.getUserById - ==> Parameters: 1(Long) +2024-09-23 16:23:48.139 [http-nio-8080-exec-1] DEBUG c.g.h.mapper.UserMapper.getUserById - <== Total: 1 +2024-09-23 16:23:48.140 [http-nio-8080-exec-1] DEBUG c.g.h.m.AuthMapper.getUserRoleById - ==> Preparing: SELECT * from system_role where role_id=? AND status=1 +2024-09-23 16:23:48.141 [http-nio-8080-exec-1] DEBUG c.g.h.m.AuthMapper.getUserRoleById - ==> Parameters: root(String) +2024-09-23 16:23:48.142 [http-nio-8080-exec-1] DEBUG c.g.h.m.AuthMapper.getUserRoleById - <== Total: 1 +2024-09-23 16:23:48.144 [http-nio-8080-exec-1] DEBUG c.g.h.m.A.getUserPermissionListByRoleId - ==> Preparing: select * from system_role_permission where role_id=? AND status=1 +2024-09-23 16:23:48.144 [http-nio-8080-exec-1] DEBUG c.g.h.m.A.getUserPermissionListByRoleId - ==> Parameters: root(String) +2024-09-23 16:23:48.146 [http-nio-8080-exec-1] DEBUG c.g.h.m.A.getUserPermissionListByRoleId - <== Total: 10 +2024-09-23 16:23:48.146 [http-nio-8080-exec-1] INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:com.guaiguailang.harmony.domain.entity.SystemPermission@7848f7fc +2024-09-23 16:23:48.146 [http-nio-8080-exec-1] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-23 16:23:48.146 [http-nio-8080-exec-1] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: dashboard(String), 1(Long) +2024-09-23 16:23:48.147 [http-nio-8080-exec-1] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 0 +2024-09-23 16:23:48.148 [http-nio-8080-exec-1] INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:com.guaiguailang.harmony.domain.entity.SystemPermission@42c110c4 +2024-09-23 16:23:48.148 [http-nio-8080-exec-1] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-23 16:23:48.148 [http-nio-8080-exec-1] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: exception(String), 1(Long) +2024-09-23 16:23:48.148 [http-nio-8080-exec-1] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 0 +2024-09-23 16:23:48.148 [http-nio-8080-exec-1] INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:com.guaiguailang.harmony.domain.entity.SystemPermission@3ac43255 +2024-09-23 16:23:48.149 [http-nio-8080-exec-1] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-23 16:23:48.149 [http-nio-8080-exec-1] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: result(String), 1(Long) +2024-09-23 16:23:48.149 [http-nio-8080-exec-1] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 0 +2024-09-23 16:23:48.149 [http-nio-8080-exec-1] INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:com.guaiguailang.harmony.domain.entity.SystemPermission@20663b77 +2024-09-23 16:23:48.149 [http-nio-8080-exec-1] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-23 16:23:48.150 [http-nio-8080-exec-1] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: profile(String), 1(Long) +2024-09-23 16:23:48.150 [http-nio-8080-exec-1] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 0 +2024-09-23 16:23:48.150 [http-nio-8080-exec-1] INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:com.guaiguailang.harmony.domain.entity.SystemPermission@6c5d7037 +2024-09-23 16:23:48.150 [http-nio-8080-exec-1] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-23 16:23:48.150 [http-nio-8080-exec-1] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: table(String), 1(Long) +2024-09-23 16:23:48.151 [http-nio-8080-exec-1] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 0 +2024-09-23 16:23:48.151 [http-nio-8080-exec-1] INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:com.guaiguailang.harmony.domain.entity.SystemPermission@4da41cb6 +2024-09-23 16:23:48.151 [http-nio-8080-exec-1] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-23 16:23:48.151 [http-nio-8080-exec-1] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: form(String), 1(Long) +2024-09-23 16:23:48.152 [http-nio-8080-exec-1] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 0 +2024-09-23 16:23:48.152 [http-nio-8080-exec-1] INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:com.guaiguailang.harmony.domain.entity.SystemPermission@380d74ef +2024-09-23 16:23:48.152 [http-nio-8080-exec-1] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-23 16:23:48.152 [http-nio-8080-exec-1] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: order(String), 1(Long) +2024-09-23 16:23:48.152 [http-nio-8080-exec-1] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 0 +2024-09-23 16:23:48.153 [http-nio-8080-exec-1] INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:com.guaiguailang.harmony.domain.entity.SystemPermission@487aed2c +2024-09-23 16:23:48.153 [http-nio-8080-exec-1] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-23 16:23:48.153 [http-nio-8080-exec-1] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: permission(String), 1(Long) +2024-09-23 16:23:48.155 [http-nio-8080-exec-1] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 6 +2024-09-23 16:23:48.156 [http-nio-8080-exec-1] ERROR c.g.h.config.GlobalExceptionHandler - Cannot invoke "java.util.List.add(Object)" because the return value of "com.guaiguailang.harmony.domain.vo.PermissionInfo.getActionEntitySet()" is null +2024-09-23 16:25:44.207 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown initiated... +2024-09-23 16:25:44.211 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown completed. +2024-09-23 16:25:47.899 [main] INFO o.s.boot.SpringApplication - +██╗ ██╗██████╗ ██╗██╗ █████╗ ███╗ ██╗ ██████╗ +╚██╗██╔╝██╔══██╗██║██║ ██╔══██╗████╗ ██║██╔════╝ + ╚███╔╝ ██████╔╝██║██║ ███████║██╔██╗ ██║██║ ███╗ + ██╔██╗ ██╔══██╗██║██║ ██╔══██║██║╚██╗██║██║ ██║ +██╔╝ ██╗██║ ██║██║███████╗██║ ██║██║ ╚████║╚██████╔╝ +╚═╝ ╚═╝╚═╝ ╚═╝╚═╝╚══════╝╚═╝ ╚═╝╚═╝ ╚═══╝ ╚═════╝ + +^_^ 服务启动成功 He Sheng +# 项目名称:harmony-life-server +# 项目版本:1.0.0 +# 框架版本:3.3.4 +# 最后更新于 2024年 9月 25日 + + +2024-09-23 16:25:47.941 [main] INFO c.g.h.HarmonyLifeServerApplication - Starting HarmonyLifeServerApplication using Java 17.0.8 with PID 8464 (C:\Users\xrilang\Desktop\harmony-life\harmony-life-server\harmony-life-server\target\classes started by xrilang in C:\Users\xrilang\Desktop\harmony-life\harmony-life-server\harmony-life-server) +2024-09-23 16:25:47.942 [main] DEBUG c.g.h.HarmonyLifeServerApplication - Running with Spring Boot v3.3.4, Spring v6.1.13 +2024-09-23 16:25:47.943 [main] INFO c.g.h.HarmonyLifeServerApplication - No active profile set, falling back to 1 default profile: "default" +2024-09-23 16:25:48.493 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode +2024-09-23 16:25:48.493 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data JDBC repositories in DEFAULT mode. +2024-09-23 16:25:48.503 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 7 ms. Found 0 JDBC repository interfaces. +2024-09-23 16:25:48.513 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode +2024-09-23 16:25:48.513 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2024-09-23 16:25:48.526 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 5 ms. Found 0 Redis repository interfaces. +2024-09-23 16:25:48.931 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat initialized with port 8080 (http) +2024-09-23 16:25:48.938 [main] INFO o.a.coyote.http11.Http11NioProtocol - Initializing ProtocolHandler ["http-nio-8080"] +2024-09-23 16:25:48.940 [main] INFO o.a.catalina.core.StandardService - Starting service [Tomcat] +2024-09-23 16:25:48.941 [main] INFO o.a.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/10.1.30] +2024-09-23 16:25:48.994 [main] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring embedded WebApplicationContext +2024-09-23 16:25:48.994 [main] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 1022 ms +2024-09-23 16:25:49.679 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Starting... +2024-09-23 16:25:49.772 [main] INFO com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - Added connection com.mysql.cj.jdbc.ConnectionImpl@56f61d74 +2024-09-23 16:25:49.773 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Start completed. +2024-09-23 16:25:49.893 [main] INFO o.a.coyote.http11.Http11NioProtocol - Starting ProtocolHandler ["http-nio-8080"] +2024-09-23 16:25:49.906 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat started on port 8080 (http) with context path '/' +2024-09-23 16:25:49.912 [main] INFO c.g.h.HarmonyLifeServerApplication - Started HarmonyLifeServerApplication in 2.283 seconds (process running for 2.672) +2024-09-23 16:27:33.875 [http-nio-8080-exec-3] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring DispatcherServlet 'dispatcherServlet' +2024-09-23 16:27:33.875 [http-nio-8080-exec-3] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet' +2024-09-23 16:27:33.877 [http-nio-8080-exec-3] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 2 ms +2024-09-23 16:27:34.138 [http-nio-8080-exec-2] INFO o.s.api.AbstractOpenApiResource - Init duration for springdoc-openapi is: 157 ms +2024-09-23 16:27:34.261 [http-nio-8080-exec-1] ERROR c.g.h.config.GlobalExceptionHandler - No static resource favicon.ico. +2024-09-23 16:27:36.924 [http-nio-8080-exec-5] ERROR c.g.h.config.GlobalExceptionHandler - No static resource favicon.ico. +2024-09-23 16:27:39.120 [http-nio-8080-exec-7] ERROR c.g.h.config.GlobalExceptionHandler - No static resource favicon.ico. +2024-09-23 16:27:41.082 [http-nio-8080-exec-8] INFO c.g.h.service.impl.UserServiceImpl - 查询用户1的用户信息 +2024-09-23 16:27:41.095 [http-nio-8080-exec-8] DEBUG c.g.h.mapper.UserMapper.getUserById - ==> Preparing: SELECT * from user_info where id=? AND status=1 +2024-09-23 16:27:41.121 [http-nio-8080-exec-8] DEBUG c.g.h.mapper.UserMapper.getUserById - ==> Parameters: 1(Long) +2024-09-23 16:27:41.142 [http-nio-8080-exec-8] DEBUG c.g.h.mapper.UserMapper.getUserById - <== Total: 1 +2024-09-23 16:27:41.143 [http-nio-8080-exec-8] DEBUG c.g.h.m.AuthMapper.getUserRoleById - ==> Preparing: SELECT * from system_role where role_id=? AND status=1 +2024-09-23 16:27:41.143 [http-nio-8080-exec-8] DEBUG c.g.h.m.AuthMapper.getUserRoleById - ==> Parameters: root(String) +2024-09-23 16:27:41.146 [http-nio-8080-exec-8] DEBUG c.g.h.m.AuthMapper.getUserRoleById - <== Total: 1 +2024-09-23 16:27:41.147 [http-nio-8080-exec-8] DEBUG c.g.h.m.A.getUserPermissionListByRoleId - ==> Preparing: select * from system_role_permission where role_id=? AND status=1 +2024-09-23 16:27:41.148 [http-nio-8080-exec-8] DEBUG c.g.h.m.A.getUserPermissionListByRoleId - ==> Parameters: root(String) +2024-09-23 16:27:41.150 [http-nio-8080-exec-8] DEBUG c.g.h.m.A.getUserPermissionListByRoleId - <== Total: 10 +2024-09-23 16:27:41.150 [http-nio-8080-exec-8] INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:com.guaiguailang.harmony.domain.entity.SystemPermission@6d7d8e7f +2024-09-23 16:27:41.151 [http-nio-8080-exec-8] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-23 16:27:41.151 [http-nio-8080-exec-8] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: dashboard(String), 1(Long) +2024-09-23 16:27:41.154 [http-nio-8080-exec-8] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 0 +2024-09-23 16:27:41.155 [http-nio-8080-exec-8] INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:com.guaiguailang.harmony.domain.entity.SystemPermission@55c98280 +2024-09-23 16:27:41.155 [http-nio-8080-exec-8] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-23 16:27:41.155 [http-nio-8080-exec-8] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: exception(String), 1(Long) +2024-09-23 16:27:41.155 [http-nio-8080-exec-8] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 0 +2024-09-23 16:27:41.156 [http-nio-8080-exec-8] INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:com.guaiguailang.harmony.domain.entity.SystemPermission@2ffb3830 +2024-09-23 16:27:41.156 [http-nio-8080-exec-8] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-23 16:27:41.156 [http-nio-8080-exec-8] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: result(String), 1(Long) +2024-09-23 16:27:41.156 [http-nio-8080-exec-8] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 0 +2024-09-23 16:27:41.156 [http-nio-8080-exec-8] INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:com.guaiguailang.harmony.domain.entity.SystemPermission@dc03bcf +2024-09-23 16:27:41.156 [http-nio-8080-exec-8] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-23 16:27:41.157 [http-nio-8080-exec-8] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: profile(String), 1(Long) +2024-09-23 16:27:41.157 [http-nio-8080-exec-8] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 0 +2024-09-23 16:27:41.157 [http-nio-8080-exec-8] INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:com.guaiguailang.harmony.domain.entity.SystemPermission@121f5814 +2024-09-23 16:27:41.157 [http-nio-8080-exec-8] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-23 16:27:41.157 [http-nio-8080-exec-8] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: table(String), 1(Long) +2024-09-23 16:27:41.158 [http-nio-8080-exec-8] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 0 +2024-09-23 16:27:41.158 [http-nio-8080-exec-8] INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:com.guaiguailang.harmony.domain.entity.SystemPermission@298cbbab +2024-09-23 16:27:41.158 [http-nio-8080-exec-8] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-23 16:27:41.158 [http-nio-8080-exec-8] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: form(String), 1(Long) +2024-09-23 16:27:41.158 [http-nio-8080-exec-8] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 0 +2024-09-23 16:27:41.158 [http-nio-8080-exec-8] INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:com.guaiguailang.harmony.domain.entity.SystemPermission@3ba206f4 +2024-09-23 16:27:41.159 [http-nio-8080-exec-8] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-23 16:27:41.159 [http-nio-8080-exec-8] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: order(String), 1(Long) +2024-09-23 16:27:41.159 [http-nio-8080-exec-8] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 0 +2024-09-23 16:27:41.159 [http-nio-8080-exec-8] INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:com.guaiguailang.harmony.domain.entity.SystemPermission@25e76621 +2024-09-23 16:27:41.159 [http-nio-8080-exec-8] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-23 16:27:41.159 [http-nio-8080-exec-8] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: permission(String), 1(Long) +2024-09-23 16:27:41.161 [http-nio-8080-exec-8] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 6 +2024-09-23 16:27:41.161 [http-nio-8080-exec-8] INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:com.guaiguailang.harmony.domain.entity.SystemPermission@746d7fb4 +2024-09-23 16:27:41.161 [http-nio-8080-exec-8] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-23 16:27:41.161 [http-nio-8080-exec-8] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: role(String), 1(Long) +2024-09-23 16:27:41.162 [http-nio-8080-exec-8] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 6 +2024-09-23 16:27:41.162 [http-nio-8080-exec-8] INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:com.guaiguailang.harmony.domain.entity.SystemPermission@319086a2 +2024-09-23 16:27:41.163 [http-nio-8080-exec-8] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-23 16:27:41.163 [http-nio-8080-exec-8] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: user(String), 1(Long) +2024-09-23 16:27:41.163 [http-nio-8080-exec-8] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 0 +2024-09-23 16:27:41.170 [http-nio-8080-exec-8] INFO c.g.h.service.impl.UserServiceImpl - UserInfoLogin(id=1, name=萌狼蓝天, username=xrilang, avatar=https://q1.qlogo.cn/g?b=qq&nk=3447902411&s=640, email=null, telephone=null, status=0, lastLoginIp=null, lastLoginTime=null, createTime=null, creator=null, merchantCode=null, roleId=root, role=RoleInfo(id=root, name=超级管理员, description=最高权限, status=0, creatorId=null, createTime=null, deleted=0, permissionInfo=[PermissionInfo(roleId=root, permissionId=dashboard, permissionName=null, actionEntitySet=[], actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=exception, permissionName=null, actionEntitySet=[], actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=result, permissionName=null, actionEntitySet=[], actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=profile, permissionName=null, actionEntitySet=[], actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=table, permissionName=null, actionEntitySet=[], actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=form, permissionName=null, actionEntitySet=[], actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=order, permissionName=null, actionEntitySet=[], actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=permission, permissionName=null, actionEntitySet=[ActionEntitySet(action=add, describe=新增, defaultCheck=false), ActionEntitySet(action=import, describe=导入, defaultCheck=false), ActionEntitySet(action=get, describe=详情, defaultCheck=false), ActionEntitySet(action=update, describe=更新, defaultCheck=false), ActionEntitySet(action=delete, describe=删除, defaultCheck=false), ActionEntitySet(action=export, describe=导出, defaultCheck=false)], actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=role, permissionName=null, actionEntitySet=[ActionEntitySet(action=add, describe=新增, defaultCheck=false), ActionEntitySet(action=import, describe=导入, defaultCheck=false), ActionEntitySet(action=get, describe=详情, defaultCheck=false), ActionEntitySet(action=update, describe=更新, defaultCheck=false), ActionEntitySet(action=delete, describe=删除, defaultCheck=false), ActionEntitySet(action=export, describe=导出, defaultCheck=false)], actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=user, permissionName=null, actionEntitySet=[], actionList=null, dataAccess=null)]), token=null, expireTime=null) +2024-09-23 16:27:55.656 [http-nio-8080-exec-9] ERROR c.g.h.config.GlobalExceptionHandler - No static resource auth/2step-code. +2024-09-23 16:28:08.669 [http-nio-8080-exec-10] DEBUG c.g.h.m.UserMapper.getUserByAccount - ==> Preparing: SELECT * from user_info where username=? AND status=1 +2024-09-23 16:28:08.669 [http-nio-8080-exec-10] DEBUG c.g.h.m.UserMapper.getUserByAccount - ==> Parameters: xrilang(String) +2024-09-23 16:28:08.671 [http-nio-8080-exec-10] DEBUG c.g.h.m.UserMapper.getUserByAccount - <== Total: 1 +2024-09-23 16:28:08.674 [http-nio-8080-exec-10] INFO c.g.h.service.impl.AuthServiceImpl - 查询到用户UserInfo(id=1, name=萌狼蓝天, username=xrilang, password=VomAhgnr1XAkMKzicqYxdCFBx0ooiXBN66Xq9XCWGJTsJgH3uLJVAVGkoZi2n1Ml, avatar=https://q1.qlogo.cn/g?b=qq&nk=3447902411&s=640, status=1, telephone=null, email=null, createTime=2024-09-22 06:31:02.0, merchantCode=null, deleted=0, roleId=root, creatorId=0) +2024-09-23 16:28:08.698 [http-nio-8080-exec-10] INFO c.g.h.service.impl.AuthServiceImpl - xrilang(xrilang)登录成功,id:1;身份:root +2024-09-23 16:28:08.698 [http-nio-8080-exec-10] INFO c.g.h.service.impl.AuthServiceImpl - Token:bf17c7d5-5dfa-4332-bc46-2ccdcc20f2cd +2024-09-23 16:28:09.021 [http-nio-8080-exec-3] INFO c.g.h.service.impl.UserServiceImpl - 查询用户1的用户信息 +2024-09-23 16:28:09.022 [http-nio-8080-exec-3] DEBUG c.g.h.mapper.UserMapper.getUserById - ==> Preparing: SELECT * from user_info where id=? AND status=1 +2024-09-23 16:28:09.022 [http-nio-8080-exec-3] DEBUG c.g.h.mapper.UserMapper.getUserById - ==> Parameters: 1(Long) +2024-09-23 16:28:09.023 [http-nio-8080-exec-3] DEBUG c.g.h.mapper.UserMapper.getUserById - <== Total: 1 +2024-09-23 16:28:09.023 [http-nio-8080-exec-3] DEBUG c.g.h.m.AuthMapper.getUserRoleById - ==> Preparing: SELECT * from system_role where role_id=? AND status=1 +2024-09-23 16:28:09.024 [http-nio-8080-exec-3] DEBUG c.g.h.m.AuthMapper.getUserRoleById - ==> Parameters: root(String) +2024-09-23 16:28:09.025 [http-nio-8080-exec-3] DEBUG c.g.h.m.AuthMapper.getUserRoleById - <== Total: 1 +2024-09-23 16:28:09.026 [http-nio-8080-exec-3] DEBUG c.g.h.m.A.getUserPermissionListByRoleId - ==> Preparing: select * from system_role_permission where role_id=? AND status=1 +2024-09-23 16:28:09.026 [http-nio-8080-exec-3] DEBUG c.g.h.m.A.getUserPermissionListByRoleId - ==> Parameters: root(String) +2024-09-23 16:28:09.027 [http-nio-8080-exec-3] DEBUG c.g.h.m.A.getUserPermissionListByRoleId - <== Total: 10 +2024-09-23 16:28:09.027 [http-nio-8080-exec-3] INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:com.guaiguailang.harmony.domain.entity.SystemPermission@8b5e3 +2024-09-23 16:28:09.027 [http-nio-8080-exec-3] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-23 16:28:09.028 [http-nio-8080-exec-3] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: dashboard(String), 1(Long) +2024-09-23 16:28:09.028 [http-nio-8080-exec-3] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 0 +2024-09-23 16:28:09.028 [http-nio-8080-exec-3] INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:com.guaiguailang.harmony.domain.entity.SystemPermission@4505b408 +2024-09-23 16:28:09.028 [http-nio-8080-exec-3] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-23 16:28:09.028 [http-nio-8080-exec-3] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: exception(String), 1(Long) +2024-09-23 16:28:09.029 [http-nio-8080-exec-3] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 0 +2024-09-23 16:28:09.029 [http-nio-8080-exec-3] INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:com.guaiguailang.harmony.domain.entity.SystemPermission@6631303c +2024-09-23 16:28:09.029 [http-nio-8080-exec-3] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-23 16:28:09.029 [http-nio-8080-exec-3] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: result(String), 1(Long) +2024-09-23 16:28:09.029 [http-nio-8080-exec-3] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 0 +2024-09-23 16:28:09.030 [http-nio-8080-exec-3] INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:com.guaiguailang.harmony.domain.entity.SystemPermission@33549dc1 +2024-09-23 16:28:09.030 [http-nio-8080-exec-3] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-23 16:28:09.030 [http-nio-8080-exec-3] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: profile(String), 1(Long) +2024-09-23 16:28:09.030 [http-nio-8080-exec-3] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 0 +2024-09-23 16:28:09.030 [http-nio-8080-exec-3] INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:com.guaiguailang.harmony.domain.entity.SystemPermission@52afb255 +2024-09-23 16:28:09.030 [http-nio-8080-exec-3] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-23 16:28:09.031 [http-nio-8080-exec-3] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: table(String), 1(Long) +2024-09-23 16:28:09.031 [http-nio-8080-exec-3] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 0 +2024-09-23 16:28:09.031 [http-nio-8080-exec-3] INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:com.guaiguailang.harmony.domain.entity.SystemPermission@2cd75e1b +2024-09-23 16:28:09.031 [http-nio-8080-exec-3] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-23 16:28:09.031 [http-nio-8080-exec-3] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: form(String), 1(Long) +2024-09-23 16:28:09.031 [http-nio-8080-exec-3] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 0 +2024-09-23 16:28:09.032 [http-nio-8080-exec-3] INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:com.guaiguailang.harmony.domain.entity.SystemPermission@3a30931d +2024-09-23 16:28:09.032 [http-nio-8080-exec-3] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-23 16:28:09.032 [http-nio-8080-exec-3] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: order(String), 1(Long) +2024-09-23 16:28:09.032 [http-nio-8080-exec-3] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 0 +2024-09-23 16:28:09.032 [http-nio-8080-exec-3] INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:com.guaiguailang.harmony.domain.entity.SystemPermission@16d376bd +2024-09-23 16:28:09.032 [http-nio-8080-exec-3] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-23 16:28:09.032 [http-nio-8080-exec-3] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: permission(String), 1(Long) +2024-09-23 16:28:09.034 [http-nio-8080-exec-3] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 6 +2024-09-23 16:28:09.035 [http-nio-8080-exec-3] INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:com.guaiguailang.harmony.domain.entity.SystemPermission@3240c07c +2024-09-23 16:28:09.035 [http-nio-8080-exec-3] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-23 16:28:09.035 [http-nio-8080-exec-3] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: role(String), 1(Long) +2024-09-23 16:28:09.036 [http-nio-8080-exec-3] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 6 +2024-09-23 16:28:09.036 [http-nio-8080-exec-3] INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:com.guaiguailang.harmony.domain.entity.SystemPermission@aae0962 +2024-09-23 16:28:09.037 [http-nio-8080-exec-3] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-23 16:28:09.037 [http-nio-8080-exec-3] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: user(String), 1(Long) +2024-09-23 16:28:09.037 [http-nio-8080-exec-3] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 0 +2024-09-23 16:28:09.037 [http-nio-8080-exec-3] INFO c.g.h.service.impl.UserServiceImpl - UserInfoLogin(id=1, name=萌狼蓝天, username=xrilang, avatar=https://q1.qlogo.cn/g?b=qq&nk=3447902411&s=640, email=null, telephone=null, status=0, lastLoginIp=null, lastLoginTime=null, createTime=null, creator=null, merchantCode=null, roleId=root, role=RoleInfo(id=root, name=超级管理员, description=最高权限, status=0, creatorId=null, createTime=null, deleted=0, permissionInfo=[PermissionInfo(roleId=root, permissionId=dashboard, permissionName=null, actionEntitySet=[], actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=exception, permissionName=null, actionEntitySet=[], actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=result, permissionName=null, actionEntitySet=[], actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=profile, permissionName=null, actionEntitySet=[], actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=table, permissionName=null, actionEntitySet=[], actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=form, permissionName=null, actionEntitySet=[], actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=order, permissionName=null, actionEntitySet=[], actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=permission, permissionName=null, actionEntitySet=[ActionEntitySet(action=add, describe=新增, defaultCheck=false), ActionEntitySet(action=import, describe=导入, defaultCheck=false), ActionEntitySet(action=get, describe=详情, defaultCheck=false), ActionEntitySet(action=update, describe=更新, defaultCheck=false), ActionEntitySet(action=delete, describe=删除, defaultCheck=false), ActionEntitySet(action=export, describe=导出, defaultCheck=false)], actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=role, permissionName=null, actionEntitySet=[ActionEntitySet(action=add, describe=新增, defaultCheck=false), ActionEntitySet(action=import, describe=导入, defaultCheck=false), ActionEntitySet(action=get, describe=详情, defaultCheck=false), ActionEntitySet(action=update, describe=更新, defaultCheck=false), ActionEntitySet(action=delete, describe=删除, defaultCheck=false), ActionEntitySet(action=export, describe=导出, defaultCheck=false)], actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=user, permissionName=null, actionEntitySet=[], actionList=null, dataAccess=null)]), token=null, expireTime=null) +2024-09-23 16:30:20.363 [http-nio-8080-exec-6] ERROR c.g.h.config.GlobalExceptionHandler - No static resource auth/2step-code. +2024-09-23 16:30:26.982 [http-nio-8080-exec-4] DEBUG c.g.h.m.UserMapper.getUserByAccount - ==> Preparing: SELECT * from user_info where username=? AND status=1 +2024-09-23 16:30:26.982 [http-nio-8080-exec-4] DEBUG c.g.h.m.UserMapper.getUserByAccount - ==> Parameters: xrilang(String) +2024-09-23 16:30:26.984 [http-nio-8080-exec-4] DEBUG c.g.h.m.UserMapper.getUserByAccount - <== Total: 1 +2024-09-23 16:30:26.984 [http-nio-8080-exec-4] INFO c.g.h.service.impl.AuthServiceImpl - 查询到用户UserInfo(id=1, name=萌狼蓝天, username=xrilang, password=VomAhgnr1XAkMKzicqYxdCFBx0ooiXBN66Xq9XCWGJTsJgH3uLJVAVGkoZi2n1Ml, avatar=https://q1.qlogo.cn/g?b=qq&nk=3447902411&s=640, status=1, telephone=null, email=null, createTime=2024-09-22 06:31:02.0, merchantCode=null, deleted=0, roleId=root, creatorId=0) +2024-09-23 16:30:26.988 [http-nio-8080-exec-4] INFO c.g.h.service.impl.AuthServiceImpl - xrilang(xrilang)登录成功,id:1;身份:root +2024-09-23 16:30:26.989 [http-nio-8080-exec-4] INFO c.g.h.service.impl.AuthServiceImpl - Token:ed4261ff-a25f-475c-b06b-0ec54977a94a +2024-09-23 16:30:27.307 [http-nio-8080-exec-5] INFO c.g.h.service.impl.UserServiceImpl - 查询用户1的用户信息 +2024-09-23 16:30:27.308 [http-nio-8080-exec-5] DEBUG c.g.h.mapper.UserMapper.getUserById - ==> Preparing: SELECT * from user_info where id=? AND status=1 +2024-09-23 16:30:27.308 [http-nio-8080-exec-5] DEBUG c.g.h.mapper.UserMapper.getUserById - ==> Parameters: 1(Long) +2024-09-23 16:30:27.309 [http-nio-8080-exec-5] DEBUG c.g.h.mapper.UserMapper.getUserById - <== Total: 1 +2024-09-23 16:30:27.309 [http-nio-8080-exec-5] DEBUG c.g.h.m.AuthMapper.getUserRoleById - ==> Preparing: SELECT * from system_role where role_id=? AND status=1 +2024-09-23 16:30:27.309 [http-nio-8080-exec-5] DEBUG c.g.h.m.AuthMapper.getUserRoleById - ==> Parameters: root(String) +2024-09-23 16:30:27.309 [http-nio-8080-exec-5] DEBUG c.g.h.m.AuthMapper.getUserRoleById - <== Total: 1 +2024-09-23 16:30:27.309 [http-nio-8080-exec-5] DEBUG c.g.h.m.A.getUserPermissionListByRoleId - ==> Preparing: select * from system_role_permission where role_id=? AND status=1 +2024-09-23 16:30:27.310 [http-nio-8080-exec-5] DEBUG c.g.h.m.A.getUserPermissionListByRoleId - ==> Parameters: root(String) +2024-09-23 16:30:27.310 [http-nio-8080-exec-5] DEBUG c.g.h.m.A.getUserPermissionListByRoleId - <== Total: 10 +2024-09-23 16:30:27.310 [http-nio-8080-exec-5] INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:com.guaiguailang.harmony.domain.entity.SystemPermission@5265edba +2024-09-23 16:30:27.311 [http-nio-8080-exec-5] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-23 16:30:27.311 [http-nio-8080-exec-5] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: dashboard(String), 1(Long) +2024-09-23 16:30:27.311 [http-nio-8080-exec-5] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 0 +2024-09-23 16:30:27.311 [http-nio-8080-exec-5] INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:com.guaiguailang.harmony.domain.entity.SystemPermission@637dbd39 +2024-09-23 16:30:27.311 [http-nio-8080-exec-5] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-23 16:30:27.311 [http-nio-8080-exec-5] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: exception(String), 1(Long) +2024-09-23 16:30:27.311 [http-nio-8080-exec-5] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 0 +2024-09-23 16:30:27.311 [http-nio-8080-exec-5] INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:com.guaiguailang.harmony.domain.entity.SystemPermission@324a12f5 +2024-09-23 16:30:27.311 [http-nio-8080-exec-5] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-23 16:30:27.312 [http-nio-8080-exec-5] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: result(String), 1(Long) +2024-09-23 16:30:27.312 [http-nio-8080-exec-5] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 0 +2024-09-23 16:30:27.312 [http-nio-8080-exec-5] INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:com.guaiguailang.harmony.domain.entity.SystemPermission@62c6f095 +2024-09-23 16:30:27.312 [http-nio-8080-exec-5] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-23 16:30:27.312 [http-nio-8080-exec-5] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: profile(String), 1(Long) +2024-09-23 16:30:27.312 [http-nio-8080-exec-5] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 0 +2024-09-23 16:30:27.312 [http-nio-8080-exec-5] INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:com.guaiguailang.harmony.domain.entity.SystemPermission@3604cc06 +2024-09-23 16:30:27.312 [http-nio-8080-exec-5] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-23 16:30:27.313 [http-nio-8080-exec-5] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: table(String), 1(Long) +2024-09-23 16:30:27.313 [http-nio-8080-exec-5] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 0 +2024-09-23 16:30:27.313 [http-nio-8080-exec-5] INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:com.guaiguailang.harmony.domain.entity.SystemPermission@6fa17583 +2024-09-23 16:30:27.313 [http-nio-8080-exec-5] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-23 16:30:27.313 [http-nio-8080-exec-5] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: form(String), 1(Long) +2024-09-23 16:30:27.313 [http-nio-8080-exec-5] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 0 +2024-09-23 16:30:27.313 [http-nio-8080-exec-5] INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:com.guaiguailang.harmony.domain.entity.SystemPermission@76699841 +2024-09-23 16:30:27.314 [http-nio-8080-exec-5] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-23 16:30:27.314 [http-nio-8080-exec-5] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: order(String), 1(Long) +2024-09-23 16:30:27.314 [http-nio-8080-exec-5] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 0 +2024-09-23 16:30:27.314 [http-nio-8080-exec-5] INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:com.guaiguailang.harmony.domain.entity.SystemPermission@1b7fb7b0 +2024-09-23 16:30:27.314 [http-nio-8080-exec-5] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-23 16:30:27.314 [http-nio-8080-exec-5] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: permission(String), 1(Long) +2024-09-23 16:30:27.315 [http-nio-8080-exec-5] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 6 +2024-09-23 16:30:27.315 [http-nio-8080-exec-5] INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:com.guaiguailang.harmony.domain.entity.SystemPermission@2f9eaf1b +2024-09-23 16:30:27.315 [http-nio-8080-exec-5] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-23 16:30:27.315 [http-nio-8080-exec-5] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: role(String), 1(Long) +2024-09-23 16:30:27.316 [http-nio-8080-exec-5] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 6 +2024-09-23 16:30:27.316 [http-nio-8080-exec-5] INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:com.guaiguailang.harmony.domain.entity.SystemPermission@a0a8bb +2024-09-23 16:30:27.316 [http-nio-8080-exec-5] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-23 16:30:27.316 [http-nio-8080-exec-5] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: user(String), 1(Long) +2024-09-23 16:30:27.317 [http-nio-8080-exec-5] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 0 +2024-09-23 16:30:27.317 [http-nio-8080-exec-5] INFO c.g.h.service.impl.UserServiceImpl - UserInfoLogin(id=1, name=萌狼蓝天, username=xrilang, avatar=https://q1.qlogo.cn/g?b=qq&nk=3447902411&s=640, email=null, telephone=null, status=0, lastLoginIp=null, lastLoginTime=null, createTime=null, creator=null, merchantCode=null, roleId=root, role=RoleInfo(id=root, name=超级管理员, description=最高权限, status=0, creatorId=null, createTime=null, deleted=0, permissionInfo=[PermissionInfo(roleId=root, permissionId=dashboard, permissionName=null, actionEntitySet=[], actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=exception, permissionName=null, actionEntitySet=[], actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=result, permissionName=null, actionEntitySet=[], actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=profile, permissionName=null, actionEntitySet=[], actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=table, permissionName=null, actionEntitySet=[], actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=form, permissionName=null, actionEntitySet=[], actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=order, permissionName=null, actionEntitySet=[], actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=permission, permissionName=null, actionEntitySet=[ActionEntitySet(action=add, describe=新增, defaultCheck=false), ActionEntitySet(action=import, describe=导入, defaultCheck=false), ActionEntitySet(action=get, describe=详情, defaultCheck=false), ActionEntitySet(action=update, describe=更新, defaultCheck=false), ActionEntitySet(action=delete, describe=删除, defaultCheck=false), ActionEntitySet(action=export, describe=导出, defaultCheck=false)], actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=role, permissionName=null, actionEntitySet=[ActionEntitySet(action=add, describe=新增, defaultCheck=false), ActionEntitySet(action=import, describe=导入, defaultCheck=false), ActionEntitySet(action=get, describe=详情, defaultCheck=false), ActionEntitySet(action=update, describe=更新, defaultCheck=false), ActionEntitySet(action=delete, describe=删除, defaultCheck=false), ActionEntitySet(action=export, describe=导出, defaultCheck=false)], actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=user, permissionName=null, actionEntitySet=[], actionList=null, dataAccess=null)]), token=null, expireTime=null) +2024-09-23 16:31:04.271 [http-nio-8080-exec-8] DEBUG c.g.h.m.UserMapper.getUserByAccount - ==> Preparing: SELECT * from user_info where username=? AND status=1 +2024-09-23 16:31:04.271 [http-nio-8080-exec-8] DEBUG c.g.h.m.UserMapper.getUserByAccount - ==> Parameters: xrilang(String) +2024-09-23 16:31:04.272 [http-nio-8080-exec-8] DEBUG c.g.h.m.UserMapper.getUserByAccount - <== Total: 1 +2024-09-23 16:31:04.272 [http-nio-8080-exec-8] INFO c.g.h.service.impl.AuthServiceImpl - 查询到用户UserInfo(id=1, name=萌狼蓝天, username=xrilang, password=VomAhgnr1XAkMKzicqYxdCFBx0ooiXBN66Xq9XCWGJTsJgH3uLJVAVGkoZi2n1Ml, avatar=https://q1.qlogo.cn/g?b=qq&nk=3447902411&s=640, status=1, telephone=null, email=null, createTime=2024-09-22 06:31:02.0, merchantCode=null, deleted=0, roleId=root, creatorId=0) +2024-09-23 16:31:04.276 [http-nio-8080-exec-8] INFO c.g.h.service.impl.AuthServiceImpl - xrilang(xrilang)登录成功,id:1;身份:root +2024-09-23 16:31:04.277 [http-nio-8080-exec-8] INFO c.g.h.service.impl.AuthServiceImpl - Token:4dd47cab-2d18-49da-9a58-6fd49f2ef140 +2024-09-23 16:31:04.593 [http-nio-8080-exec-9] INFO c.g.h.service.impl.UserServiceImpl - 查询用户1的用户信息 +2024-09-23 16:31:04.594 [http-nio-8080-exec-9] DEBUG c.g.h.mapper.UserMapper.getUserById - ==> Preparing: SELECT * from user_info where id=? AND status=1 +2024-09-23 16:31:04.594 [http-nio-8080-exec-9] DEBUG c.g.h.mapper.UserMapper.getUserById - ==> Parameters: 1(Long) +2024-09-23 16:31:04.595 [http-nio-8080-exec-9] DEBUG c.g.h.mapper.UserMapper.getUserById - <== Total: 1 +2024-09-23 16:31:04.595 [http-nio-8080-exec-9] DEBUG c.g.h.m.AuthMapper.getUserRoleById - ==> Preparing: SELECT * from system_role where role_id=? AND status=1 +2024-09-23 16:31:04.595 [http-nio-8080-exec-9] DEBUG c.g.h.m.AuthMapper.getUserRoleById - ==> Parameters: root(String) +2024-09-23 16:31:04.596 [http-nio-8080-exec-9] DEBUG c.g.h.m.AuthMapper.getUserRoleById - <== Total: 1 +2024-09-23 16:31:04.596 [http-nio-8080-exec-9] DEBUG c.g.h.m.A.getUserPermissionListByRoleId - ==> Preparing: select * from system_role_permission where role_id=? AND status=1 +2024-09-23 16:31:04.596 [http-nio-8080-exec-9] DEBUG c.g.h.m.A.getUserPermissionListByRoleId - ==> Parameters: root(String) +2024-09-23 16:31:04.596 [http-nio-8080-exec-9] DEBUG c.g.h.m.A.getUserPermissionListByRoleId - <== Total: 10 +2024-09-23 16:31:04.596 [http-nio-8080-exec-9] INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:com.guaiguailang.harmony.domain.entity.SystemPermission@279e8008 +2024-09-23 16:31:04.596 [http-nio-8080-exec-9] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-23 16:31:04.597 [http-nio-8080-exec-9] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: dashboard(String), 1(Long) +2024-09-23 16:31:04.597 [http-nio-8080-exec-9] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 0 +2024-09-23 16:31:04.597 [http-nio-8080-exec-9] INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:com.guaiguailang.harmony.domain.entity.SystemPermission@21e04970 +2024-09-23 16:31:04.597 [http-nio-8080-exec-9] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-23 16:31:04.598 [http-nio-8080-exec-9] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: exception(String), 1(Long) +2024-09-23 16:31:04.598 [http-nio-8080-exec-9] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 0 +2024-09-23 16:31:04.598 [http-nio-8080-exec-9] INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:com.guaiguailang.harmony.domain.entity.SystemPermission@42ccae52 +2024-09-23 16:31:04.598 [http-nio-8080-exec-9] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-23 16:31:04.598 [http-nio-8080-exec-9] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: result(String), 1(Long) +2024-09-23 16:31:04.598 [http-nio-8080-exec-9] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 0 +2024-09-23 16:31:04.599 [http-nio-8080-exec-9] INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:com.guaiguailang.harmony.domain.entity.SystemPermission@359ee228 +2024-09-23 16:31:04.599 [http-nio-8080-exec-9] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-23 16:31:04.599 [http-nio-8080-exec-9] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: profile(String), 1(Long) +2024-09-23 16:31:04.599 [http-nio-8080-exec-9] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 0 +2024-09-23 16:31:04.599 [http-nio-8080-exec-9] INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:com.guaiguailang.harmony.domain.entity.SystemPermission@c8dd70d +2024-09-23 16:31:04.599 [http-nio-8080-exec-9] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-23 16:31:04.599 [http-nio-8080-exec-9] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: table(String), 1(Long) +2024-09-23 16:31:04.599 [http-nio-8080-exec-9] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 0 +2024-09-23 16:31:04.599 [http-nio-8080-exec-9] INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:com.guaiguailang.harmony.domain.entity.SystemPermission@6ce6700a +2024-09-23 16:31:04.600 [http-nio-8080-exec-9] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-23 16:31:04.600 [http-nio-8080-exec-9] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: form(String), 1(Long) +2024-09-23 16:31:04.600 [http-nio-8080-exec-9] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 0 +2024-09-23 16:31:04.600 [http-nio-8080-exec-9] INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:com.guaiguailang.harmony.domain.entity.SystemPermission@7bc25d0 +2024-09-23 16:31:04.600 [http-nio-8080-exec-9] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-23 16:31:04.600 [http-nio-8080-exec-9] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: order(String), 1(Long) +2024-09-23 16:31:04.600 [http-nio-8080-exec-9] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 0 +2024-09-23 16:31:04.601 [http-nio-8080-exec-9] INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:com.guaiguailang.harmony.domain.entity.SystemPermission@2c18f4dc +2024-09-23 16:31:04.601 [http-nio-8080-exec-9] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-23 16:31:04.601 [http-nio-8080-exec-9] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: permission(String), 1(Long) +2024-09-23 16:31:04.601 [http-nio-8080-exec-9] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 6 +2024-09-23 16:31:04.601 [http-nio-8080-exec-9] INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:com.guaiguailang.harmony.domain.entity.SystemPermission@72a16a34 +2024-09-23 16:31:04.601 [http-nio-8080-exec-9] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-23 16:31:04.602 [http-nio-8080-exec-9] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: role(String), 1(Long) +2024-09-23 16:31:04.602 [http-nio-8080-exec-9] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 6 +2024-09-23 16:31:04.602 [http-nio-8080-exec-9] INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:com.guaiguailang.harmony.domain.entity.SystemPermission@674f2615 +2024-09-23 16:31:04.602 [http-nio-8080-exec-9] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-23 16:31:04.602 [http-nio-8080-exec-9] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: user(String), 1(Long) +2024-09-23 16:31:04.603 [http-nio-8080-exec-9] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 0 +2024-09-23 16:31:04.603 [http-nio-8080-exec-9] INFO c.g.h.service.impl.UserServiceImpl - UserInfoLogin(id=1, name=萌狼蓝天, username=xrilang, avatar=https://q1.qlogo.cn/g?b=qq&nk=3447902411&s=640, email=null, telephone=null, status=0, lastLoginIp=null, lastLoginTime=null, createTime=null, creator=null, merchantCode=null, roleId=root, role=RoleInfo(id=root, name=超级管理员, description=最高权限, status=0, creatorId=null, createTime=null, deleted=0, permissionInfo=[PermissionInfo(roleId=root, permissionId=dashboard, permissionName=null, actionEntitySet=[], actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=exception, permissionName=null, actionEntitySet=[], actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=result, permissionName=null, actionEntitySet=[], actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=profile, permissionName=null, actionEntitySet=[], actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=table, permissionName=null, actionEntitySet=[], actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=form, permissionName=null, actionEntitySet=[], actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=order, permissionName=null, actionEntitySet=[], actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=permission, permissionName=null, actionEntitySet=[ActionEntitySet(action=add, describe=新增, defaultCheck=false), ActionEntitySet(action=import, describe=导入, defaultCheck=false), ActionEntitySet(action=get, describe=详情, defaultCheck=false), ActionEntitySet(action=update, describe=更新, defaultCheck=false), ActionEntitySet(action=delete, describe=删除, defaultCheck=false), ActionEntitySet(action=export, describe=导出, defaultCheck=false)], actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=role, permissionName=null, actionEntitySet=[ActionEntitySet(action=add, describe=新增, defaultCheck=false), ActionEntitySet(action=import, describe=导入, defaultCheck=false), ActionEntitySet(action=get, describe=详情, defaultCheck=false), ActionEntitySet(action=update, describe=更新, defaultCheck=false), ActionEntitySet(action=delete, describe=删除, defaultCheck=false), ActionEntitySet(action=export, describe=导出, defaultCheck=false)], actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=user, permissionName=null, actionEntitySet=[], actionList=null, dataAccess=null)]), token=null, expireTime=null) +2024-09-23 16:31:50.474 [http-nio-8080-exec-3] ERROR c.g.h.config.GlobalExceptionHandler - No static resource auth/2step-code. +2024-09-23 16:32:22.963 [http-nio-8080-exec-2] DEBUG c.g.h.m.UserMapper.getUserByAccount - ==> Preparing: SELECT * from user_info where username=? AND status=1 +2024-09-23 16:32:22.964 [http-nio-8080-exec-2] DEBUG c.g.h.m.UserMapper.getUserByAccount - ==> Parameters: xrilang(String) +2024-09-23 16:32:22.965 [http-nio-8080-exec-2] DEBUG c.g.h.m.UserMapper.getUserByAccount - <== Total: 1 +2024-09-23 16:32:22.965 [http-nio-8080-exec-2] INFO c.g.h.service.impl.AuthServiceImpl - 查询到用户UserInfo(id=1, name=萌狼蓝天, username=xrilang, password=VomAhgnr1XAkMKzicqYxdCFBx0ooiXBN66Xq9XCWGJTsJgH3uLJVAVGkoZi2n1Ml, avatar=https://q1.qlogo.cn/g?b=qq&nk=3447902411&s=640, status=1, telephone=null, email=null, createTime=2024-09-22 06:31:02.0, merchantCode=null, deleted=0, roleId=root, creatorId=0) +2024-09-23 16:32:22.968 [http-nio-8080-exec-2] INFO c.g.h.service.impl.AuthServiceImpl - xrilang(xrilang)登录成功,id:1;身份:root +2024-09-23 16:32:22.968 [http-nio-8080-exec-2] INFO c.g.h.service.impl.AuthServiceImpl - Token:ed4a0f35-a45e-44e4-953e-9a796b9e3a90 +2024-09-23 16:32:23.229 [http-nio-8080-exec-1] INFO c.g.h.service.impl.UserServiceImpl - 查询用户1的用户信息 +2024-09-23 16:32:23.230 [http-nio-8080-exec-1] DEBUG c.g.h.mapper.UserMapper.getUserById - ==> Preparing: SELECT * from user_info where id=? AND status=1 +2024-09-23 16:32:23.230 [http-nio-8080-exec-1] DEBUG c.g.h.mapper.UserMapper.getUserById - ==> Parameters: 1(Long) +2024-09-23 16:32:23.231 [http-nio-8080-exec-1] DEBUG c.g.h.mapper.UserMapper.getUserById - <== Total: 1 +2024-09-23 16:32:23.231 [http-nio-8080-exec-1] DEBUG c.g.h.m.AuthMapper.getUserRoleById - ==> Preparing: SELECT * from system_role where role_id=? AND status=1 +2024-09-23 16:32:23.231 [http-nio-8080-exec-1] DEBUG c.g.h.m.AuthMapper.getUserRoleById - ==> Parameters: root(String) +2024-09-23 16:32:23.232 [http-nio-8080-exec-1] DEBUG c.g.h.m.AuthMapper.getUserRoleById - <== Total: 1 +2024-09-23 16:32:23.232 [http-nio-8080-exec-1] DEBUG c.g.h.m.A.getUserPermissionListByRoleId - ==> Preparing: select * from system_role_permission where role_id=? AND status=1 +2024-09-23 16:32:23.232 [http-nio-8080-exec-1] DEBUG c.g.h.m.A.getUserPermissionListByRoleId - ==> Parameters: root(String) +2024-09-23 16:32:23.233 [http-nio-8080-exec-1] DEBUG c.g.h.m.A.getUserPermissionListByRoleId - <== Total: 10 +2024-09-23 16:32:23.233 [http-nio-8080-exec-1] INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:com.guaiguailang.harmony.domain.entity.SystemPermission@3239ac93 +2024-09-23 16:32:23.233 [http-nio-8080-exec-1] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-23 16:32:23.233 [http-nio-8080-exec-1] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: dashboard(String), 1(Long) +2024-09-23 16:32:23.233 [http-nio-8080-exec-1] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 0 +2024-09-23 16:32:23.233 [http-nio-8080-exec-1] INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:com.guaiguailang.harmony.domain.entity.SystemPermission@3076ee7e +2024-09-23 16:32:23.234 [http-nio-8080-exec-1] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-23 16:32:23.234 [http-nio-8080-exec-1] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: exception(String), 1(Long) +2024-09-23 16:32:23.234 [http-nio-8080-exec-1] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 0 +2024-09-23 16:32:23.234 [http-nio-8080-exec-1] INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:com.guaiguailang.harmony.domain.entity.SystemPermission@5b9779dd +2024-09-23 16:32:23.234 [http-nio-8080-exec-1] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-23 16:32:23.234 [http-nio-8080-exec-1] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: result(String), 1(Long) +2024-09-23 16:32:23.235 [http-nio-8080-exec-1] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 0 +2024-09-23 16:32:23.235 [http-nio-8080-exec-1] INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:com.guaiguailang.harmony.domain.entity.SystemPermission@cf9b15a +2024-09-23 16:32:23.235 [http-nio-8080-exec-1] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-23 16:32:23.235 [http-nio-8080-exec-1] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: profile(String), 1(Long) +2024-09-23 16:32:23.235 [http-nio-8080-exec-1] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 0 +2024-09-23 16:32:23.235 [http-nio-8080-exec-1] INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:com.guaiguailang.harmony.domain.entity.SystemPermission@605e8e0d +2024-09-23 16:32:23.235 [http-nio-8080-exec-1] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-23 16:32:23.235 [http-nio-8080-exec-1] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: table(String), 1(Long) +2024-09-23 16:32:23.236 [http-nio-8080-exec-1] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 0 +2024-09-23 16:32:23.236 [http-nio-8080-exec-1] INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:com.guaiguailang.harmony.domain.entity.SystemPermission@779ba43e +2024-09-23 16:32:23.236 [http-nio-8080-exec-1] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-23 16:32:23.236 [http-nio-8080-exec-1] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: form(String), 1(Long) +2024-09-23 16:32:23.236 [http-nio-8080-exec-1] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 0 +2024-09-23 16:32:23.236 [http-nio-8080-exec-1] INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:com.guaiguailang.harmony.domain.entity.SystemPermission@594e10fb +2024-09-23 16:32:23.237 [http-nio-8080-exec-1] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-23 16:32:23.237 [http-nio-8080-exec-1] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: order(String), 1(Long) +2024-09-23 16:32:23.237 [http-nio-8080-exec-1] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 0 +2024-09-23 16:32:23.237 [http-nio-8080-exec-1] INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:com.guaiguailang.harmony.domain.entity.SystemPermission@88a6e8b +2024-09-23 16:32:23.238 [http-nio-8080-exec-1] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-23 16:32:23.238 [http-nio-8080-exec-1] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: permission(String), 1(Long) +2024-09-23 16:32:23.238 [http-nio-8080-exec-1] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 6 +2024-09-23 16:32:23.238 [http-nio-8080-exec-1] INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:com.guaiguailang.harmony.domain.entity.SystemPermission@4a78aac5 +2024-09-23 16:32:23.238 [http-nio-8080-exec-1] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-23 16:32:23.239 [http-nio-8080-exec-1] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: role(String), 1(Long) +2024-09-23 16:32:23.239 [http-nio-8080-exec-1] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 6 +2024-09-23 16:32:23.239 [http-nio-8080-exec-1] INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:com.guaiguailang.harmony.domain.entity.SystemPermission@6714d717 +2024-09-23 16:32:23.239 [http-nio-8080-exec-1] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-23 16:32:23.240 [http-nio-8080-exec-1] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: user(String), 1(Long) +2024-09-23 16:32:23.240 [http-nio-8080-exec-1] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 0 +2024-09-23 16:32:23.240 [http-nio-8080-exec-1] INFO c.g.h.service.impl.UserServiceImpl - UserInfoLogin(id=1, name=萌狼蓝天, username=xrilang, avatar=https://q1.qlogo.cn/g?b=qq&nk=3447902411&s=640, email=null, telephone=null, status=0, lastLoginIp=null, lastLoginTime=null, createTime=null, creator=null, merchantCode=null, roleId=root, role=RoleInfo(id=root, name=超级管理员, description=最高权限, status=0, creatorId=null, createTime=null, deleted=0, permissionInfo=[PermissionInfo(roleId=root, permissionId=dashboard, permissionName=null, actionEntitySet=[], actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=exception, permissionName=null, actionEntitySet=[], actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=result, permissionName=null, actionEntitySet=[], actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=profile, permissionName=null, actionEntitySet=[], actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=table, permissionName=null, actionEntitySet=[], actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=form, permissionName=null, actionEntitySet=[], actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=order, permissionName=null, actionEntitySet=[], actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=permission, permissionName=null, actionEntitySet=[ActionEntitySet(action=add, describe=新增, defaultCheck=false), ActionEntitySet(action=import, describe=导入, defaultCheck=false), ActionEntitySet(action=get, describe=详情, defaultCheck=false), ActionEntitySet(action=update, describe=更新, defaultCheck=false), ActionEntitySet(action=delete, describe=删除, defaultCheck=false), ActionEntitySet(action=export, describe=导出, defaultCheck=false)], actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=role, permissionName=null, actionEntitySet=[ActionEntitySet(action=add, describe=新增, defaultCheck=false), ActionEntitySet(action=import, describe=导入, defaultCheck=false), ActionEntitySet(action=get, describe=详情, defaultCheck=false), ActionEntitySet(action=update, describe=更新, defaultCheck=false), ActionEntitySet(action=delete, describe=删除, defaultCheck=false), ActionEntitySet(action=export, describe=导出, defaultCheck=false)], actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=user, permissionName=null, actionEntitySet=[], actionList=null, dataAccess=null)]), token=null, expireTime=null) +2024-09-23 16:33:46.633 [http-nio-8080-exec-4] ERROR c.g.h.config.GlobalExceptionHandler - No static resource auth/2step-code. +2024-09-23 16:34:06.790 [http-nio-8080-exec-5] DEBUG c.g.h.m.UserMapper.getUserByAccount - ==> Preparing: SELECT * from user_info where username=? AND status=1 +2024-09-23 16:34:06.790 [http-nio-8080-exec-5] DEBUG c.g.h.m.UserMapper.getUserByAccount - ==> Parameters: xrilang(String) +2024-09-23 16:34:06.791 [http-nio-8080-exec-5] DEBUG c.g.h.m.UserMapper.getUserByAccount - <== Total: 1 +2024-09-23 16:34:06.791 [http-nio-8080-exec-5] INFO c.g.h.service.impl.AuthServiceImpl - 查询到用户UserInfo(id=1, name=萌狼蓝天, username=xrilang, password=VomAhgnr1XAkMKzicqYxdCFBx0ooiXBN66Xq9XCWGJTsJgH3uLJVAVGkoZi2n1Ml, avatar=https://q1.qlogo.cn/g?b=qq&nk=3447902411&s=640, status=1, telephone=null, email=null, createTime=2024-09-22 06:31:02.0, merchantCode=null, deleted=0, roleId=root, creatorId=0) +2024-09-23 16:34:06.794 [http-nio-8080-exec-5] INFO c.g.h.service.impl.AuthServiceImpl - xrilang(xrilang)登录成功,id:1;身份:root +2024-09-23 16:34:06.795 [http-nio-8080-exec-5] INFO c.g.h.service.impl.AuthServiceImpl - Token:ea5f39e2-a15c-4388-8139-845c180e7e77 +2024-09-23 16:34:07.122 [http-nio-8080-exec-7] INFO c.g.h.service.impl.UserServiceImpl - 查询用户1的用户信息 +2024-09-23 16:34:07.123 [http-nio-8080-exec-7] DEBUG c.g.h.mapper.UserMapper.getUserById - ==> Preparing: SELECT * from user_info where id=? AND status=1 +2024-09-23 16:34:07.123 [http-nio-8080-exec-7] DEBUG c.g.h.mapper.UserMapper.getUserById - ==> Parameters: 1(Long) +2024-09-23 16:34:07.124 [http-nio-8080-exec-7] DEBUG c.g.h.mapper.UserMapper.getUserById - <== Total: 1 +2024-09-23 16:34:07.124 [http-nio-8080-exec-7] DEBUG c.g.h.m.AuthMapper.getUserRoleById - ==> Preparing: SELECT * from system_role where role_id=? AND status=1 +2024-09-23 16:34:07.125 [http-nio-8080-exec-7] DEBUG c.g.h.m.AuthMapper.getUserRoleById - ==> Parameters: root(String) +2024-09-23 16:34:07.125 [http-nio-8080-exec-7] DEBUG c.g.h.m.AuthMapper.getUserRoleById - <== Total: 1 +2024-09-23 16:34:07.125 [http-nio-8080-exec-7] DEBUG c.g.h.m.A.getUserPermissionListByRoleId - ==> Preparing: select * from system_role_permission where role_id=? AND status=1 +2024-09-23 16:34:07.125 [http-nio-8080-exec-7] DEBUG c.g.h.m.A.getUserPermissionListByRoleId - ==> Parameters: root(String) +2024-09-23 16:34:07.126 [http-nio-8080-exec-7] DEBUG c.g.h.m.A.getUserPermissionListByRoleId - <== Total: 10 +2024-09-23 16:34:07.126 [http-nio-8080-exec-7] INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:com.guaiguailang.harmony.domain.entity.SystemPermission@4e23824e +2024-09-23 16:34:07.126 [http-nio-8080-exec-7] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-23 16:34:07.126 [http-nio-8080-exec-7] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: dashboard(String), 1(Long) +2024-09-23 16:34:07.126 [http-nio-8080-exec-7] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 0 +2024-09-23 16:34:07.126 [http-nio-8080-exec-7] INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:com.guaiguailang.harmony.domain.entity.SystemPermission@1f396395 +2024-09-23 16:34:07.127 [http-nio-8080-exec-7] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-23 16:34:07.127 [http-nio-8080-exec-7] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: exception(String), 1(Long) +2024-09-23 16:34:07.127 [http-nio-8080-exec-7] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 0 +2024-09-23 16:34:07.127 [http-nio-8080-exec-7] INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:com.guaiguailang.harmony.domain.entity.SystemPermission@dea1d40 +2024-09-23 16:34:07.127 [http-nio-8080-exec-7] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-23 16:34:07.127 [http-nio-8080-exec-7] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: result(String), 1(Long) +2024-09-23 16:34:07.128 [http-nio-8080-exec-7] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 0 +2024-09-23 16:34:07.128 [http-nio-8080-exec-7] INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:com.guaiguailang.harmony.domain.entity.SystemPermission@1b77980d +2024-09-23 16:34:07.128 [http-nio-8080-exec-7] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-23 16:34:07.128 [http-nio-8080-exec-7] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: profile(String), 1(Long) +2024-09-23 16:34:07.128 [http-nio-8080-exec-7] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 0 +2024-09-23 16:34:07.128 [http-nio-8080-exec-7] INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:com.guaiguailang.harmony.domain.entity.SystemPermission@579a9b56 +2024-09-23 16:34:07.128 [http-nio-8080-exec-7] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-23 16:34:07.129 [http-nio-8080-exec-7] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: table(String), 1(Long) +2024-09-23 16:34:07.129 [http-nio-8080-exec-7] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 0 +2024-09-23 16:34:07.129 [http-nio-8080-exec-7] INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:com.guaiguailang.harmony.domain.entity.SystemPermission@c0dcf6f +2024-09-23 16:34:07.129 [http-nio-8080-exec-7] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-23 16:34:07.129 [http-nio-8080-exec-7] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: form(String), 1(Long) +2024-09-23 16:34:07.130 [http-nio-8080-exec-7] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 0 +2024-09-23 16:34:07.130 [http-nio-8080-exec-7] INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:com.guaiguailang.harmony.domain.entity.SystemPermission@3985c097 +2024-09-23 16:34:07.130 [http-nio-8080-exec-7] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-23 16:34:07.130 [http-nio-8080-exec-7] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: order(String), 1(Long) +2024-09-23 16:34:07.130 [http-nio-8080-exec-7] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 0 +2024-09-23 16:34:07.130 [http-nio-8080-exec-7] INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:com.guaiguailang.harmony.domain.entity.SystemPermission@1c24ee5d +2024-09-23 16:34:07.130 [http-nio-8080-exec-7] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-23 16:34:07.130 [http-nio-8080-exec-7] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: permission(String), 1(Long) +2024-09-23 16:34:07.131 [http-nio-8080-exec-7] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 6 +2024-09-23 16:34:07.131 [http-nio-8080-exec-7] INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:com.guaiguailang.harmony.domain.entity.SystemPermission@49e09d9 +2024-09-23 16:34:07.131 [http-nio-8080-exec-7] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-23 16:34:07.131 [http-nio-8080-exec-7] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: role(String), 1(Long) +2024-09-23 16:34:07.132 [http-nio-8080-exec-7] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 6 +2024-09-23 16:34:07.132 [http-nio-8080-exec-7] INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:com.guaiguailang.harmony.domain.entity.SystemPermission@40becc10 +2024-09-23 16:34:07.132 [http-nio-8080-exec-7] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-23 16:34:07.132 [http-nio-8080-exec-7] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: user(String), 1(Long) +2024-09-23 16:34:07.132 [http-nio-8080-exec-7] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 0 +2024-09-23 16:34:07.132 [http-nio-8080-exec-7] INFO c.g.h.service.impl.UserServiceImpl - UserInfoLogin(id=1, name=萌狼蓝天, username=xrilang, avatar=https://q1.qlogo.cn/g?b=qq&nk=3447902411&s=640, email=null, telephone=null, status=0, lastLoginIp=null, lastLoginTime=null, createTime=null, creator=null, merchantCode=null, roleId=root, role=RoleInfo(id=root, name=超级管理员, description=最高权限, status=0, creatorId=null, createTime=null, deleted=0, permissionInfo=[PermissionInfo(roleId=root, permissionId=dashboard, permissionName=null, actionEntitySet=[], actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=exception, permissionName=null, actionEntitySet=[], actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=result, permissionName=null, actionEntitySet=[], actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=profile, permissionName=null, actionEntitySet=[], actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=table, permissionName=null, actionEntitySet=[], actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=form, permissionName=null, actionEntitySet=[], actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=order, permissionName=null, actionEntitySet=[], actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=permission, permissionName=null, actionEntitySet=[ActionEntitySet(action=add, describe=新增, defaultCheck=false), ActionEntitySet(action=import, describe=导入, defaultCheck=false), ActionEntitySet(action=get, describe=详情, defaultCheck=false), ActionEntitySet(action=update, describe=更新, defaultCheck=false), ActionEntitySet(action=delete, describe=删除, defaultCheck=false), ActionEntitySet(action=export, describe=导出, defaultCheck=false)], actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=role, permissionName=null, actionEntitySet=[ActionEntitySet(action=add, describe=新增, defaultCheck=false), ActionEntitySet(action=import, describe=导入, defaultCheck=false), ActionEntitySet(action=get, describe=详情, defaultCheck=false), ActionEntitySet(action=update, describe=更新, defaultCheck=false), ActionEntitySet(action=delete, describe=删除, defaultCheck=false), ActionEntitySet(action=export, describe=导出, defaultCheck=false)], actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=user, permissionName=null, actionEntitySet=[], actionList=null, dataAccess=null)]), token=null, expireTime=null) +2024-09-23 16:36:05.107 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown initiated... +2024-09-23 16:36:05.113 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown completed. +2024-09-23 16:36:18.243 [main] INFO o.s.boot.SpringApplication - +██╗ ██╗██████╗ ██╗██╗ █████╗ ███╗ ██╗ ██████╗ +╚██╗██╔╝██╔══██╗██║██║ ██╔══██╗████╗ ██║██╔════╝ + ╚███╔╝ ██████╔╝██║██║ ███████║██╔██╗ ██║██║ ███╗ + ██╔██╗ ██╔══██╗██║██║ ██╔══██║██║╚██╗██║██║ ██║ +██╔╝ ██╗██║ ██║██║███████╗██║ ██║██║ ╚████║╚██████╔╝ +╚═╝ ╚═╝╚═╝ ╚═╝╚═╝╚══════╝╚═╝ ╚═╝╚═╝ ╚═══╝ ╚═════╝ + +^_^ 服务启动成功 He Sheng +# 项目名称:harmony-life-server +# 项目版本:1.0.0 +# 框架版本:3.3.4 +# 最后更新于 2024年 9月 25日 + + +2024-09-23 16:36:18.288 [main] INFO c.g.h.HarmonyLifeServerApplication - Starting HarmonyLifeServerApplication using Java 17.0.8 with PID 12680 (C:\Users\xrilang\Desktop\harmony-life\harmony-life-server\harmony-life-server\target\classes started by xrilang in C:\Users\xrilang\Desktop\harmony-life\harmony-life-server\harmony-life-server) +2024-09-23 16:36:18.288 [main] DEBUG c.g.h.HarmonyLifeServerApplication - Running with Spring Boot v3.3.4, Spring v6.1.13 +2024-09-23 16:36:18.289 [main] INFO c.g.h.HarmonyLifeServerApplication - No active profile set, falling back to 1 default profile: "default" +2024-09-23 16:36:18.827 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode +2024-09-23 16:36:18.828 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data JDBC repositories in DEFAULT mode. +2024-09-23 16:36:18.847 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 10 ms. Found 0 JDBC repository interfaces. +2024-09-23 16:36:18.857 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode +2024-09-23 16:36:18.858 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2024-09-23 16:36:18.870 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 5 ms. Found 0 Redis repository interfaces. +2024-09-23 16:36:19.332 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat initialized with port 8080 (http) +2024-09-23 16:36:19.341 [main] INFO o.a.coyote.http11.Http11NioProtocol - Initializing ProtocolHandler ["http-nio-8080"] +2024-09-23 16:36:19.344 [main] INFO o.a.catalina.core.StandardService - Starting service [Tomcat] +2024-09-23 16:36:19.344 [main] INFO o.a.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/10.1.30] +2024-09-23 16:36:19.407 [main] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring embedded WebApplicationContext +2024-09-23 16:36:19.407 [main] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 1087 ms +2024-09-23 16:36:20.127 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Starting... +2024-09-23 16:36:20.220 [main] INFO com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - Added connection com.mysql.cj.jdbc.ConnectionImpl@13f2d42c +2024-09-23 16:36:20.221 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Start completed. +2024-09-23 16:36:20.337 [main] INFO o.a.coyote.http11.Http11NioProtocol - Starting ProtocolHandler ["http-nio-8080"] +2024-09-23 16:36:20.351 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat started on port 8080 (http) with context path '/' +2024-09-23 16:36:20.357 [main] INFO c.g.h.HarmonyLifeServerApplication - Started HarmonyLifeServerApplication in 2.415 seconds (process running for 2.872) +2024-09-23 16:36:50.619 [http-nio-8080-exec-1] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring DispatcherServlet 'dispatcherServlet' +2024-09-23 16:36:50.619 [http-nio-8080-exec-1] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet' +2024-09-23 16:36:50.620 [http-nio-8080-exec-1] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 1 ms +2024-09-23 16:36:50.701 [http-nio-8080-exec-1] DEBUG c.g.h.m.UserMapper.getUserByAccount - ==> Preparing: SELECT * from user_info where username=? AND status=1 +2024-09-23 16:36:50.718 [http-nio-8080-exec-1] DEBUG c.g.h.m.UserMapper.getUserByAccount - ==> Parameters: xrilang(String) +2024-09-23 16:36:50.739 [http-nio-8080-exec-1] DEBUG c.g.h.m.UserMapper.getUserByAccount - <== Total: 1 +2024-09-23 16:36:50.742 [http-nio-8080-exec-1] INFO c.g.h.service.impl.AuthServiceImpl - 查询到用户UserInfo(id=1, name=萌狼蓝天, username=xrilang, password=VomAhgnr1XAkMKzicqYxdCFBx0ooiXBN66Xq9XCWGJTsJgH3uLJVAVGkoZi2n1Ml, avatar=https://q1.qlogo.cn/g?b=qq&nk=3447902411&s=640, status=1, telephone=null, email=null, createTime=2024-09-22 06:31:02.0, merchantCode=null, deleted=0, roleId=root, creatorId=0) +2024-09-23 16:36:51.116 [http-nio-8080-exec-1] INFO c.g.h.service.impl.AuthServiceImpl - xrilang(xrilang)登录成功,id:1;身份:root +2024-09-23 16:36:51.117 [http-nio-8080-exec-1] INFO c.g.h.service.impl.AuthServiceImpl - Token:ea5f39e2-a15c-4388-8139-845c180e7e77 +2024-09-23 16:36:51.143 [http-nio-8080-exec-2] INFO c.g.h.service.impl.UserServiceImpl - 查询用户1的用户信息 +2024-09-23 16:36:51.145 [http-nio-8080-exec-2] DEBUG c.g.h.mapper.UserMapper.getUserById - ==> Preparing: SELECT * from user_info where id=? AND status=1 +2024-09-23 16:36:51.145 [http-nio-8080-exec-2] DEBUG c.g.h.mapper.UserMapper.getUserById - ==> Parameters: 1(Long) +2024-09-23 16:36:51.147 [http-nio-8080-exec-2] DEBUG c.g.h.mapper.UserMapper.getUserById - <== Total: 1 +2024-09-23 16:36:51.148 [http-nio-8080-exec-2] DEBUG c.g.h.m.AuthMapper.getUserRoleById - ==> Preparing: SELECT * from system_role where role_id=? AND status=1 +2024-09-23 16:36:51.148 [http-nio-8080-exec-2] DEBUG c.g.h.m.AuthMapper.getUserRoleById - ==> Parameters: root(String) +2024-09-23 16:36:51.151 [http-nio-8080-exec-2] DEBUG c.g.h.m.AuthMapper.getUserRoleById - <== Total: 1 +2024-09-23 16:36:51.152 [http-nio-8080-exec-2] DEBUG c.g.h.m.A.getUserPermissionListByRoleId - ==> Preparing: select * from system_role_permission where role_id=? AND status=1 +2024-09-23 16:36:51.152 [http-nio-8080-exec-2] DEBUG c.g.h.m.A.getUserPermissionListByRoleId - ==> Parameters: root(String) +2024-09-23 16:36:51.155 [http-nio-8080-exec-2] DEBUG c.g.h.m.A.getUserPermissionListByRoleId - <== Total: 10 +2024-09-23 16:36:51.155 [http-nio-8080-exec-2] INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:com.guaiguailang.harmony.domain.entity.SystemPermission@54396177 +2024-09-23 16:36:51.155 [http-nio-8080-exec-2] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-23 16:36:51.156 [http-nio-8080-exec-2] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: dashboard(String), 1(Long) +2024-09-23 16:36:51.160 [http-nio-8080-exec-2] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 0 +2024-09-23 16:36:51.161 [http-nio-8080-exec-2] INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:com.guaiguailang.harmony.domain.entity.SystemPermission@74a9e742 +2024-09-23 16:36:51.161 [http-nio-8080-exec-2] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-23 16:36:51.161 [http-nio-8080-exec-2] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: exception(String), 1(Long) +2024-09-23 16:36:51.162 [http-nio-8080-exec-2] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 0 +2024-09-23 16:36:51.162 [http-nio-8080-exec-2] INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:com.guaiguailang.harmony.domain.entity.SystemPermission@7a11e005 +2024-09-23 16:36:51.162 [http-nio-8080-exec-2] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-23 16:36:51.162 [http-nio-8080-exec-2] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: result(String), 1(Long) +2024-09-23 16:36:51.162 [http-nio-8080-exec-2] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 0 +2024-09-23 16:36:51.163 [http-nio-8080-exec-2] INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:com.guaiguailang.harmony.domain.entity.SystemPermission@459a4e4 +2024-09-23 16:36:51.163 [http-nio-8080-exec-2] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-23 16:36:51.163 [http-nio-8080-exec-2] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: profile(String), 1(Long) +2024-09-23 16:36:51.163 [http-nio-8080-exec-2] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 0 +2024-09-23 16:36:51.163 [http-nio-8080-exec-2] INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:com.guaiguailang.harmony.domain.entity.SystemPermission@743c0ef2 +2024-09-23 16:36:51.163 [http-nio-8080-exec-2] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-23 16:36:51.164 [http-nio-8080-exec-2] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: table(String), 1(Long) +2024-09-23 16:36:51.164 [http-nio-8080-exec-2] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 0 +2024-09-23 16:36:51.164 [http-nio-8080-exec-2] INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:com.guaiguailang.harmony.domain.entity.SystemPermission@cf691ad +2024-09-23 16:36:51.164 [http-nio-8080-exec-2] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-23 16:36:51.164 [http-nio-8080-exec-2] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: form(String), 1(Long) +2024-09-23 16:36:51.165 [http-nio-8080-exec-2] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 0 +2024-09-23 16:36:51.165 [http-nio-8080-exec-2] INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:com.guaiguailang.harmony.domain.entity.SystemPermission@5f8e4bd6 +2024-09-23 16:36:51.165 [http-nio-8080-exec-2] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-23 16:36:51.166 [http-nio-8080-exec-2] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: order(String), 1(Long) +2024-09-23 16:36:51.166 [http-nio-8080-exec-2] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 0 +2024-09-23 16:36:51.166 [http-nio-8080-exec-2] INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:com.guaiguailang.harmony.domain.entity.SystemPermission@2959517e +2024-09-23 16:36:51.166 [http-nio-8080-exec-2] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-23 16:36:51.166 [http-nio-8080-exec-2] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: permission(String), 1(Long) +2024-09-23 16:36:51.168 [http-nio-8080-exec-2] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 6 +2024-09-23 16:36:51.168 [http-nio-8080-exec-2] INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:com.guaiguailang.harmony.domain.entity.SystemPermission@430c9a71 +2024-09-23 16:36:51.168 [http-nio-8080-exec-2] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-23 16:36:51.168 [http-nio-8080-exec-2] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: role(String), 1(Long) +2024-09-23 16:36:51.170 [http-nio-8080-exec-2] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 6 +2024-09-23 16:36:51.170 [http-nio-8080-exec-2] INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:com.guaiguailang.harmony.domain.entity.SystemPermission@5dd571b3 +2024-09-23 16:36:51.170 [http-nio-8080-exec-2] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-23 16:36:51.170 [http-nio-8080-exec-2] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: user(String), 1(Long) +2024-09-23 16:36:51.171 [http-nio-8080-exec-2] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 0 +2024-09-23 16:36:51.178 [http-nio-8080-exec-2] INFO c.g.h.service.impl.UserServiceImpl - UserInfoLogin(id=1, name=萌狼蓝天, username=xrilang, avatar=https://q1.qlogo.cn/g?b=qq&nk=3447902411&s=640, email=null, telephone=null, status=0, lastLoginIp=null, lastLoginTime=null, createTime=null, creator=null, merchantCode=null, roleId=root, role=RoleInfo(id=root, name=超级管理员, description=最高权限, status=0, creatorId=null, createTime=null, deleted=0, permissions=[PermissionInfo(roleId=root, permissionId=dashboard, permissionName=null, actionEntitySet=[], actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=exception, permissionName=null, actionEntitySet=[], actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=result, permissionName=null, actionEntitySet=[], actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=profile, permissionName=null, actionEntitySet=[], actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=table, permissionName=null, actionEntitySet=[], actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=form, permissionName=null, actionEntitySet=[], actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=order, permissionName=null, actionEntitySet=[], actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=permission, permissionName=null, actionEntitySet=[ActionEntitySet(action=add, describe=新增, defaultCheck=false), ActionEntitySet(action=import, describe=导入, defaultCheck=false), ActionEntitySet(action=get, describe=详情, defaultCheck=false), ActionEntitySet(action=update, describe=更新, defaultCheck=false), ActionEntitySet(action=delete, describe=删除, defaultCheck=false), ActionEntitySet(action=export, describe=导出, defaultCheck=false)], actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=role, permissionName=null, actionEntitySet=[ActionEntitySet(action=add, describe=新增, defaultCheck=false), ActionEntitySet(action=import, describe=导入, defaultCheck=false), ActionEntitySet(action=get, describe=详情, defaultCheck=false), ActionEntitySet(action=update, describe=更新, defaultCheck=false), ActionEntitySet(action=delete, describe=删除, defaultCheck=false), ActionEntitySet(action=export, describe=导出, defaultCheck=false)], actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=user, permissionName=null, actionEntitySet=[], actionList=null, dataAccess=null)]), token=null, expireTime=null) +2024-09-23 16:36:51.903 [http-nio-8080-exec-4] ERROR c.g.h.config.GlobalExceptionHandler - No static resource role. +2024-09-23 16:36:51.904 [http-nio-8080-exec-3] ERROR c.g.h.config.GlobalExceptionHandler - No static resource service. +2024-09-23 16:36:51.911 [http-nio-8080-exec-6] ERROR c.g.h.config.GlobalExceptionHandler - No static resource workplace/activity. +2024-09-23 16:36:51.912 [http-nio-8080-exec-5] ERROR c.g.h.config.GlobalExceptionHandler - No static resource list/search/projects. +2024-09-23 16:36:52.220 [http-nio-8080-exec-8] ERROR c.g.h.config.GlobalExceptionHandler - No static resource workplace/teams. +2024-09-23 16:36:52.220 [http-nio-8080-exec-9] ERROR c.g.h.config.GlobalExceptionHandler - No static resource workplace/radar. +2024-09-23 16:45:56.492 [http-nio-8080-exec-7] ERROR c.g.h.config.GlobalExceptionHandler - No static resource workplace/teams. +2024-09-23 17:15:45.728 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown initiated... +2024-09-23 17:15:45.732 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown completed. +2024-09-23 17:15:49.898 [main] INFO o.s.boot.SpringApplication - +██╗ ██╗██████╗ ██╗██╗ █████╗ ███╗ ██╗ ██████╗ +╚██╗██╔╝██╔══██╗██║██║ ██╔══██╗████╗ ██║██╔════╝ + ╚███╔╝ ██████╔╝██║██║ ███████║██╔██╗ ██║██║ ███╗ + ██╔██╗ ██╔══██╗██║██║ ██╔══██║██║╚██╗██║██║ ██║ +██╔╝ ██╗██║ ██║██║███████╗██║ ██║██║ ╚████║╚██████╔╝ +╚═╝ ╚═╝╚═╝ ╚═╝╚═╝╚══════╝╚═╝ ╚═╝╚═╝ ╚═══╝ ╚═════╝ + +^_^ 服务启动成功 He Sheng +# 项目名称:harmony-life-server +# 项目版本:1.0.0 +# 框架版本:3.3.4 +# 最后更新于 2024年 9月 25日 + + +2024-09-23 17:15:49.943 [main] INFO c.g.h.HarmonyLifeServerApplication - Starting HarmonyLifeServerApplication using Java 17.0.8 with PID 29296 (C:\Users\xrilang\Desktop\harmony-life\harmony-life-server\harmony-life-server\target\classes started by xrilang in C:\Users\xrilang\Desktop\harmony-life\harmony-life-server\harmony-life-server) +2024-09-23 17:15:49.943 [main] DEBUG c.g.h.HarmonyLifeServerApplication - Running with Spring Boot v3.3.4, Spring v6.1.13 +2024-09-23 17:15:49.944 [main] INFO c.g.h.HarmonyLifeServerApplication - No active profile set, falling back to 1 default profile: "default" +2024-09-23 17:15:50.517 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode +2024-09-23 17:15:50.517 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data JDBC repositories in DEFAULT mode. +2024-09-23 17:15:50.528 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 8 ms. Found 0 JDBC repository interfaces. +2024-09-23 17:15:50.538 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode +2024-09-23 17:15:50.539 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2024-09-23 17:15:50.551 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 4 ms. Found 0 Redis repository interfaces. +2024-09-23 17:15:50.993 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat initialized with port 8080 (http) +2024-09-23 17:15:51.000 [main] INFO o.a.coyote.http11.Http11NioProtocol - Initializing ProtocolHandler ["http-nio-8080"] +2024-09-23 17:15:51.003 [main] INFO o.a.catalina.core.StandardService - Starting service [Tomcat] +2024-09-23 17:15:51.003 [main] INFO o.a.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/10.1.30] +2024-09-23 17:15:51.060 [main] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring embedded WebApplicationContext +2024-09-23 17:15:51.061 [main] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 1085 ms +2024-09-23 17:15:51.777 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Starting... +2024-09-23 17:15:51.878 [main] INFO com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - Added connection com.mysql.cj.jdbc.ConnectionImpl@6cb662e8 +2024-09-23 17:15:51.879 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Start completed. +2024-09-23 17:15:51.986 [main] INFO o.a.coyote.http11.Http11NioProtocol - Starting ProtocolHandler ["http-nio-8080"] +2024-09-23 17:15:52.000 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat started on port 8080 (http) with context path '/' +2024-09-23 17:15:52.006 [main] INFO c.g.h.HarmonyLifeServerApplication - Started HarmonyLifeServerApplication in 2.403 seconds (process running for 2.843) +2024-09-23 17:23:38.263 [http-nio-8080-exec-1] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring DispatcherServlet 'dispatcherServlet' +2024-09-23 17:23:38.263 [http-nio-8080-exec-1] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet' +2024-09-23 17:23:38.264 [http-nio-8080-exec-1] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 1 ms +2024-09-23 17:23:38.614 [http-nio-8080-exec-1] INFO c.g.h.service.impl.UserServiceImpl - 查询用户1的用户信息 +2024-09-23 17:23:38.625 [http-nio-8080-exec-1] DEBUG c.g.h.mapper.UserMapper.getUserById - ==> Preparing: SELECT * from user_info where id=? AND status=1 +2024-09-23 17:23:38.639 [http-nio-8080-exec-1] DEBUG c.g.h.mapper.UserMapper.getUserById - ==> Parameters: 1(Long) +2024-09-23 17:23:38.659 [http-nio-8080-exec-1] DEBUG c.g.h.mapper.UserMapper.getUserById - <== Total: 1 +2024-09-23 17:23:38.661 [http-nio-8080-exec-1] DEBUG c.g.h.m.AuthMapper.getUserRoleById - ==> Preparing: SELECT * from system_role where role_id=? AND status=1 +2024-09-23 17:23:38.661 [http-nio-8080-exec-1] DEBUG c.g.h.m.AuthMapper.getUserRoleById - ==> Parameters: root(String) +2024-09-23 17:23:38.664 [http-nio-8080-exec-1] DEBUG c.g.h.m.AuthMapper.getUserRoleById - <== Total: 1 +2024-09-23 17:23:38.665 [http-nio-8080-exec-1] DEBUG c.g.h.m.A.getUserPermissionListByRoleId - ==> Preparing: select * from system_role_permission where role_id=? AND status=1 +2024-09-23 17:23:38.666 [http-nio-8080-exec-1] DEBUG c.g.h.m.A.getUserPermissionListByRoleId - ==> Parameters: root(String) +2024-09-23 17:23:38.668 [http-nio-8080-exec-1] DEBUG c.g.h.m.A.getUserPermissionListByRoleId - <== Total: 1 +2024-09-23 17:23:38.669 [http-nio-8080-exec-1] INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:SystemPermission(id=1, permissionId=dashboard, permissionName=null, status=1) +2024-09-23 17:23:38.669 [http-nio-8080-exec-1] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-23 17:23:38.670 [http-nio-8080-exec-1] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: dashboard(String), 1(Long) +2024-09-23 17:23:38.673 [http-nio-8080-exec-1] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 0 +2024-09-23 17:23:38.678 [http-nio-8080-exec-1] INFO c.g.h.service.impl.UserServiceImpl - UserInfoLogin(id=1, name=萌狼蓝天, username=xrilang, avatar=https://q1.qlogo.cn/g?b=qq&nk=3447902411&s=640, email=null, telephone=null, status=0, lastLoginIp=null, lastLoginTime=null, createTime=null, creator=null, merchantCode=null, roleId=root, role=RoleInfo(id=root, name=超级管理员, description=最高权限, status=0, creatorId=null, createTime=null, deleted=0, permissions=[PermissionInfo(roleId=root, permissionId=dashboard, permissionName=null, actionEntitySet=[], actionList=null, dataAccess=null)]), token=null, expireTime=null) +2024-09-23 17:23:44.705 [http-nio-8080-exec-2] INFO c.g.h.service.impl.UserServiceImpl - 查询用户1的用户信息 +2024-09-23 17:23:44.706 [http-nio-8080-exec-2] DEBUG c.g.h.mapper.UserMapper.getUserById - ==> Preparing: SELECT * from user_info where id=? AND status=1 +2024-09-23 17:23:44.707 [http-nio-8080-exec-2] DEBUG c.g.h.mapper.UserMapper.getUserById - ==> Parameters: 1(Long) +2024-09-23 17:23:44.708 [http-nio-8080-exec-2] DEBUG c.g.h.mapper.UserMapper.getUserById - <== Total: 1 +2024-09-23 17:23:44.708 [http-nio-8080-exec-2] DEBUG c.g.h.m.AuthMapper.getUserRoleById - ==> Preparing: SELECT * from system_role where role_id=? AND status=1 +2024-09-23 17:23:44.708 [http-nio-8080-exec-2] DEBUG c.g.h.m.AuthMapper.getUserRoleById - ==> Parameters: root(String) +2024-09-23 17:23:44.709 [http-nio-8080-exec-2] DEBUG c.g.h.m.AuthMapper.getUserRoleById - <== Total: 1 +2024-09-23 17:23:44.709 [http-nio-8080-exec-2] DEBUG c.g.h.m.A.getUserPermissionListByRoleId - ==> Preparing: select * from system_role_permission where role_id=? AND status=1 +2024-09-23 17:23:44.709 [http-nio-8080-exec-2] DEBUG c.g.h.m.A.getUserPermissionListByRoleId - ==> Parameters: root(String) +2024-09-23 17:23:44.710 [http-nio-8080-exec-2] DEBUG c.g.h.m.A.getUserPermissionListByRoleId - <== Total: 1 +2024-09-23 17:23:44.710 [http-nio-8080-exec-2] INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:SystemPermission(id=1, permissionId=dashboard, permissionName=null, status=1) +2024-09-23 17:23:44.710 [http-nio-8080-exec-2] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-23 17:23:44.710 [http-nio-8080-exec-2] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: dashboard(String), 1(Long) +2024-09-23 17:23:44.711 [http-nio-8080-exec-2] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 0 +2024-09-23 17:23:44.711 [http-nio-8080-exec-2] INFO c.g.h.service.impl.UserServiceImpl - UserInfoLogin(id=1, name=萌狼蓝天, username=xrilang, avatar=https://q1.qlogo.cn/g?b=qq&nk=3447902411&s=640, email=null, telephone=null, status=0, lastLoginIp=null, lastLoginTime=null, createTime=null, creator=null, merchantCode=null, roleId=root, role=RoleInfo(id=root, name=超级管理员, description=最高权限, status=0, creatorId=null, createTime=null, deleted=0, permissions=[PermissionInfo(roleId=root, permissionId=dashboard, permissionName=null, actionEntitySet=[], actionList=null, dataAccess=null)]), token=null, expireTime=null) +2024-09-23 17:23:45.132 [http-nio-8080-exec-7] ERROR c.g.h.config.GlobalExceptionHandler - No static resource role. +2024-09-23 17:23:45.132 [http-nio-8080-exec-4] ERROR c.g.h.config.GlobalExceptionHandler - No static resource service. +2024-09-23 17:23:45.135 [http-nio-8080-exec-5] ERROR c.g.h.config.GlobalExceptionHandler - No static resource list/search/projects. +2024-09-23 17:23:45.446 [http-nio-8080-exec-6] ERROR c.g.h.config.GlobalExceptionHandler - No static resource workplace/teams. +2024-09-23 17:23:45.446 [http-nio-8080-exec-3] ERROR c.g.h.config.GlobalExceptionHandler - No static resource workplace/radar. +2024-09-23 17:23:45.446 [http-nio-8080-exec-8] ERROR c.g.h.config.GlobalExceptionHandler - No static resource workplace/activity. +2024-09-23 17:23:57.505 [http-nio-8080-exec-9] ERROR c.g.h.config.GlobalExceptionHandler - No static resource role. +2024-09-23 17:23:57.807 [http-nio-8080-exec-4] ERROR c.g.h.config.GlobalExceptionHandler - No static resource workplace/radar. +2024-09-23 17:23:57.808 [http-nio-8080-exec-10] ERROR c.g.h.config.GlobalExceptionHandler - No static resource service. +2024-09-23 17:23:57.809 [http-nio-8080-exec-2] ERROR c.g.h.config.GlobalExceptionHandler - No static resource workplace/activity. +2024-09-23 17:23:57.809 [http-nio-8080-exec-7] ERROR c.g.h.config.GlobalExceptionHandler - No static resource workplace/teams. +2024-09-23 17:23:57.810 [http-nio-8080-exec-1] ERROR c.g.h.config.GlobalExceptionHandler - No static resource list/search/projects. +2024-09-23 17:33:31.858 [http-nio-8080-exec-5] INFO c.g.h.service.impl.UserServiceImpl - 查询用户1的用户信息 +2024-09-23 17:33:31.860 [http-nio-8080-exec-5] DEBUG c.g.h.mapper.UserMapper.getUserById - ==> Preparing: SELECT * from user_info where id=? AND status=1 +2024-09-23 17:33:31.860 [http-nio-8080-exec-5] DEBUG c.g.h.mapper.UserMapper.getUserById - ==> Parameters: 1(Long) +2024-09-23 17:33:31.861 [http-nio-8080-exec-5] DEBUG c.g.h.mapper.UserMapper.getUserById - <== Total: 1 +2024-09-23 17:33:31.862 [http-nio-8080-exec-5] DEBUG c.g.h.m.AuthMapper.getUserRoleById - ==> Preparing: SELECT * from system_role where role_id=? AND status=1 +2024-09-23 17:33:31.862 [http-nio-8080-exec-5] DEBUG c.g.h.m.AuthMapper.getUserRoleById - ==> Parameters: root(String) +2024-09-23 17:33:31.863 [http-nio-8080-exec-5] DEBUG c.g.h.m.AuthMapper.getUserRoleById - <== Total: 1 +2024-09-23 17:33:31.863 [http-nio-8080-exec-5] DEBUG c.g.h.m.A.getUserPermissionListByRoleId - ==> Preparing: select * from system_role_permission where role_id=? AND status=1 +2024-09-23 17:33:31.864 [http-nio-8080-exec-5] DEBUG c.g.h.m.A.getUserPermissionListByRoleId - ==> Parameters: root(String) +2024-09-23 17:33:31.864 [http-nio-8080-exec-5] DEBUG c.g.h.m.A.getUserPermissionListByRoleId - <== Total: 4 +2024-09-23 17:33:31.865 [http-nio-8080-exec-5] INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:SystemPermission(id=1, permissionId=dashboard, permissionName=null, status=1) +2024-09-23 17:33:31.865 [http-nio-8080-exec-5] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-23 17:33:31.865 [http-nio-8080-exec-5] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: dashboard(String), 1(Long) +2024-09-23 17:33:31.865 [http-nio-8080-exec-5] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 0 +2024-09-23 17:33:31.866 [http-nio-8080-exec-5] INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:SystemPermission(id=9, permissionId=role, permissionName=null, status=1) +2024-09-23 17:33:31.866 [http-nio-8080-exec-5] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-23 17:33:31.866 [http-nio-8080-exec-5] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: role(String), 1(Long) +2024-09-23 17:33:31.867 [http-nio-8080-exec-5] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 6 +2024-09-23 17:33:31.867 [http-nio-8080-exec-5] INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:SystemPermission(id=10, permissionId=user, permissionName=null, status=1) +2024-09-23 17:33:31.868 [http-nio-8080-exec-5] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-23 17:33:31.868 [http-nio-8080-exec-5] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: user(String), 1(Long) +2024-09-23 17:33:31.869 [http-nio-8080-exec-5] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 0 +2024-09-23 17:33:31.869 [http-nio-8080-exec-5] INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:SystemPermission(id=11, permissionId=system, permissionName=null, status=1) +2024-09-23 17:33:31.869 [http-nio-8080-exec-5] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-23 17:33:31.869 [http-nio-8080-exec-5] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: system(String), 1(Long) +2024-09-23 17:33:31.870 [http-nio-8080-exec-5] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 0 +2024-09-23 17:33:31.872 [http-nio-8080-exec-5] INFO c.g.h.service.impl.UserServiceImpl - UserInfoLogin(id=1, name=萌狼蓝天, username=xrilang, avatar=https://q1.qlogo.cn/g?b=qq&nk=3447902411&s=640, email=null, telephone=null, status=0, lastLoginIp=null, lastLoginTime=null, createTime=null, creator=null, merchantCode=null, roleId=root, role=RoleInfo(id=root, name=超级管理员, description=最高权限, status=0, creatorId=null, createTime=null, deleted=0, permissions=[PermissionInfo(roleId=root, permissionId=dashboard, permissionName=null, actionEntitySet=[], actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=role, permissionName=null, actionEntitySet=[ActionEntitySet(action=add, describe=新增, defaultCheck=false), ActionEntitySet(action=import, describe=导入, defaultCheck=false), ActionEntitySet(action=get, describe=详情, defaultCheck=false), ActionEntitySet(action=update, describe=更新, defaultCheck=false), ActionEntitySet(action=delete, describe=删除, defaultCheck=false), ActionEntitySet(action=export, describe=导出, defaultCheck=false)], actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=user, permissionName=null, actionEntitySet=[], actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=system, permissionName=null, actionEntitySet=[], actionList=null, dataAccess=null)]), token=null, expireTime=null) +2024-09-23 17:33:35.646 [http-nio-8080-exec-3] ERROR c.g.h.config.GlobalExceptionHandler - No static resource workplace/teams. +2024-09-23 17:41:08.413 [http-nio-8080-exec-8] INFO c.g.h.service.impl.UserServiceImpl - 查询用户1的用户信息 +2024-09-23 17:41:08.415 [http-nio-8080-exec-8] DEBUG c.g.h.mapper.UserMapper.getUserById - ==> Preparing: SELECT * from user_info where id=? AND status=1 +2024-09-23 17:41:08.416 [http-nio-8080-exec-8] DEBUG c.g.h.mapper.UserMapper.getUserById - ==> Parameters: 1(Long) +2024-09-23 17:41:08.418 [http-nio-8080-exec-8] DEBUG c.g.h.mapper.UserMapper.getUserById - <== Total: 1 +2024-09-23 17:41:08.420 [http-nio-8080-exec-8] DEBUG c.g.h.m.AuthMapper.getUserRoleById - ==> Preparing: SELECT * from system_role where role_id=? AND status=1 +2024-09-23 17:41:08.420 [http-nio-8080-exec-8] DEBUG c.g.h.m.AuthMapper.getUserRoleById - ==> Parameters: root(String) +2024-09-23 17:41:08.421 [http-nio-8080-exec-8] DEBUG c.g.h.m.AuthMapper.getUserRoleById - <== Total: 1 +2024-09-23 17:41:08.422 [http-nio-8080-exec-8] DEBUG c.g.h.m.A.getUserPermissionListByRoleId - ==> Preparing: select * from system_role_permission where role_id=? AND status=1 +2024-09-23 17:41:08.422 [http-nio-8080-exec-8] DEBUG c.g.h.m.A.getUserPermissionListByRoleId - ==> Parameters: root(String) +2024-09-23 17:41:08.423 [http-nio-8080-exec-8] DEBUG c.g.h.m.A.getUserPermissionListByRoleId - <== Total: 4 +2024-09-23 17:41:08.423 [http-nio-8080-exec-8] INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:SystemPermission(id=1, permissionId=dashboard, permissionName=null, status=1) +2024-09-23 17:41:08.424 [http-nio-8080-exec-8] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-23 17:41:08.424 [http-nio-8080-exec-8] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: dashboard(String), 1(Long) +2024-09-23 17:41:08.424 [http-nio-8080-exec-8] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 0 +2024-09-23 17:41:08.424 [http-nio-8080-exec-8] INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:SystemPermission(id=9, permissionId=role, permissionName=null, status=1) +2024-09-23 17:41:08.425 [http-nio-8080-exec-8] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-23 17:41:08.425 [http-nio-8080-exec-8] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: role(String), 1(Long) +2024-09-23 17:41:08.427 [http-nio-8080-exec-8] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 6 +2024-09-23 17:41:08.428 [http-nio-8080-exec-8] INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:SystemPermission(id=10, permissionId=user, permissionName=null, status=1) +2024-09-23 17:41:08.428 [http-nio-8080-exec-8] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-23 17:41:08.428 [http-nio-8080-exec-8] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: user(String), 1(Long) +2024-09-23 17:41:08.429 [http-nio-8080-exec-8] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 0 +2024-09-23 17:41:08.429 [http-nio-8080-exec-8] INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:SystemPermission(id=11, permissionId=system, permissionName=null, status=1) +2024-09-23 17:41:08.429 [http-nio-8080-exec-8] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-23 17:41:08.429 [http-nio-8080-exec-8] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: system(String), 1(Long) +2024-09-23 17:41:08.430 [http-nio-8080-exec-8] DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 0 +2024-09-23 17:41:08.430 [http-nio-8080-exec-8] INFO c.g.h.service.impl.UserServiceImpl - UserInfoLogin(id=1, name=萌狼蓝天, username=xrilang, avatar=https://q1.qlogo.cn/g?b=qq&nk=3447902411&s=640, email=null, telephone=null, status=0, lastLoginIp=null, lastLoginTime=null, createTime=null, creator=null, merchantCode=null, roleId=root, role=RoleInfo(id=root, name=超级管理员, description=最高权限, status=0, creatorId=null, createTime=null, deleted=0, permissions=[PermissionInfo(roleId=root, permissionId=dashboard, permissionName=null, actionEntitySet=[], actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=role, permissionName=null, actionEntitySet=[ActionEntitySet(action=add, describe=新增, defaultCheck=false), ActionEntitySet(action=import, describe=导入, defaultCheck=false), ActionEntitySet(action=get, describe=详情, defaultCheck=false), ActionEntitySet(action=update, describe=更新, defaultCheck=false), ActionEntitySet(action=delete, describe=删除, defaultCheck=false), ActionEntitySet(action=export, describe=导出, defaultCheck=false)], actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=user, permissionName=null, actionEntitySet=[], actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=system, permissionName=null, actionEntitySet=[], actionList=null, dataAccess=null)]), token=null, expireTime=null) +2024-09-23 18:31:40.258 [HikariPool-1 housekeeper] WARN com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - Thread starvation or clock leap detected (housekeeper delta=45m17s954ms887µs700ns). +2024-09-23 19:22:43.292 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown initiated... +2024-09-23 19:22:43.299 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown completed. +2024-09-23 19:22:47.718 [main] INFO o.s.boot.SpringApplication - +██╗ ██╗██████╗ ██╗██╗ █████╗ ███╗ ██╗ ██████╗ +╚██╗██╔╝██╔══██╗██║██║ ██╔══██╗████╗ ██║██╔════╝ + ╚███╔╝ ██████╔╝██║██║ ███████║██╔██╗ ██║██║ ███╗ + ██╔██╗ ██╔══██╗██║██║ ██╔══██║██║╚██╗██║██║ ██║ +██╔╝ ██╗██║ ██║██║███████╗██║ ██║██║ ╚████║╚██████╔╝ +╚═╝ ╚═╝╚═╝ ╚═╝╚═╝╚══════╝╚═╝ ╚═╝╚═╝ ╚═══╝ ╚═════╝ + +^_^ 服务启动成功 He Sheng +# 项目名称:harmony-life-server +# 项目版本:1.0.0 +# 框架版本:3.3.4 +# 最后更新于 2024年 9月 25日 + + +2024-09-23 19:22:47.759 [main] INFO c.g.h.HarmonyLifeServerApplication - Starting HarmonyLifeServerApplication using Java 17.0.8 with PID 28488 (C:\Users\xrilang\Desktop\harmony-life\harmony-life-server\harmony-life-server\target\classes started by xrilang in C:\Users\xrilang\Desktop\harmony-life\harmony-life-server\harmony-life-server) +2024-09-23 19:22:47.760 [main] DEBUG c.g.h.HarmonyLifeServerApplication - Running with Spring Boot v3.3.4, Spring v6.1.13 +2024-09-23 19:22:47.761 [main] INFO c.g.h.HarmonyLifeServerApplication - No active profile set, falling back to 1 default profile: "default" +2024-09-23 19:22:48.312 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode +2024-09-23 19:22:48.313 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data JDBC repositories in DEFAULT mode. +2024-09-23 19:22:48.324 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 8 ms. Found 0 JDBC repository interfaces. +2024-09-23 19:22:48.333 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode +2024-09-23 19:22:48.334 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2024-09-23 19:22:48.348 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 6 ms. Found 0 Redis repository interfaces. +2024-09-23 19:22:48.781 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat initialized with port 8080 (http) +2024-09-23 19:22:48.789 [main] INFO o.a.coyote.http11.Http11NioProtocol - Initializing ProtocolHandler ["http-nio-8080"] +2024-09-23 19:22:48.792 [main] INFO o.a.catalina.core.StandardService - Starting service [Tomcat] +2024-09-23 19:22:48.792 [main] INFO o.a.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/10.1.30] +2024-09-23 19:22:48.849 [main] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring embedded WebApplicationContext +2024-09-23 19:22:48.849 [main] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 1058 ms +2024-09-23 19:22:49.054 [main] INFO o.s.b.f.a.AutowiredAnnotationBeanPostProcessor - Autowired annotation should only be used on methods with parameters: public org.springframework.http.ResponseEntity com.guaiguailang.harmony.controller.SystemController.getMenu() +2024-09-23 19:22:49.554 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Starting... +2024-09-23 19:22:49.650 [main] INFO com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - Added connection com.mysql.cj.jdbc.ConnectionImpl@696298ea +2024-09-23 19:22:49.651 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Start completed. +2024-09-23 19:22:49.768 [main] INFO o.a.coyote.http11.Http11NioProtocol - Starting ProtocolHandler ["http-nio-8080"] +2024-09-23 19:22:49.782 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat started on port 8080 (http) with context path '/' +2024-09-23 19:22:49.788 [main] INFO c.g.h.HarmonyLifeServerApplication - Started HarmonyLifeServerApplication in 2.362 seconds (process running for 2.834) +2024-09-23 19:36:56.678 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown initiated... +2024-09-23 19:36:56.685 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown completed. +2024-09-23 19:37:01.201 [main] INFO o.s.boot.SpringApplication - +██╗ ██╗██████╗ ██╗██╗ █████╗ ███╗ ██╗ ██████╗ +╚██╗██╔╝██╔══██╗██║██║ ██╔══██╗████╗ ██║██╔════╝ + ╚███╔╝ ██████╔╝██║██║ ███████║██╔██╗ ██║██║ ███╗ + ██╔██╗ ██╔══██╗██║██║ ██╔══██║██║╚██╗██║██║ ██║ +██╔╝ ██╗██║ ██║██║███████╗██║ ██║██║ ╚████║╚██████╔╝ +╚═╝ ╚═╝╚═╝ ╚═╝╚═╝╚══════╝╚═╝ ╚═╝╚═╝ ╚═══╝ ╚═════╝ + +^_^ 服务启动成功 He Sheng +# 项目名称:harmony-life-server +# 项目版本:1.0.0 +# 框架版本:3.3.4 +# 最后更新于 2024年 9月 25日 + + +2024-09-23 19:37:01.251 [main] INFO c.g.h.HarmonyLifeServerApplication - Starting HarmonyLifeServerApplication using Java 17.0.8 with PID 33800 (C:\Users\xrilang\Desktop\harmony-life\harmony-life-server\harmony-life-server\target\classes started by xrilang in C:\Users\xrilang\Desktop\harmony-life\harmony-life-server\harmony-life-server) +2024-09-23 19:37:01.251 [main] DEBUG c.g.h.HarmonyLifeServerApplication - Running with Spring Boot v3.3.4, Spring v6.1.13 +2024-09-23 19:37:01.252 [main] INFO c.g.h.HarmonyLifeServerApplication - No active profile set, falling back to 1 default profile: "default" +2024-09-23 19:37:01.832 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode +2024-09-23 19:37:01.833 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data JDBC repositories in DEFAULT mode. +2024-09-23 19:37:01.844 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 8 ms. Found 0 JDBC repository interfaces. +2024-09-23 19:37:01.856 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode +2024-09-23 19:37:01.857 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2024-09-23 19:37:01.869 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 5 ms. Found 0 Redis repository interfaces. +2024-09-23 19:37:02.308 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat initialized with port 8080 (http) +2024-09-23 19:37:02.316 [main] INFO o.a.coyote.http11.Http11NioProtocol - Initializing ProtocolHandler ["http-nio-8080"] +2024-09-23 19:37:02.319 [main] INFO o.a.catalina.core.StandardService - Starting service [Tomcat] +2024-09-23 19:37:02.319 [main] INFO o.a.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/10.1.30] +2024-09-23 19:37:02.384 [main] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring embedded WebApplicationContext +2024-09-23 19:37:02.385 [main] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 1102 ms +2024-09-23 19:37:03.132 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Starting... +2024-09-23 19:37:03.231 [main] INFO com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - Added connection com.mysql.cj.jdbc.ConnectionImpl@de0c402 +2024-09-23 19:37:03.232 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Start completed. +2024-09-23 19:37:03.354 [main] INFO o.a.coyote.http11.Http11NioProtocol - Starting ProtocolHandler ["http-nio-8080"] +2024-09-23 19:37:03.369 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat started on port 8080 (http) with context path '/' +2024-09-23 19:37:03.376 [main] INFO c.g.h.HarmonyLifeServerApplication - Started HarmonyLifeServerApplication in 2.478 seconds (process running for 2.939) +2024-09-23 19:37:11.491 [http-nio-8080-exec-3] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring DispatcherServlet 'dispatcherServlet' +2024-09-23 19:37:11.491 [http-nio-8080-exec-3] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet' +2024-09-23 19:37:11.492 [http-nio-8080-exec-3] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 1 ms +2024-09-23 19:37:11.755 [http-nio-8080-exec-2] INFO o.s.api.AbstractOpenApiResource - Init duration for springdoc-openapi is: 157 ms +2024-09-23 19:37:11.898 [http-nio-8080-exec-1] ERROR c.g.h.config.GlobalExceptionHandler - No static resource favicon.ico. +2024-09-23 19:37:15.442 [http-nio-8080-exec-6] ERROR c.g.h.config.GlobalExceptionHandler - No static resource favicon.ico. +2024-09-23 19:37:19.045 [http-nio-8080-exec-7] DEBUG c.g.h.m.SystemMapper.getAllMenus - ==> Preparing: SELECT * FROM system_menu ORDER BY `order` +2024-09-23 19:37:19.063 [http-nio-8080-exec-7] DEBUG c.g.h.m.SystemMapper.getAllMenus - ==> Parameters: +2024-09-23 19:37:19.089 [http-nio-8080-exec-7] DEBUG c.g.h.m.SystemMapper.getAllMenus - <== Total: 6 +2024-09-23 19:37:19.091 [http-nio-8080-exec-7] ERROR c.g.h.config.GlobalExceptionHandler - For input string: "index" +2024-09-23 19:39:22.807 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown initiated... +2024-09-23 19:39:22.811 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown completed. +2024-09-23 19:39:25.075 [main] INFO o.s.boot.SpringApplication Caller+0 at org.springframework.boot.SpringApplicationBannerPrinter.print(SpringApplicationBannerPrinter.java:58) +Caller+1 at org.springframework.boot.SpringApplication.printBanner(SpringApplication.java:576) +Caller+2 at org.springframework.boot.SpringApplication.run(SpringApplication.java:331) +Caller+3 at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) +Caller+4 at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) + - +██╗ ██╗██████╗ ██╗██╗ █████╗ ███╗ ██╗ ██████╗ +╚██╗██╔╝██╔══██╗██║██║ ██╔══██╗████╗ ██║██╔════╝ + ╚███╔╝ ██████╔╝██║██║ ███████║██╔██╗ ██║██║ ███╗ + ██╔██╗ ██╔══██╗██║██║ ██╔══██║██║╚██╗██║██║ ██║ +██╔╝ ██╗██║ ██║██║███████╗██║ ██║██║ ╚████║╚██████╔╝ +╚═╝ ╚═╝╚═╝ ╚═╝╚═╝╚══════╝╚═╝ ╚═╝╚═╝ ╚═══╝ ╚═════╝ + +^_^ 服务启动成功 He Sheng +# 项目名称:harmony-life-server +# 项目版本:1.0.0 +# 框架版本:3.3.4 +# 最后更新于 2024年 9月 25日 + + +2024-09-23 19:39:25.119 [main] INFO c.g.h.HarmonyLifeServerApplication Caller+0 at org.springframework.boot.StartupInfoLogger.logStarting(StartupInfoLogger.java:50) +Caller+1 at org.springframework.boot.SpringApplication.logStartupInfo(SpringApplication.java:638) +Caller+2 at org.springframework.boot.SpringApplication.prepareContext(SpringApplication.java:405) +Caller+3 at org.springframework.boot.SpringApplication.run(SpringApplication.java:334) +Caller+4 at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) + - Starting HarmonyLifeServerApplication using Java 17.0.8 with PID 33496 (C:\Users\xrilang\Desktop\harmony-life\harmony-life-server\harmony-life-server\target\classes started by xrilang in C:\Users\xrilang\Desktop\harmony-life\harmony-life-server\harmony-life-server) +2024-09-23 19:39:25.119 [main] DEBUG c.g.h.HarmonyLifeServerApplication Caller+0 at org.springframework.boot.StartupInfoLogger.logStarting(StartupInfoLogger.java:51) +Caller+1 at org.springframework.boot.SpringApplication.logStartupInfo(SpringApplication.java:638) +Caller+2 at org.springframework.boot.SpringApplication.prepareContext(SpringApplication.java:405) +Caller+3 at org.springframework.boot.SpringApplication.run(SpringApplication.java:334) +Caller+4 at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) + - Running with Spring Boot v3.3.4, Spring v6.1.13 +2024-09-23 19:39:25.120 [main] INFO c.g.h.HarmonyLifeServerApplication Caller+0 at org.springframework.boot.SpringApplication.logStartupProfileInfo(SpringApplication.java:654) +Caller+1 at org.springframework.boot.SpringApplication.prepareContext(SpringApplication.java:406) +Caller+2 at org.springframework.boot.SpringApplication.run(SpringApplication.java:334) +Caller+3 at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) +Caller+4 at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) + - No active profile set, falling back to 1 default profile: "default" +2024-09-23 19:39:25.667 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate Caller+0 at org.springframework.data.repository.config.RepositoryConfigurationDelegate.multipleStoresDetected(RepositoryConfigurationDelegate.java:295) +Caller+1 at org.springframework.data.repository.config.RepositoryConfigurationDelegate.(RepositoryConfigurationDelegate.java:107) +Caller+2 at org.springframework.boot.autoconfigure.data.AbstractRepositoryConfigurationSourceSupport.registerBeanDefinitions(AbstractRepositoryConfigurationSourceSupport.java:61) +Caller+3 at org.springframework.context.annotation.ConfigurationClassBeanDefinitionReader.lambda$loadBeanDefinitionsFromRegistrars$1(ConfigurationClassBeanDefinitionReader.java:376) +Caller+4 at java.base/java.util.LinkedHashMap.forEach(LinkedHashMap.java:721) + - Multiple Spring Data modules found, entering strict repository configuration mode +2024-09-23 19:39:25.668 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate Caller+0 at org.springframework.data.repository.config.RepositoryConfigurationDelegate.registerRepositoriesIn(RepositoryConfigurationDelegate.java:143) +Caller+1 at org.springframework.boot.autoconfigure.data.AbstractRepositoryConfigurationSourceSupport.registerBeanDefinitions(AbstractRepositoryConfigurationSourceSupport.java:62) +Caller+2 at org.springframework.context.annotation.ConfigurationClassBeanDefinitionReader.lambda$loadBeanDefinitionsFromRegistrars$1(ConfigurationClassBeanDefinitionReader.java:376) +Caller+3 at java.base/java.util.LinkedHashMap.forEach(LinkedHashMap.java:721) +Caller+4 at org.springframework.context.annotation.ConfigurationClassBeanDefinitionReader.loadBeanDefinitionsFromRegistrars(ConfigurationClassBeanDefinitionReader.java:375) + - Bootstrapping Spring Data JDBC repositories in DEFAULT mode. +2024-09-23 19:39:25.679 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate Caller+0 at org.springframework.data.repository.config.RepositoryConfigurationDelegate.registerRepositoriesIn(RepositoryConfigurationDelegate.java:211) +Caller+1 at org.springframework.boot.autoconfigure.data.AbstractRepositoryConfigurationSourceSupport.registerBeanDefinitions(AbstractRepositoryConfigurationSourceSupport.java:62) +Caller+2 at org.springframework.context.annotation.ConfigurationClassBeanDefinitionReader.lambda$loadBeanDefinitionsFromRegistrars$1(ConfigurationClassBeanDefinitionReader.java:376) +Caller+3 at java.base/java.util.LinkedHashMap.forEach(LinkedHashMap.java:721) +Caller+4 at org.springframework.context.annotation.ConfigurationClassBeanDefinitionReader.loadBeanDefinitionsFromRegistrars(ConfigurationClassBeanDefinitionReader.java:375) + - Finished Spring Data repository scanning in 8 ms. Found 0 JDBC repository interfaces. +2024-09-23 19:39:25.688 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate Caller+0 at org.springframework.data.repository.config.RepositoryConfigurationDelegate.multipleStoresDetected(RepositoryConfigurationDelegate.java:295) +Caller+1 at org.springframework.data.repository.config.RepositoryConfigurationDelegate.(RepositoryConfigurationDelegate.java:107) +Caller+2 at org.springframework.boot.autoconfigure.data.AbstractRepositoryConfigurationSourceSupport.registerBeanDefinitions(AbstractRepositoryConfigurationSourceSupport.java:61) +Caller+3 at org.springframework.context.annotation.ConfigurationClassBeanDefinitionReader.lambda$loadBeanDefinitionsFromRegistrars$1(ConfigurationClassBeanDefinitionReader.java:376) +Caller+4 at java.base/java.util.LinkedHashMap.forEach(LinkedHashMap.java:721) + - Multiple Spring Data modules found, entering strict repository configuration mode +2024-09-23 19:39:25.689 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate Caller+0 at org.springframework.data.repository.config.RepositoryConfigurationDelegate.registerRepositoriesIn(RepositoryConfigurationDelegate.java:143) +Caller+1 at org.springframework.boot.autoconfigure.data.AbstractRepositoryConfigurationSourceSupport.registerBeanDefinitions(AbstractRepositoryConfigurationSourceSupport.java:62) +Caller+2 at org.springframework.context.annotation.ConfigurationClassBeanDefinitionReader.lambda$loadBeanDefinitionsFromRegistrars$1(ConfigurationClassBeanDefinitionReader.java:376) +Caller+3 at java.base/java.util.LinkedHashMap.forEach(LinkedHashMap.java:721) +Caller+4 at org.springframework.context.annotation.ConfigurationClassBeanDefinitionReader.loadBeanDefinitionsFromRegistrars(ConfigurationClassBeanDefinitionReader.java:375) + - Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2024-09-23 19:39:25.700 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate Caller+0 at org.springframework.data.repository.config.RepositoryConfigurationDelegate.registerRepositoriesIn(RepositoryConfigurationDelegate.java:211) +Caller+1 at org.springframework.boot.autoconfigure.data.AbstractRepositoryConfigurationSourceSupport.registerBeanDefinitions(AbstractRepositoryConfigurationSourceSupport.java:62) +Caller+2 at org.springframework.context.annotation.ConfigurationClassBeanDefinitionReader.lambda$loadBeanDefinitionsFromRegistrars$1(ConfigurationClassBeanDefinitionReader.java:376) +Caller+3 at java.base/java.util.LinkedHashMap.forEach(LinkedHashMap.java:721) +Caller+4 at org.springframework.context.annotation.ConfigurationClassBeanDefinitionReader.loadBeanDefinitionsFromRegistrars(ConfigurationClassBeanDefinitionReader.java:375) + - Finished Spring Data repository scanning in 5 ms. Found 0 Redis repository interfaces. +2024-09-23 19:39:26.160 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer Caller+0 at org.springframework.boot.web.embedded.tomcat.TomcatWebServer.initialize(TomcatWebServer.java:111) +Caller+1 at org.springframework.boot.web.embedded.tomcat.TomcatWebServer.(TomcatWebServer.java:107) +Caller+2 at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getTomcatWebServer(TomcatServletWebServerFactory.java:516) +Caller+3 at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getWebServer(TomcatServletWebServerFactory.java:222) +Caller+4 at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.createWebServer(ServletWebServerApplicationContext.java:188) + - Tomcat initialized with port 8080 (http) +2024-09-23 19:39:26.167 [main] INFO o.a.coyote.http11.Http11NioProtocol Caller+0 at org.apache.juli.logging.DirectJDKLog.log(DirectJDKLog.java:173) +Caller+1 at org.apache.juli.logging.DirectJDKLog.info(DirectJDKLog.java:116) +Caller+2 at org.apache.coyote.AbstractProtocol.init(AbstractProtocol.java:611) +Caller+3 at org.apache.coyote.http11.AbstractHttp11Protocol.init(AbstractHttp11Protocol.java:79) +Caller+4 at org.apache.catalina.connector.Connector.initInternal(Connector.java:1028) + - Initializing ProtocolHandler ["http-nio-8080"] +2024-09-23 19:39:26.170 [main] INFO o.a.catalina.core.StandardService Caller+0 at org.apache.juli.logging.DirectJDKLog.log(DirectJDKLog.java:173) +Caller+1 at org.apache.juli.logging.DirectJDKLog.info(DirectJDKLog.java:116) +Caller+2 at org.apache.catalina.core.StandardService.startInternal(StandardService.java:409) +Caller+3 at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:164) +Caller+4 at org.apache.catalina.core.StandardServer.startInternal(StandardServer.java:870) + - Starting service [Tomcat] +2024-09-23 19:39:26.170 [main] INFO o.a.catalina.core.StandardEngine Caller+0 at org.apache.juli.logging.DirectJDKLog.log(DirectJDKLog.java:173) +Caller+1 at org.apache.juli.logging.DirectJDKLog.info(DirectJDKLog.java:116) +Caller+2 at org.apache.catalina.core.StandardEngine.startInternal(StandardEngine.java:199) +Caller+3 at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:164) +Caller+4 at org.apache.catalina.core.StandardService.startInternal(StandardService.java:415) + - Starting Servlet engine: [Apache Tomcat/10.1.30] +2024-09-23 19:39:26.223 [main] INFO o.a.c.c.C.[Tomcat].[localhost].[/] Caller+0 at org.apache.juli.logging.DirectJDKLog.log(DirectJDKLog.java:173) +Caller+1 at org.apache.juli.logging.DirectJDKLog.info(DirectJDKLog.java:116) +Caller+2 at org.apache.catalina.core.ApplicationContext.log(ApplicationContext.java:574) +Caller+3 at org.apache.catalina.core.ApplicationContextFacade.log(ApplicationContextFacade.java:235) +Caller+4 at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.prepareWebApplicationContext(ServletWebServerApplicationContext.java:286) + - Initializing Spring embedded WebApplicationContext +2024-09-23 19:39:26.223 [main] INFO o.s.b.w.s.c.ServletWebServerApplicationContext Caller+0 at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.prepareWebApplicationContext(ServletWebServerApplicationContext.java:296) +Caller+1 at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.selfInitialize(ServletWebServerApplicationContext.java:237) +Caller+2 at org.springframework.boot.web.embedded.tomcat.TomcatStarter.onStartup(TomcatStarter.java:52) +Caller+3 at org.apache.catalina.core.StandardContext.startInternal(StandardContext.java:4412) +Caller+4 at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:164) + - Root WebApplicationContext: initialization completed in 1075 ms +2024-09-23 19:39:26.937 [main] INFO com.zaxxer.hikari.HikariDataSource Caller+0 at com.zaxxer.hikari.HikariDataSource.getConnection(HikariDataSource.java:109) +Caller+1 at org.springframework.jdbc.datasource.DataSourceUtils.fetchConnection(DataSourceUtils.java:160) +Caller+2 at org.springframework.jdbc.datasource.DataSourceUtils.doGetConnection(DataSourceUtils.java:118) +Caller+3 at org.springframework.jdbc.datasource.DataSourceUtils.getConnection(DataSourceUtils.java:81) +Caller+4 at org.springframework.jdbc.core.JdbcTemplate.execute(JdbcTemplate.java:342) + - HikariPool-1 - Starting... +2024-09-23 19:39:27.037 [main] INFO com.zaxxer.hikari.pool.HikariPool Caller+0 at com.zaxxer.hikari.pool.HikariPool.checkFailFast(HikariPool.java:554) +Caller+1 at com.zaxxer.hikari.pool.HikariPool.(HikariPool.java:98) +Caller+2 at com.zaxxer.hikari.HikariDataSource.getConnection(HikariDataSource.java:111) +Caller+3 at org.springframework.jdbc.datasource.DataSourceUtils.fetchConnection(DataSourceUtils.java:160) +Caller+4 at org.springframework.jdbc.datasource.DataSourceUtils.doGetConnection(DataSourceUtils.java:118) + - HikariPool-1 - Added connection com.mysql.cj.jdbc.ConnectionImpl@7f41d979 +2024-09-23 19:39:27.038 [main] INFO com.zaxxer.hikari.HikariDataSource Caller+0 at com.zaxxer.hikari.HikariDataSource.getConnection(HikariDataSource.java:122) +Caller+1 at org.springframework.jdbc.datasource.DataSourceUtils.fetchConnection(DataSourceUtils.java:160) +Caller+2 at org.springframework.jdbc.datasource.DataSourceUtils.doGetConnection(DataSourceUtils.java:118) +Caller+3 at org.springframework.jdbc.datasource.DataSourceUtils.getConnection(DataSourceUtils.java:81) +Caller+4 at org.springframework.jdbc.core.JdbcTemplate.execute(JdbcTemplate.java:342) + - HikariPool-1 - Start completed. +2024-09-23 19:39:27.153 [main] INFO o.a.coyote.http11.Http11NioProtocol Caller+0 at org.apache.juli.logging.DirectJDKLog.log(DirectJDKLog.java:173) +Caller+1 at org.apache.juli.logging.DirectJDKLog.info(DirectJDKLog.java:116) +Caller+2 at org.apache.coyote.AbstractProtocol.start(AbstractProtocol.java:640) +Caller+3 at org.apache.catalina.connector.Connector.startInternal(Connector.java:1058) +Caller+4 at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:164) + - Starting ProtocolHandler ["http-nio-8080"] +2024-09-23 19:39:27.167 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer Caller+0 at org.springframework.boot.web.embedded.tomcat.TomcatWebServer.start(TomcatWebServer.java:243) +Caller+1 at org.springframework.boot.web.servlet.context.WebServerStartStopLifecycle.start(WebServerStartStopLifecycle.java:44) +Caller+2 at org.springframework.context.support.DefaultLifecycleProcessor.doStart(DefaultLifecycleProcessor.java:285) +Caller+3 at org.springframework.context.support.DefaultLifecycleProcessor$LifecycleGroup.start(DefaultLifecycleProcessor.java:472) +Caller+4 at java.base/java.lang.Iterable.forEach(Iterable.java:75) + - Tomcat started on port 8080 (http) with context path '/' +2024-09-23 19:39:27.173 [main] INFO c.g.h.HarmonyLifeServerApplication Caller+0 at org.springframework.boot.StartupInfoLogger.logStarted(StartupInfoLogger.java:56) +Caller+1 at org.springframework.boot.SpringApplication.run(SpringApplication.java:339) +Caller+2 at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) +Caller+3 at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) +Caller+4 at com.guaiguailang.harmony.HarmonyLifeServerApplication.main(HarmonyLifeServerApplication.java:16) + - Started HarmonyLifeServerApplication in 2.373 seconds (process running for 2.783) +2024-09-23 19:39:31.854 [http-nio-8080-exec-1] INFO o.a.c.c.C.[Tomcat].[localhost].[/] Caller+0 at org.apache.juli.logging.DirectJDKLog.log(DirectJDKLog.java:173) +Caller+1 at org.apache.juli.logging.DirectJDKLog.info(DirectJDKLog.java:116) +Caller+2 at org.apache.catalina.core.ApplicationContext.log(ApplicationContext.java:574) +Caller+3 at org.apache.catalina.core.ApplicationContextFacade.log(ApplicationContextFacade.java:235) +Caller+4 at org.springframework.web.servlet.FrameworkServlet.initServletBean(FrameworkServlet.java:530) + - Initializing Spring DispatcherServlet 'dispatcherServlet' +2024-09-23 19:39:31.855 [http-nio-8080-exec-1] INFO o.s.web.servlet.DispatcherServlet Caller+0 at org.springframework.web.servlet.FrameworkServlet.initServletBean(FrameworkServlet.java:532) +Caller+1 at org.springframework.web.servlet.HttpServletBean.init(HttpServletBean.java:169) +Caller+2 at jakarta.servlet.GenericServlet.init(GenericServlet.java:143) +Caller+3 at jakarta.servlet.http.HttpServlet.init(HttpServlet.java:121) +Caller+4 at org.apache.catalina.core.StandardWrapper.initServlet(StandardWrapper.java:837) + - Initializing Servlet 'dispatcherServlet' +2024-09-23 19:39:31.856 [http-nio-8080-exec-1] INFO o.s.web.servlet.DispatcherServlet Caller+0 at org.springframework.web.servlet.FrameworkServlet.initServletBean(FrameworkServlet.java:554) +Caller+1 at org.springframework.web.servlet.HttpServletBean.init(HttpServletBean.java:169) +Caller+2 at jakarta.servlet.GenericServlet.init(GenericServlet.java:143) +Caller+3 at jakarta.servlet.http.HttpServlet.init(HttpServlet.java:121) +Caller+4 at org.apache.catalina.core.StandardWrapper.initServlet(StandardWrapper.java:837) + - Completed initialization in 1 ms +2024-09-23 19:39:32.213 [http-nio-8080-exec-1] DEBUG c.g.h.m.SystemMapper.getAllMenus Caller+0 at org.apache.ibatis.logging.jdbc.BaseJdbcLogger.debug(BaseJdbcLogger.java:135) +Caller+1 at org.apache.ibatis.logging.jdbc.ConnectionLogger.invoke(ConnectionLogger.java:51) +Caller+2 at jdk.proxy3/jdk.proxy3.$Proxy98.prepareStatement(Unknown Source) +Caller+3 at org.apache.ibatis.executor.statement.PreparedStatementHandler.instantiateStatement(PreparedStatementHandler.java:88) +Caller+4 at org.apache.ibatis.executor.statement.BaseStatementHandler.prepare(BaseStatementHandler.java:90) + - ==> Preparing: SELECT * FROM system_menu ORDER BY `order` +2024-09-23 19:39:32.231 [http-nio-8080-exec-1] DEBUG c.g.h.m.SystemMapper.getAllMenus Caller+0 at org.apache.ibatis.logging.jdbc.BaseJdbcLogger.debug(BaseJdbcLogger.java:135) +Caller+1 at org.apache.ibatis.logging.jdbc.PreparedStatementLogger.invoke(PreparedStatementLogger.java:51) +Caller+2 at jdk.proxy3/jdk.proxy3.$Proxy119.execute(Unknown Source) +Caller+3 at org.apache.ibatis.executor.statement.PreparedStatementHandler.query(PreparedStatementHandler.java:65) +Caller+4 at org.apache.ibatis.executor.statement.RoutingStatementHandler.query(RoutingStatementHandler.java:80) + - ==> Parameters: +2024-09-23 19:39:32.253 [http-nio-8080-exec-1] DEBUG c.g.h.m.SystemMapper.getAllMenus Caller+0 at org.apache.ibatis.logging.jdbc.BaseJdbcLogger.debug(BaseJdbcLogger.java:135) +Caller+1 at org.apache.ibatis.logging.jdbc.ResultSetLogger.invoke(ResultSetLogger.java:82) +Caller+2 at jdk.proxy3/jdk.proxy3.$Proxy120.next(Unknown Source) +Caller+3 at org.apache.ibatis.executor.resultset.DefaultResultSetHandler.handleRowValuesForSimpleResultMap(DefaultResultSetHandler.java:364) +Caller+4 at org.apache.ibatis.executor.resultset.DefaultResultSetHandler.handleRowValues(DefaultResultSetHandler.java:337) + - <== Total: 6 +2024-09-23 19:39:32.256 [http-nio-8080-exec-1] ERROR c.g.h.config.GlobalExceptionHandler Caller+0 at com.guaiguailang.harmony.config.GlobalExceptionHandler.handlerException(GlobalExceptionHandler.java:15) +Caller+1 at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) +Caller+2 at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) +Caller+3 at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) +Caller+4 at java.base/java.lang.reflect.Method.invoke(Method.java:568) + - For input string: "index" +2024-09-23 19:42:04.218 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource Caller+0 at com.zaxxer.hikari.HikariDataSource.close(HikariDataSource.java:349) +Caller+1 at org.springframework.beans.factory.support.DisposableBeanAdapter.destroy(DisposableBeanAdapter.java:232) +Caller+2 at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.destroyBean(DefaultSingletonBeanRegistry.java:587) +Caller+3 at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.destroySingleton(DefaultSingletonBeanRegistry.java:559) +Caller+4 at org.springframework.beans.factory.support.DefaultListableBeanFactory.destroySingleton(DefaultListableBeanFactory.java:1202) + - HikariPool-1 - Shutdown initiated... +2024-09-23 19:42:04.222 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource Caller+0 at com.zaxxer.hikari.HikariDataSource.close(HikariDataSource.java:351) +Caller+1 at org.springframework.beans.factory.support.DisposableBeanAdapter.destroy(DisposableBeanAdapter.java:232) +Caller+2 at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.destroyBean(DefaultSingletonBeanRegistry.java:587) +Caller+3 at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.destroySingleton(DefaultSingletonBeanRegistry.java:559) +Caller+4 at org.springframework.beans.factory.support.DefaultListableBeanFactory.destroySingleton(DefaultListableBeanFactory.java:1202) + - HikariPool-1 - Shutdown completed. +2024-09-23 19:42:06.485 [main] ERROR o.s.boot.SpringApplication - %PARSER_ERROR[location] Application run failed +java.lang.IllegalStateException: java.lang.IllegalStateException: Logback configuration error detected: +ERROR in ch.qos.logback.core.pattern.parser.Compiler@478ee483 - There is no conversion class registered for conversion word [location] +ERROR in ch.qos.logback.core.pattern.parser.Compiler@478ee483 - [location] is not a valid conversion word +ERROR in ch.qos.logback.core.pattern.parser.Compiler@1a7288a3 - There is no conversion class registered for conversion word [location] +ERROR in ch.qos.logback.core.pattern.parser.Compiler@1a7288a3 - [location] is not a valid conversion word + at org.springframework.boot.context.logging.LoggingApplicationListener.initializeSystem(LoggingApplicationListener.java:347) + at org.springframework.boot.context.logging.LoggingApplicationListener.initialize(LoggingApplicationListener.java:298) + at org.springframework.boot.context.logging.LoggingApplicationListener.onApplicationEnvironmentPreparedEvent(LoggingApplicationListener.java:246) + at org.springframework.boot.context.logging.LoggingApplicationListener.onApplicationEvent(LoggingApplicationListener.java:223) + at org.springframework.context.event.SimpleApplicationEventMulticaster.doInvokeListener(SimpleApplicationEventMulticaster.java:185) + at org.springframework.context.event.SimpleApplicationEventMulticaster.invokeListener(SimpleApplicationEventMulticaster.java:178) + at org.springframework.context.event.SimpleApplicationEventMulticaster.multicastEvent(SimpleApplicationEventMulticaster.java:156) + at org.springframework.context.event.SimpleApplicationEventMulticaster.multicastEvent(SimpleApplicationEventMulticaster.java:138) + at org.springframework.boot.context.event.EventPublishingRunListener.multicastInitialEvent(EventPublishingRunListener.java:136) + at org.springframework.boot.context.event.EventPublishingRunListener.environmentPrepared(EventPublishingRunListener.java:81) + at org.springframework.boot.SpringApplicationRunListeners.lambda$environmentPrepared$2(SpringApplicationRunListeners.java:64) + at java.base/java.lang.Iterable.forEach(Iterable.java:75) + at org.springframework.boot.SpringApplicationRunListeners.doWithListeners(SpringApplicationRunListeners.java:118) + at org.springframework.boot.SpringApplicationRunListeners.doWithListeners(SpringApplicationRunListeners.java:112) + at org.springframework.boot.SpringApplicationRunListeners.environmentPrepared(SpringApplicationRunListeners.java:63) + at org.springframework.boot.SpringApplication.prepareEnvironment(SpringApplication.java:370) + at org.springframework.boot.SpringApplication.run(SpringApplication.java:330) + at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) + at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) + at com.guaiguailang.harmony.HarmonyLifeServerApplication.main(HarmonyLifeServerApplication.java:16) +Caused by: java.lang.IllegalStateException: Logback configuration error detected: +ERROR in ch.qos.logback.core.pattern.parser.Compiler@478ee483 - There is no conversion class registered for conversion word [location] +ERROR in ch.qos.logback.core.pattern.parser.Compiler@478ee483 - [location] is not a valid conversion word +ERROR in ch.qos.logback.core.pattern.parser.Compiler@1a7288a3 - There is no conversion class registered for conversion word [location] +ERROR in ch.qos.logback.core.pattern.parser.Compiler@1a7288a3 - [location] is not a valid conversion word + at org.springframework.boot.logging.logback.LogbackLoggingSystem.reportConfigurationErrorsIfNecessary(LogbackLoggingSystem.java:284) + at org.springframework.boot.logging.logback.LogbackLoggingSystem.loadConfiguration(LogbackLoggingSystem.java:262) + at org.springframework.boot.logging.AbstractLoggingSystem.initializeWithSpecificConfig(AbstractLoggingSystem.java:67) + at org.springframework.boot.logging.AbstractLoggingSystem.initialize(AbstractLoggingSystem.java:58) + at org.springframework.boot.logging.logback.LogbackLoggingSystem.initialize(LogbackLoggingSystem.java:193) + at org.springframework.boot.context.logging.LoggingApplicationListener.initializeSystem(LoggingApplicationListener.java:335) + ... 19 common frames omitted +2024-09-23 19:45:32.672 [main] ERROR o.s.boot.SpringApplication - %PARSER_ERROR[location] Application run failed +java.lang.IllegalStateException: java.lang.IllegalStateException: Logback configuration error detected: +ERROR in ch.qos.logback.core.pattern.parser.Compiler@2974f221 - Failed to instantiate converter class [ch.qos.logback.classic.encoder.PatternLayoutEncoder$AnsiColorConverter] as a composite converter for keyword [clr] ch.qos.logback.core.util.DynamicClassLoadingException: Failed to instantiate type ch.qos.logback.classic.encoder.PatternLayoutEncoder$AnsiColorConverter +ERROR in ch.qos.logback.core.pattern.parser.Compiler@2974f221 - Failed to create converter for [%clr] keyword +ERROR in ch.qos.logback.core.pattern.parser.Compiler@2974f221 - Failed to instantiate converter class [ch.qos.logback.classic.encoder.PatternLayoutEncoder$AnsiColorConverter] as a composite converter for keyword [clr] ch.qos.logback.core.util.DynamicClassLoadingException: Failed to instantiate type ch.qos.logback.classic.encoder.PatternLayoutEncoder$AnsiColorConverter +ERROR in ch.qos.logback.core.pattern.parser.Compiler@2974f221 - Failed to create converter for [%clr] keyword +ERROR in ch.qos.logback.core.pattern.parser.Compiler@2974f221 - Failed to instantiate converter class [ch.qos.logback.classic.encoder.PatternLayoutEncoder$AnsiColorConverter] as a composite converter for keyword [clr] ch.qos.logback.core.util.DynamicClassLoadingException: Failed to instantiate type ch.qos.logback.classic.encoder.PatternLayoutEncoder$AnsiColorConverter +ERROR in ch.qos.logback.core.pattern.parser.Compiler@2974f221 - Failed to create converter for [%clr] keyword +ERROR in ch.qos.logback.core.pattern.parser.Compiler@2974f221 - Failed to instantiate converter class [ch.qos.logback.classic.encoder.PatternLayoutEncoder$AnsiColorConverter] as a composite converter for keyword [clr] ch.qos.logback.core.util.DynamicClassLoadingException: Failed to instantiate type ch.qos.logback.classic.encoder.PatternLayoutEncoder$AnsiColorConverter +ERROR in ch.qos.logback.core.pattern.parser.Compiler@2974f221 - Failed to create converter for [%clr] keyword +ERROR in ch.qos.logback.core.pattern.parser.Compiler@2974f221 - There is no conversion class registered for conversion word [location] +ERROR in ch.qos.logback.core.pattern.parser.Compiler@2974f221 - [location] is not a valid conversion word +ERROR in ch.qos.logback.core.pattern.parser.Compiler@58fe0499 - There is no conversion class registered for conversion word [location] +ERROR in ch.qos.logback.core.pattern.parser.Compiler@58fe0499 - [location] is not a valid conversion word + at org.springframework.boot.context.logging.LoggingApplicationListener.initializeSystem(LoggingApplicationListener.java:347) + at org.springframework.boot.context.logging.LoggingApplicationListener.initialize(LoggingApplicationListener.java:298) + at org.springframework.boot.context.logging.LoggingApplicationListener.onApplicationEnvironmentPreparedEvent(LoggingApplicationListener.java:246) + at org.springframework.boot.context.logging.LoggingApplicationListener.onApplicationEvent(LoggingApplicationListener.java:223) + at org.springframework.context.event.SimpleApplicationEventMulticaster.doInvokeListener(SimpleApplicationEventMulticaster.java:185) + at org.springframework.context.event.SimpleApplicationEventMulticaster.invokeListener(SimpleApplicationEventMulticaster.java:178) + at org.springframework.context.event.SimpleApplicationEventMulticaster.multicastEvent(SimpleApplicationEventMulticaster.java:156) + at org.springframework.context.event.SimpleApplicationEventMulticaster.multicastEvent(SimpleApplicationEventMulticaster.java:138) + at org.springframework.boot.context.event.EventPublishingRunListener.multicastInitialEvent(EventPublishingRunListener.java:136) + at org.springframework.boot.context.event.EventPublishingRunListener.environmentPrepared(EventPublishingRunListener.java:81) + at org.springframework.boot.SpringApplicationRunListeners.lambda$environmentPrepared$2(SpringApplicationRunListeners.java:64) + at java.base/java.lang.Iterable.forEach(Iterable.java:75) + at org.springframework.boot.SpringApplicationRunListeners.doWithListeners(SpringApplicationRunListeners.java:118) + at org.springframework.boot.SpringApplicationRunListeners.doWithListeners(SpringApplicationRunListeners.java:112) + at org.springframework.boot.SpringApplicationRunListeners.environmentPrepared(SpringApplicationRunListeners.java:63) + at org.springframework.boot.SpringApplication.prepareEnvironment(SpringApplication.java:370) + at org.springframework.boot.SpringApplication.run(SpringApplication.java:330) + at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) + at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) + at com.guaiguailang.harmony.HarmonyLifeServerApplication.main(HarmonyLifeServerApplication.java:16) +Caused by: java.lang.IllegalStateException: Logback configuration error detected: +ERROR in ch.qos.logback.core.pattern.parser.Compiler@2974f221 - Failed to instantiate converter class [ch.qos.logback.classic.encoder.PatternLayoutEncoder$AnsiColorConverter] as a composite converter for keyword [clr] ch.qos.logback.core.util.DynamicClassLoadingException: Failed to instantiate type ch.qos.logback.classic.encoder.PatternLayoutEncoder$AnsiColorConverter +ERROR in ch.qos.logback.core.pattern.parser.Compiler@2974f221 - Failed to create converter for [%clr] keyword +ERROR in ch.qos.logback.core.pattern.parser.Compiler@2974f221 - Failed to instantiate converter class [ch.qos.logback.classic.encoder.PatternLayoutEncoder$AnsiColorConverter] as a composite converter for keyword [clr] ch.qos.logback.core.util.DynamicClassLoadingException: Failed to instantiate type ch.qos.logback.classic.encoder.PatternLayoutEncoder$AnsiColorConverter +ERROR in ch.qos.logback.core.pattern.parser.Compiler@2974f221 - Failed to create converter for [%clr] keyword +ERROR in ch.qos.logback.core.pattern.parser.Compiler@2974f221 - Failed to instantiate converter class [ch.qos.logback.classic.encoder.PatternLayoutEncoder$AnsiColorConverter] as a composite converter for keyword [clr] ch.qos.logback.core.util.DynamicClassLoadingException: Failed to instantiate type ch.qos.logback.classic.encoder.PatternLayoutEncoder$AnsiColorConverter +ERROR in ch.qos.logback.core.pattern.parser.Compiler@2974f221 - Failed to create converter for [%clr] keyword +ERROR in ch.qos.logback.core.pattern.parser.Compiler@2974f221 - Failed to instantiate converter class [ch.qos.logback.classic.encoder.PatternLayoutEncoder$AnsiColorConverter] as a composite converter for keyword [clr] ch.qos.logback.core.util.DynamicClassLoadingException: Failed to instantiate type ch.qos.logback.classic.encoder.PatternLayoutEncoder$AnsiColorConverter +ERROR in ch.qos.logback.core.pattern.parser.Compiler@2974f221 - Failed to create converter for [%clr] keyword +ERROR in ch.qos.logback.core.pattern.parser.Compiler@2974f221 - There is no conversion class registered for conversion word [location] +ERROR in ch.qos.logback.core.pattern.parser.Compiler@2974f221 - [location] is not a valid conversion word +ERROR in ch.qos.logback.core.pattern.parser.Compiler@58fe0499 - There is no conversion class registered for conversion word [location] +ERROR in ch.qos.logback.core.pattern.parser.Compiler@58fe0499 - [location] is not a valid conversion word + at org.springframework.boot.logging.logback.LogbackLoggingSystem.reportConfigurationErrorsIfNecessary(LogbackLoggingSystem.java:284) + at org.springframework.boot.logging.logback.LogbackLoggingSystem.loadConfiguration(LogbackLoggingSystem.java:262) + at org.springframework.boot.logging.AbstractLoggingSystem.initializeWithSpecificConfig(AbstractLoggingSystem.java:67) + at org.springframework.boot.logging.AbstractLoggingSystem.initialize(AbstractLoggingSystem.java:58) + at org.springframework.boot.logging.logback.LogbackLoggingSystem.initialize(LogbackLoggingSystem.java:193) + at org.springframework.boot.context.logging.LoggingApplicationListener.initializeSystem(LoggingApplicationListener.java:335) + ... 19 common frames omitted + Suppressed: ch.qos.logback.core.util.DynamicClassLoadingException: Failed to instantiate type ch.qos.logback.classic.encoder.PatternLayoutEncoder$AnsiColorConverter + at ch.qos.logback.core.util.OptionHelper.instantiateByClassNameAndParameter(OptionHelper.java:69) + at ch.qos.logback.core.util.OptionHelper.instantiateByClassName(OptionHelper.java:44) + at ch.qos.logback.core.util.OptionHelper.instantiateByClassName(OptionHelper.java:33) + at ch.qos.logback.core.pattern.parser.Compiler.createCompositeConverter(Compiler.java:130) + at ch.qos.logback.core.pattern.parser.Compiler.compile(Compiler.java:47) + at ch.qos.logback.core.pattern.parser.Parser.compile(Parser.java:87) + at ch.qos.logback.core.pattern.PatternLayoutBase.start(PatternLayoutBase.java:85) + at ch.qos.logback.classic.encoder.PatternLayoutEncoder.start(PatternLayoutEncoder.java:28) + at ch.qos.logback.core.model.processor.ImplicitModelHandler.postHandleComplex(ImplicitModelHandler.java:207) + at ch.qos.logback.core.model.processor.ImplicitModelHandler.postHandle(ImplicitModelHandler.java:186) + at ch.qos.logback.core.model.processor.DefaultProcessor.secondPhaseTraverse(DefaultProcessor.java:257) + at ch.qos.logback.core.model.processor.DefaultProcessor.secondPhaseTraverse(DefaultProcessor.java:253) + at ch.qos.logback.core.model.processor.DefaultProcessor.secondPhaseTraverse(DefaultProcessor.java:253) + at ch.qos.logback.core.model.processor.DefaultProcessor.traversalLoop(DefaultProcessor.java:90) + at ch.qos.logback.core.model.processor.DefaultProcessor.process(DefaultProcessor.java:106) + at ch.qos.logback.core.joran.GenericXMLConfigurator.processModel(GenericXMLConfigurator.java:222) + at org.springframework.boot.logging.logback.SpringBootJoranConfigurator.processModel(SpringBootJoranConfigurator.java:133) + at ch.qos.logback.core.joran.GenericXMLConfigurator.doConfigure(GenericXMLConfigurator.java:178) + at ch.qos.logback.core.joran.GenericXMLConfigurator.doConfigure(GenericXMLConfigurator.java:123) + at ch.qos.logback.core.joran.GenericXMLConfigurator.doConfigure(GenericXMLConfigurator.java:66) + at org.springframework.boot.logging.logback.LogbackLoggingSystem.configureByResourceUrl(LogbackLoggingSystem.java:294) + at org.springframework.boot.logging.logback.LogbackLoggingSystem.lambda$loadConfiguration$1(LogbackLoggingSystem.java:255) + at org.springframework.boot.logging.logback.LogbackLoggingSystem.withLoggingSuppressed(LogbackLoggingSystem.java:474) + at org.springframework.boot.logging.logback.LogbackLoggingSystem.loadConfiguration(LogbackLoggingSystem.java:249) + ... 23 common frames omitted + Caused by: java.lang.ClassNotFoundException: ch.qos.logback.classic.encoder.PatternLayoutEncoder$AnsiColorConverter + at java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:641) + at java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:188) + at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:525) + at ch.qos.logback.core.util.OptionHelper.instantiateByClassNameAndParameter(OptionHelper.java:56) + ... 46 common frames omitted + Suppressed: ch.qos.logback.core.util.DynamicClassLoadingException: Failed to instantiate type ch.qos.logback.classic.encoder.PatternLayoutEncoder$AnsiColorConverter + at ch.qos.logback.core.util.OptionHelper.instantiateByClassNameAndParameter(OptionHelper.java:69) + at ch.qos.logback.core.util.OptionHelper.instantiateByClassName(OptionHelper.java:44) + at ch.qos.logback.core.util.OptionHelper.instantiateByClassName(OptionHelper.java:33) + at ch.qos.logback.core.pattern.parser.Compiler.createCompositeConverter(Compiler.java:130) + at ch.qos.logback.core.pattern.parser.Compiler.compile(Compiler.java:47) + at ch.qos.logback.core.pattern.parser.Parser.compile(Parser.java:87) + at ch.qos.logback.core.pattern.PatternLayoutBase.start(PatternLayoutBase.java:85) + at ch.qos.logback.classic.encoder.PatternLayoutEncoder.start(PatternLayoutEncoder.java:28) + at ch.qos.logback.core.model.processor.ImplicitModelHandler.postHandleComplex(ImplicitModelHandler.java:207) + at ch.qos.logback.core.model.processor.ImplicitModelHandler.postHandle(ImplicitModelHandler.java:186) + at ch.qos.logback.core.model.processor.DefaultProcessor.secondPhaseTraverse(DefaultProcessor.java:257) + at ch.qos.logback.core.model.processor.DefaultProcessor.secondPhaseTraverse(DefaultProcessor.java:253) + at ch.qos.logback.core.model.processor.DefaultProcessor.secondPhaseTraverse(DefaultProcessor.java:253) + at ch.qos.logback.core.model.processor.DefaultProcessor.traversalLoop(DefaultProcessor.java:90) + at ch.qos.logback.core.model.processor.DefaultProcessor.process(DefaultProcessor.java:106) + at ch.qos.logback.core.joran.GenericXMLConfigurator.processModel(GenericXMLConfigurator.java:222) + at org.springframework.boot.logging.logback.SpringBootJoranConfigurator.processModel(SpringBootJoranConfigurator.java:133) + at ch.qos.logback.core.joran.GenericXMLConfigurator.doConfigure(GenericXMLConfigurator.java:178) + at ch.qos.logback.core.joran.GenericXMLConfigurator.doConfigure(GenericXMLConfigurator.java:123) + at ch.qos.logback.core.joran.GenericXMLConfigurator.doConfigure(GenericXMLConfigurator.java:66) + at org.springframework.boot.logging.logback.LogbackLoggingSystem.configureByResourceUrl(LogbackLoggingSystem.java:294) + at org.springframework.boot.logging.logback.LogbackLoggingSystem.lambda$loadConfiguration$1(LogbackLoggingSystem.java:255) + at org.springframework.boot.logging.logback.LogbackLoggingSystem.withLoggingSuppressed(LogbackLoggingSystem.java:474) + at org.springframework.boot.logging.logback.LogbackLoggingSystem.loadConfiguration(LogbackLoggingSystem.java:249) + ... 23 common frames omitted + Caused by: java.lang.ClassNotFoundException: ch.qos.logback.classic.encoder.PatternLayoutEncoder$AnsiColorConverter + at java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:641) + at java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:188) + at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:525) + at ch.qos.logback.core.util.OptionHelper.instantiateByClassNameAndParameter(OptionHelper.java:56) + ... 46 common frames omitted + Suppressed: ch.qos.logback.core.util.DynamicClassLoadingException: Failed to instantiate type ch.qos.logback.classic.encoder.PatternLayoutEncoder$AnsiColorConverter + at ch.qos.logback.core.util.OptionHelper.instantiateByClassNameAndParameter(OptionHelper.java:69) + at ch.qos.logback.core.util.OptionHelper.instantiateByClassName(OptionHelper.java:44) + at ch.qos.logback.core.util.OptionHelper.instantiateByClassName(OptionHelper.java:33) + at ch.qos.logback.core.pattern.parser.Compiler.createCompositeConverter(Compiler.java:130) + at ch.qos.logback.core.pattern.parser.Compiler.compile(Compiler.java:47) + at ch.qos.logback.core.pattern.parser.Parser.compile(Parser.java:87) + at ch.qos.logback.core.pattern.PatternLayoutBase.start(PatternLayoutBase.java:85) + at ch.qos.logback.classic.encoder.PatternLayoutEncoder.start(PatternLayoutEncoder.java:28) + at ch.qos.logback.core.model.processor.ImplicitModelHandler.postHandleComplex(ImplicitModelHandler.java:207) + at ch.qos.logback.core.model.processor.ImplicitModelHandler.postHandle(ImplicitModelHandler.java:186) + at ch.qos.logback.core.model.processor.DefaultProcessor.secondPhaseTraverse(DefaultProcessor.java:257) + at ch.qos.logback.core.model.processor.DefaultProcessor.secondPhaseTraverse(DefaultProcessor.java:253) + at ch.qos.logback.core.model.processor.DefaultProcessor.secondPhaseTraverse(DefaultProcessor.java:253) + at ch.qos.logback.core.model.processor.DefaultProcessor.traversalLoop(DefaultProcessor.java:90) + at ch.qos.logback.core.model.processor.DefaultProcessor.process(DefaultProcessor.java:106) + at ch.qos.logback.core.joran.GenericXMLConfigurator.processModel(GenericXMLConfigurator.java:222) + at org.springframework.boot.logging.logback.SpringBootJoranConfigurator.processModel(SpringBootJoranConfigurator.java:133) + at ch.qos.logback.core.joran.GenericXMLConfigurator.doConfigure(GenericXMLConfigurator.java:178) + at ch.qos.logback.core.joran.GenericXMLConfigurator.doConfigure(GenericXMLConfigurator.java:123) + at ch.qos.logback.core.joran.GenericXMLConfigurator.doConfigure(GenericXMLConfigurator.java:66) + at org.springframework.boot.logging.logback.LogbackLoggingSystem.configureByResourceUrl(LogbackLoggingSystem.java:294) + at org.springframework.boot.logging.logback.LogbackLoggingSystem.lambda$loadConfiguration$1(LogbackLoggingSystem.java:255) + at org.springframework.boot.logging.logback.LogbackLoggingSystem.withLoggingSuppressed(LogbackLoggingSystem.java:474) + at org.springframework.boot.logging.logback.LogbackLoggingSystem.loadConfiguration(LogbackLoggingSystem.java:249) + ... 23 common frames omitted + Caused by: java.lang.ClassNotFoundException: ch.qos.logback.classic.encoder.PatternLayoutEncoder$AnsiColorConverter + at java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:641) + at java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:188) + at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:525) + at ch.qos.logback.core.util.OptionHelper.instantiateByClassNameAndParameter(OptionHelper.java:56) + ... 46 common frames omitted + Suppressed: ch.qos.logback.core.util.DynamicClassLoadingException: Failed to instantiate type ch.qos.logback.classic.encoder.PatternLayoutEncoder$AnsiColorConverter + at ch.qos.logback.core.util.OptionHelper.instantiateByClassNameAndParameter(OptionHelper.java:69) + at ch.qos.logback.core.util.OptionHelper.instantiateByClassName(OptionHelper.java:44) + at ch.qos.logback.core.util.OptionHelper.instantiateByClassName(OptionHelper.java:33) + at ch.qos.logback.core.pattern.parser.Compiler.createCompositeConverter(Compiler.java:130) + at ch.qos.logback.core.pattern.parser.Compiler.compile(Compiler.java:47) + at ch.qos.logback.core.pattern.parser.Parser.compile(Parser.java:87) + at ch.qos.logback.core.pattern.PatternLayoutBase.start(PatternLayoutBase.java:85) + at ch.qos.logback.classic.encoder.PatternLayoutEncoder.start(PatternLayoutEncoder.java:28) + at ch.qos.logback.core.model.processor.ImplicitModelHandler.postHandleComplex(ImplicitModelHandler.java:207) + at ch.qos.logback.core.model.processor.ImplicitModelHandler.postHandle(ImplicitModelHandler.java:186) + at ch.qos.logback.core.model.processor.DefaultProcessor.secondPhaseTraverse(DefaultProcessor.java:257) + at ch.qos.logback.core.model.processor.DefaultProcessor.secondPhaseTraverse(DefaultProcessor.java:253) + at ch.qos.logback.core.model.processor.DefaultProcessor.secondPhaseTraverse(DefaultProcessor.java:253) + at ch.qos.logback.core.model.processor.DefaultProcessor.traversalLoop(DefaultProcessor.java:90) + at ch.qos.logback.core.model.processor.DefaultProcessor.process(DefaultProcessor.java:106) + at ch.qos.logback.core.joran.GenericXMLConfigurator.processModel(GenericXMLConfigurator.java:222) + at org.springframework.boot.logging.logback.SpringBootJoranConfigurator.processModel(SpringBootJoranConfigurator.java:133) + at ch.qos.logback.core.joran.GenericXMLConfigurator.doConfigure(GenericXMLConfigurator.java:178) + at ch.qos.logback.core.joran.GenericXMLConfigurator.doConfigure(GenericXMLConfigurator.java:123) + at ch.qos.logback.core.joran.GenericXMLConfigurator.doConfigure(GenericXMLConfigurator.java:66) + at org.springframework.boot.logging.logback.LogbackLoggingSystem.configureByResourceUrl(LogbackLoggingSystem.java:294) + at org.springframework.boot.logging.logback.LogbackLoggingSystem.lambda$loadConfiguration$1(LogbackLoggingSystem.java:255) + at org.springframework.boot.logging.logback.LogbackLoggingSystem.withLoggingSuppressed(LogbackLoggingSystem.java:474) + at org.springframework.boot.logging.logback.LogbackLoggingSystem.loadConfiguration(LogbackLoggingSystem.java:249) + ... 23 common frames omitted + Caused by: java.lang.ClassNotFoundException: ch.qos.logback.classic.encoder.PatternLayoutEncoder$AnsiColorConverter + at java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:641) + at java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:188) + at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:525) + at ch.qos.logback.core.util.OptionHelper.instantiateByClassNameAndParameter(OptionHelper.java:56) + ... 46 common frames omitted +2024-09-23 19:45:50.377 [main] ERROR o.s.boot.SpringApplication - %PARSER_ERROR[location] Application run failed +java.lang.IllegalStateException: java.lang.IllegalStateException: Logback configuration error detected: +ERROR in ch.qos.logback.core.pattern.parser.Compiler@2974f221 - Failed to instantiate converter class [ch.qos.logback.classic.encoder.PatternLayoutEncoder$AnsiColorConverter] as a composite converter for keyword [clr] ch.qos.logback.core.util.DynamicClassLoadingException: Failed to instantiate type ch.qos.logback.classic.encoder.PatternLayoutEncoder$AnsiColorConverter +ERROR in ch.qos.logback.core.pattern.parser.Compiler@2974f221 - Failed to create converter for [%clr] keyword +ERROR in ch.qos.logback.core.pattern.parser.Compiler@2974f221 - Failed to instantiate converter class [ch.qos.logback.classic.encoder.PatternLayoutEncoder$AnsiColorConverter] as a composite converter for keyword [clr] ch.qos.logback.core.util.DynamicClassLoadingException: Failed to instantiate type ch.qos.logback.classic.encoder.PatternLayoutEncoder$AnsiColorConverter +ERROR in ch.qos.logback.core.pattern.parser.Compiler@2974f221 - Failed to create converter for [%clr] keyword +ERROR in ch.qos.logback.core.pattern.parser.Compiler@2974f221 - Failed to instantiate converter class [ch.qos.logback.classic.encoder.PatternLayoutEncoder$AnsiColorConverter] as a composite converter for keyword [clr] ch.qos.logback.core.util.DynamicClassLoadingException: Failed to instantiate type ch.qos.logback.classic.encoder.PatternLayoutEncoder$AnsiColorConverter +ERROR in ch.qos.logback.core.pattern.parser.Compiler@2974f221 - Failed to create converter for [%clr] keyword +ERROR in ch.qos.logback.core.pattern.parser.Compiler@2974f221 - Failed to instantiate converter class [ch.qos.logback.classic.encoder.PatternLayoutEncoder$AnsiColorConverter] as a composite converter for keyword [clr] ch.qos.logback.core.util.DynamicClassLoadingException: Failed to instantiate type ch.qos.logback.classic.encoder.PatternLayoutEncoder$AnsiColorConverter +ERROR in ch.qos.logback.core.pattern.parser.Compiler@2974f221 - Failed to create converter for [%clr] keyword +ERROR in ch.qos.logback.core.pattern.parser.Compiler@2974f221 - There is no conversion class registered for conversion word [location] +ERROR in ch.qos.logback.core.pattern.parser.Compiler@2974f221 - [location] is not a valid conversion word +ERROR in ch.qos.logback.core.pattern.parser.Compiler@58fe0499 - There is no conversion class registered for conversion word [location] +ERROR in ch.qos.logback.core.pattern.parser.Compiler@58fe0499 - [location] is not a valid conversion word + at org.springframework.boot.context.logging.LoggingApplicationListener.initializeSystem(LoggingApplicationListener.java:347) + at org.springframework.boot.context.logging.LoggingApplicationListener.initialize(LoggingApplicationListener.java:298) + at org.springframework.boot.context.logging.LoggingApplicationListener.onApplicationEnvironmentPreparedEvent(LoggingApplicationListener.java:246) + at org.springframework.boot.context.logging.LoggingApplicationListener.onApplicationEvent(LoggingApplicationListener.java:223) + at org.springframework.context.event.SimpleApplicationEventMulticaster.doInvokeListener(SimpleApplicationEventMulticaster.java:185) + at org.springframework.context.event.SimpleApplicationEventMulticaster.invokeListener(SimpleApplicationEventMulticaster.java:178) + at org.springframework.context.event.SimpleApplicationEventMulticaster.multicastEvent(SimpleApplicationEventMulticaster.java:156) + at org.springframework.context.event.SimpleApplicationEventMulticaster.multicastEvent(SimpleApplicationEventMulticaster.java:138) + at org.springframework.boot.context.event.EventPublishingRunListener.multicastInitialEvent(EventPublishingRunListener.java:136) + at org.springframework.boot.context.event.EventPublishingRunListener.environmentPrepared(EventPublishingRunListener.java:81) + at org.springframework.boot.SpringApplicationRunListeners.lambda$environmentPrepared$2(SpringApplicationRunListeners.java:64) + at java.base/java.lang.Iterable.forEach(Iterable.java:75) + at org.springframework.boot.SpringApplicationRunListeners.doWithListeners(SpringApplicationRunListeners.java:118) + at org.springframework.boot.SpringApplicationRunListeners.doWithListeners(SpringApplicationRunListeners.java:112) + at org.springframework.boot.SpringApplicationRunListeners.environmentPrepared(SpringApplicationRunListeners.java:63) + at org.springframework.boot.SpringApplication.prepareEnvironment(SpringApplication.java:370) + at org.springframework.boot.SpringApplication.run(SpringApplication.java:330) + at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) + at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) + at com.guaiguailang.harmony.HarmonyLifeServerApplication.main(HarmonyLifeServerApplication.java:16) +Caused by: java.lang.IllegalStateException: Logback configuration error detected: +ERROR in ch.qos.logback.core.pattern.parser.Compiler@2974f221 - Failed to instantiate converter class [ch.qos.logback.classic.encoder.PatternLayoutEncoder$AnsiColorConverter] as a composite converter for keyword [clr] ch.qos.logback.core.util.DynamicClassLoadingException: Failed to instantiate type ch.qos.logback.classic.encoder.PatternLayoutEncoder$AnsiColorConverter +ERROR in ch.qos.logback.core.pattern.parser.Compiler@2974f221 - Failed to create converter for [%clr] keyword +ERROR in ch.qos.logback.core.pattern.parser.Compiler@2974f221 - Failed to instantiate converter class [ch.qos.logback.classic.encoder.PatternLayoutEncoder$AnsiColorConverter] as a composite converter for keyword [clr] ch.qos.logback.core.util.DynamicClassLoadingException: Failed to instantiate type ch.qos.logback.classic.encoder.PatternLayoutEncoder$AnsiColorConverter +ERROR in ch.qos.logback.core.pattern.parser.Compiler@2974f221 - Failed to create converter for [%clr] keyword +ERROR in ch.qos.logback.core.pattern.parser.Compiler@2974f221 - Failed to instantiate converter class [ch.qos.logback.classic.encoder.PatternLayoutEncoder$AnsiColorConverter] as a composite converter for keyword [clr] ch.qos.logback.core.util.DynamicClassLoadingException: Failed to instantiate type ch.qos.logback.classic.encoder.PatternLayoutEncoder$AnsiColorConverter +ERROR in ch.qos.logback.core.pattern.parser.Compiler@2974f221 - Failed to create converter for [%clr] keyword +ERROR in ch.qos.logback.core.pattern.parser.Compiler@2974f221 - Failed to instantiate converter class [ch.qos.logback.classic.encoder.PatternLayoutEncoder$AnsiColorConverter] as a composite converter for keyword [clr] ch.qos.logback.core.util.DynamicClassLoadingException: Failed to instantiate type ch.qos.logback.classic.encoder.PatternLayoutEncoder$AnsiColorConverter +ERROR in ch.qos.logback.core.pattern.parser.Compiler@2974f221 - Failed to create converter for [%clr] keyword +ERROR in ch.qos.logback.core.pattern.parser.Compiler@2974f221 - There is no conversion class registered for conversion word [location] +ERROR in ch.qos.logback.core.pattern.parser.Compiler@2974f221 - [location] is not a valid conversion word +ERROR in ch.qos.logback.core.pattern.parser.Compiler@58fe0499 - There is no conversion class registered for conversion word [location] +ERROR in ch.qos.logback.core.pattern.parser.Compiler@58fe0499 - [location] is not a valid conversion word + at org.springframework.boot.logging.logback.LogbackLoggingSystem.reportConfigurationErrorsIfNecessary(LogbackLoggingSystem.java:284) + at org.springframework.boot.logging.logback.LogbackLoggingSystem.loadConfiguration(LogbackLoggingSystem.java:262) + at org.springframework.boot.logging.AbstractLoggingSystem.initializeWithSpecificConfig(AbstractLoggingSystem.java:67) + at org.springframework.boot.logging.AbstractLoggingSystem.initialize(AbstractLoggingSystem.java:58) + at org.springframework.boot.logging.logback.LogbackLoggingSystem.initialize(LogbackLoggingSystem.java:193) + at org.springframework.boot.context.logging.LoggingApplicationListener.initializeSystem(LoggingApplicationListener.java:335) + ... 19 common frames omitted + Suppressed: ch.qos.logback.core.util.DynamicClassLoadingException: Failed to instantiate type ch.qos.logback.classic.encoder.PatternLayoutEncoder$AnsiColorConverter + at ch.qos.logback.core.util.OptionHelper.instantiateByClassNameAndParameter(OptionHelper.java:69) + at ch.qos.logback.core.util.OptionHelper.instantiateByClassName(OptionHelper.java:44) + at ch.qos.logback.core.util.OptionHelper.instantiateByClassName(OptionHelper.java:33) + at ch.qos.logback.core.pattern.parser.Compiler.createCompositeConverter(Compiler.java:130) + at ch.qos.logback.core.pattern.parser.Compiler.compile(Compiler.java:47) + at ch.qos.logback.core.pattern.parser.Parser.compile(Parser.java:87) + at ch.qos.logback.core.pattern.PatternLayoutBase.start(PatternLayoutBase.java:85) + at ch.qos.logback.classic.encoder.PatternLayoutEncoder.start(PatternLayoutEncoder.java:28) + at ch.qos.logback.core.model.processor.ImplicitModelHandler.postHandleComplex(ImplicitModelHandler.java:207) + at ch.qos.logback.core.model.processor.ImplicitModelHandler.postHandle(ImplicitModelHandler.java:186) + at ch.qos.logback.core.model.processor.DefaultProcessor.secondPhaseTraverse(DefaultProcessor.java:257) + at ch.qos.logback.core.model.processor.DefaultProcessor.secondPhaseTraverse(DefaultProcessor.java:253) + at ch.qos.logback.core.model.processor.DefaultProcessor.secondPhaseTraverse(DefaultProcessor.java:253) + at ch.qos.logback.core.model.processor.DefaultProcessor.traversalLoop(DefaultProcessor.java:90) + at ch.qos.logback.core.model.processor.DefaultProcessor.process(DefaultProcessor.java:106) + at ch.qos.logback.core.joran.GenericXMLConfigurator.processModel(GenericXMLConfigurator.java:222) + at org.springframework.boot.logging.logback.SpringBootJoranConfigurator.processModel(SpringBootJoranConfigurator.java:133) + at ch.qos.logback.core.joran.GenericXMLConfigurator.doConfigure(GenericXMLConfigurator.java:178) + at ch.qos.logback.core.joran.GenericXMLConfigurator.doConfigure(GenericXMLConfigurator.java:123) + at ch.qos.logback.core.joran.GenericXMLConfigurator.doConfigure(GenericXMLConfigurator.java:66) + at org.springframework.boot.logging.logback.LogbackLoggingSystem.configureByResourceUrl(LogbackLoggingSystem.java:294) + at org.springframework.boot.logging.logback.LogbackLoggingSystem.lambda$loadConfiguration$1(LogbackLoggingSystem.java:255) + at org.springframework.boot.logging.logback.LogbackLoggingSystem.withLoggingSuppressed(LogbackLoggingSystem.java:474) + at org.springframework.boot.logging.logback.LogbackLoggingSystem.loadConfiguration(LogbackLoggingSystem.java:249) + ... 23 common frames omitted + Caused by: java.lang.ClassNotFoundException: ch.qos.logback.classic.encoder.PatternLayoutEncoder$AnsiColorConverter + at java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:641) + at java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:188) + at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:525) + at ch.qos.logback.core.util.OptionHelper.instantiateByClassNameAndParameter(OptionHelper.java:56) + ... 46 common frames omitted + Suppressed: ch.qos.logback.core.util.DynamicClassLoadingException: Failed to instantiate type ch.qos.logback.classic.encoder.PatternLayoutEncoder$AnsiColorConverter + at ch.qos.logback.core.util.OptionHelper.instantiateByClassNameAndParameter(OptionHelper.java:69) + at ch.qos.logback.core.util.OptionHelper.instantiateByClassName(OptionHelper.java:44) + at ch.qos.logback.core.util.OptionHelper.instantiateByClassName(OptionHelper.java:33) + at ch.qos.logback.core.pattern.parser.Compiler.createCompositeConverter(Compiler.java:130) + at ch.qos.logback.core.pattern.parser.Compiler.compile(Compiler.java:47) + at ch.qos.logback.core.pattern.parser.Parser.compile(Parser.java:87) + at ch.qos.logback.core.pattern.PatternLayoutBase.start(PatternLayoutBase.java:85) + at ch.qos.logback.classic.encoder.PatternLayoutEncoder.start(PatternLayoutEncoder.java:28) + at ch.qos.logback.core.model.processor.ImplicitModelHandler.postHandleComplex(ImplicitModelHandler.java:207) + at ch.qos.logback.core.model.processor.ImplicitModelHandler.postHandle(ImplicitModelHandler.java:186) + at ch.qos.logback.core.model.processor.DefaultProcessor.secondPhaseTraverse(DefaultProcessor.java:257) + at ch.qos.logback.core.model.processor.DefaultProcessor.secondPhaseTraverse(DefaultProcessor.java:253) + at ch.qos.logback.core.model.processor.DefaultProcessor.secondPhaseTraverse(DefaultProcessor.java:253) + at ch.qos.logback.core.model.processor.DefaultProcessor.traversalLoop(DefaultProcessor.java:90) + at ch.qos.logback.core.model.processor.DefaultProcessor.process(DefaultProcessor.java:106) + at ch.qos.logback.core.joran.GenericXMLConfigurator.processModel(GenericXMLConfigurator.java:222) + at org.springframework.boot.logging.logback.SpringBootJoranConfigurator.processModel(SpringBootJoranConfigurator.java:133) + at ch.qos.logback.core.joran.GenericXMLConfigurator.doConfigure(GenericXMLConfigurator.java:178) + at ch.qos.logback.core.joran.GenericXMLConfigurator.doConfigure(GenericXMLConfigurator.java:123) + at ch.qos.logback.core.joran.GenericXMLConfigurator.doConfigure(GenericXMLConfigurator.java:66) + at org.springframework.boot.logging.logback.LogbackLoggingSystem.configureByResourceUrl(LogbackLoggingSystem.java:294) + at org.springframework.boot.logging.logback.LogbackLoggingSystem.lambda$loadConfiguration$1(LogbackLoggingSystem.java:255) + at org.springframework.boot.logging.logback.LogbackLoggingSystem.withLoggingSuppressed(LogbackLoggingSystem.java:474) + at org.springframework.boot.logging.logback.LogbackLoggingSystem.loadConfiguration(LogbackLoggingSystem.java:249) + ... 23 common frames omitted + Caused by: java.lang.ClassNotFoundException: ch.qos.logback.classic.encoder.PatternLayoutEncoder$AnsiColorConverter + at java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:641) + at java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:188) + at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:525) + at ch.qos.logback.core.util.OptionHelper.instantiateByClassNameAndParameter(OptionHelper.java:56) + ... 46 common frames omitted + Suppressed: ch.qos.logback.core.util.DynamicClassLoadingException: Failed to instantiate type ch.qos.logback.classic.encoder.PatternLayoutEncoder$AnsiColorConverter + at ch.qos.logback.core.util.OptionHelper.instantiateByClassNameAndParameter(OptionHelper.java:69) + at ch.qos.logback.core.util.OptionHelper.instantiateByClassName(OptionHelper.java:44) + at ch.qos.logback.core.util.OptionHelper.instantiateByClassName(OptionHelper.java:33) + at ch.qos.logback.core.pattern.parser.Compiler.createCompositeConverter(Compiler.java:130) + at ch.qos.logback.core.pattern.parser.Compiler.compile(Compiler.java:47) + at ch.qos.logback.core.pattern.parser.Parser.compile(Parser.java:87) + at ch.qos.logback.core.pattern.PatternLayoutBase.start(PatternLayoutBase.java:85) + at ch.qos.logback.classic.encoder.PatternLayoutEncoder.start(PatternLayoutEncoder.java:28) + at ch.qos.logback.core.model.processor.ImplicitModelHandler.postHandleComplex(ImplicitModelHandler.java:207) + at ch.qos.logback.core.model.processor.ImplicitModelHandler.postHandle(ImplicitModelHandler.java:186) + at ch.qos.logback.core.model.processor.DefaultProcessor.secondPhaseTraverse(DefaultProcessor.java:257) + at ch.qos.logback.core.model.processor.DefaultProcessor.secondPhaseTraverse(DefaultProcessor.java:253) + at ch.qos.logback.core.model.processor.DefaultProcessor.secondPhaseTraverse(DefaultProcessor.java:253) + at ch.qos.logback.core.model.processor.DefaultProcessor.traversalLoop(DefaultProcessor.java:90) + at ch.qos.logback.core.model.processor.DefaultProcessor.process(DefaultProcessor.java:106) + at ch.qos.logback.core.joran.GenericXMLConfigurator.processModel(GenericXMLConfigurator.java:222) + at org.springframework.boot.logging.logback.SpringBootJoranConfigurator.processModel(SpringBootJoranConfigurator.java:133) + at ch.qos.logback.core.joran.GenericXMLConfigurator.doConfigure(GenericXMLConfigurator.java:178) + at ch.qos.logback.core.joran.GenericXMLConfigurator.doConfigure(GenericXMLConfigurator.java:123) + at ch.qos.logback.core.joran.GenericXMLConfigurator.doConfigure(GenericXMLConfigurator.java:66) + at org.springframework.boot.logging.logback.LogbackLoggingSystem.configureByResourceUrl(LogbackLoggingSystem.java:294) + at org.springframework.boot.logging.logback.LogbackLoggingSystem.lambda$loadConfiguration$1(LogbackLoggingSystem.java:255) + at org.springframework.boot.logging.logback.LogbackLoggingSystem.withLoggingSuppressed(LogbackLoggingSystem.java:474) + at org.springframework.boot.logging.logback.LogbackLoggingSystem.loadConfiguration(LogbackLoggingSystem.java:249) + ... 23 common frames omitted + Caused by: java.lang.ClassNotFoundException: ch.qos.logback.classic.encoder.PatternLayoutEncoder$AnsiColorConverter + at java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:641) + at java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:188) + at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:525) + at ch.qos.logback.core.util.OptionHelper.instantiateByClassNameAndParameter(OptionHelper.java:56) + ... 46 common frames omitted + Suppressed: ch.qos.logback.core.util.DynamicClassLoadingException: Failed to instantiate type ch.qos.logback.classic.encoder.PatternLayoutEncoder$AnsiColorConverter + at ch.qos.logback.core.util.OptionHelper.instantiateByClassNameAndParameter(OptionHelper.java:69) + at ch.qos.logback.core.util.OptionHelper.instantiateByClassName(OptionHelper.java:44) + at ch.qos.logback.core.util.OptionHelper.instantiateByClassName(OptionHelper.java:33) + at ch.qos.logback.core.pattern.parser.Compiler.createCompositeConverter(Compiler.java:130) + at ch.qos.logback.core.pattern.parser.Compiler.compile(Compiler.java:47) + at ch.qos.logback.core.pattern.parser.Parser.compile(Parser.java:87) + at ch.qos.logback.core.pattern.PatternLayoutBase.start(PatternLayoutBase.java:85) + at ch.qos.logback.classic.encoder.PatternLayoutEncoder.start(PatternLayoutEncoder.java:28) + at ch.qos.logback.core.model.processor.ImplicitModelHandler.postHandleComplex(ImplicitModelHandler.java:207) + at ch.qos.logback.core.model.processor.ImplicitModelHandler.postHandle(ImplicitModelHandler.java:186) + at ch.qos.logback.core.model.processor.DefaultProcessor.secondPhaseTraverse(DefaultProcessor.java:257) + at ch.qos.logback.core.model.processor.DefaultProcessor.secondPhaseTraverse(DefaultProcessor.java:253) + at ch.qos.logback.core.model.processor.DefaultProcessor.secondPhaseTraverse(DefaultProcessor.java:253) + at ch.qos.logback.core.model.processor.DefaultProcessor.traversalLoop(DefaultProcessor.java:90) + at ch.qos.logback.core.model.processor.DefaultProcessor.process(DefaultProcessor.java:106) + at ch.qos.logback.core.joran.GenericXMLConfigurator.processModel(GenericXMLConfigurator.java:222) + at org.springframework.boot.logging.logback.SpringBootJoranConfigurator.processModel(SpringBootJoranConfigurator.java:133) + at ch.qos.logback.core.joran.GenericXMLConfigurator.doConfigure(GenericXMLConfigurator.java:178) + at ch.qos.logback.core.joran.GenericXMLConfigurator.doConfigure(GenericXMLConfigurator.java:123) + at ch.qos.logback.core.joran.GenericXMLConfigurator.doConfigure(GenericXMLConfigurator.java:66) + at org.springframework.boot.logging.logback.LogbackLoggingSystem.configureByResourceUrl(LogbackLoggingSystem.java:294) + at org.springframework.boot.logging.logback.LogbackLoggingSystem.lambda$loadConfiguration$1(LogbackLoggingSystem.java:255) + at org.springframework.boot.logging.logback.LogbackLoggingSystem.withLoggingSuppressed(LogbackLoggingSystem.java:474) + at org.springframework.boot.logging.logback.LogbackLoggingSystem.loadConfiguration(LogbackLoggingSystem.java:249) + ... 23 common frames omitted + Caused by: java.lang.ClassNotFoundException: ch.qos.logback.classic.encoder.PatternLayoutEncoder$AnsiColorConverter + at java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:641) + at java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:188) + at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:525) + at ch.qos.logback.core.util.OptionHelper.instantiateByClassNameAndParameter(OptionHelper.java:56) + ... 46 common frames omitted +2024-09-23 19:46:54.349 [main] ERROR o.s.boot.SpringApplication - %PARSER_ERROR[location] Application run failed +java.lang.IllegalStateException: java.lang.IllegalStateException: Logback configuration error detected: +ERROR in ch.qos.logback.core.pattern.parser.Compiler@478ee483 - There is no conversion class registered for conversion word [ansi] +ERROR in ch.qos.logback.core.pattern.parser.Compiler@478ee483 - [ansi] is not a valid conversion word +ERROR in ch.qos.logback.core.pattern.parser.Compiler@478ee483 - There is no conversion class registered for conversion word [reset] +ERROR in ch.qos.logback.core.pattern.parser.Compiler@478ee483 - [reset] is not a valid conversion word +ERROR in ch.qos.logback.core.pattern.parser.Compiler@478ee483 - There is no conversion class registered for conversion word [ansi] +ERROR in ch.qos.logback.core.pattern.parser.Compiler@478ee483 - [ansi] is not a valid conversion word +ERROR in ch.qos.logback.core.pattern.parser.Compiler@478ee483 - There is no conversion class registered for conversion word [reset] +ERROR in ch.qos.logback.core.pattern.parser.Compiler@478ee483 - [reset] is not a valid conversion word +ERROR in ch.qos.logback.core.pattern.parser.Compiler@478ee483 - There is no conversion class registered for conversion word [ansi] +ERROR in ch.qos.logback.core.pattern.parser.Compiler@478ee483 - [ansi] is not a valid conversion word +ERROR in ch.qos.logback.core.pattern.parser.Compiler@478ee483 - There is no conversion class registered for conversion word [reset] +ERROR in ch.qos.logback.core.pattern.parser.Compiler@478ee483 - [reset] is not a valid conversion word +ERROR in ch.qos.logback.core.pattern.parser.Compiler@478ee483 - There is no conversion class registered for conversion word [ansi] +ERROR in ch.qos.logback.core.pattern.parser.Compiler@478ee483 - [ansi] is not a valid conversion word +ERROR in ch.qos.logback.core.pattern.parser.Compiler@478ee483 - There is no conversion class registered for conversion word [reset] +ERROR in ch.qos.logback.core.pattern.parser.Compiler@478ee483 - [reset] is not a valid conversion word +ERROR in ch.qos.logback.core.pattern.parser.Compiler@478ee483 - There is no conversion class registered for conversion word [ansi] +ERROR in ch.qos.logback.core.pattern.parser.Compiler@478ee483 - [ansi] is not a valid conversion word +ERROR in ch.qos.logback.core.pattern.parser.Compiler@478ee483 - There is no conversion class registered for conversion word [reset] +ERROR in ch.qos.logback.core.pattern.parser.Compiler@478ee483 - [reset] is not a valid conversion word +ERROR in ch.qos.logback.core.pattern.parser.Compiler@1a7288a3 - There is no conversion class registered for conversion word [location] +ERROR in ch.qos.logback.core.pattern.parser.Compiler@1a7288a3 - [location] is not a valid conversion word + at org.springframework.boot.context.logging.LoggingApplicationListener.initializeSystem(LoggingApplicationListener.java:347) + at org.springframework.boot.context.logging.LoggingApplicationListener.initialize(LoggingApplicationListener.java:298) + at org.springframework.boot.context.logging.LoggingApplicationListener.onApplicationEnvironmentPreparedEvent(LoggingApplicationListener.java:246) + at org.springframework.boot.context.logging.LoggingApplicationListener.onApplicationEvent(LoggingApplicationListener.java:223) + at org.springframework.context.event.SimpleApplicationEventMulticaster.doInvokeListener(SimpleApplicationEventMulticaster.java:185) + at org.springframework.context.event.SimpleApplicationEventMulticaster.invokeListener(SimpleApplicationEventMulticaster.java:178) + at org.springframework.context.event.SimpleApplicationEventMulticaster.multicastEvent(SimpleApplicationEventMulticaster.java:156) + at org.springframework.context.event.SimpleApplicationEventMulticaster.multicastEvent(SimpleApplicationEventMulticaster.java:138) + at org.springframework.boot.context.event.EventPublishingRunListener.multicastInitialEvent(EventPublishingRunListener.java:136) + at org.springframework.boot.context.event.EventPublishingRunListener.environmentPrepared(EventPublishingRunListener.java:81) + at org.springframework.boot.SpringApplicationRunListeners.lambda$environmentPrepared$2(SpringApplicationRunListeners.java:64) + at java.base/java.lang.Iterable.forEach(Iterable.java:75) + at org.springframework.boot.SpringApplicationRunListeners.doWithListeners(SpringApplicationRunListeners.java:118) + at org.springframework.boot.SpringApplicationRunListeners.doWithListeners(SpringApplicationRunListeners.java:112) + at org.springframework.boot.SpringApplicationRunListeners.environmentPrepared(SpringApplicationRunListeners.java:63) + at org.springframework.boot.SpringApplication.prepareEnvironment(SpringApplication.java:370) + at org.springframework.boot.SpringApplication.run(SpringApplication.java:330) + at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) + at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) + at com.guaiguailang.harmony.HarmonyLifeServerApplication.main(HarmonyLifeServerApplication.java:16) +Caused by: java.lang.IllegalStateException: Logback configuration error detected: +ERROR in ch.qos.logback.core.pattern.parser.Compiler@478ee483 - There is no conversion class registered for conversion word [ansi] +ERROR in ch.qos.logback.core.pattern.parser.Compiler@478ee483 - [ansi] is not a valid conversion word +ERROR in ch.qos.logback.core.pattern.parser.Compiler@478ee483 - There is no conversion class registered for conversion word [reset] +ERROR in ch.qos.logback.core.pattern.parser.Compiler@478ee483 - [reset] is not a valid conversion word +ERROR in ch.qos.logback.core.pattern.parser.Compiler@478ee483 - There is no conversion class registered for conversion word [ansi] +ERROR in ch.qos.logback.core.pattern.parser.Compiler@478ee483 - [ansi] is not a valid conversion word +ERROR in ch.qos.logback.core.pattern.parser.Compiler@478ee483 - There is no conversion class registered for conversion word [reset] +ERROR in ch.qos.logback.core.pattern.parser.Compiler@478ee483 - [reset] is not a valid conversion word +ERROR in ch.qos.logback.core.pattern.parser.Compiler@478ee483 - There is no conversion class registered for conversion word [ansi] +ERROR in ch.qos.logback.core.pattern.parser.Compiler@478ee483 - [ansi] is not a valid conversion word +ERROR in ch.qos.logback.core.pattern.parser.Compiler@478ee483 - There is no conversion class registered for conversion word [reset] +ERROR in ch.qos.logback.core.pattern.parser.Compiler@478ee483 - [reset] is not a valid conversion word +ERROR in ch.qos.logback.core.pattern.parser.Compiler@478ee483 - There is no conversion class registered for conversion word [ansi] +ERROR in ch.qos.logback.core.pattern.parser.Compiler@478ee483 - [ansi] is not a valid conversion word +ERROR in ch.qos.logback.core.pattern.parser.Compiler@478ee483 - There is no conversion class registered for conversion word [reset] +ERROR in ch.qos.logback.core.pattern.parser.Compiler@478ee483 - [reset] is not a valid conversion word +ERROR in ch.qos.logback.core.pattern.parser.Compiler@478ee483 - There is no conversion class registered for conversion word [ansi] +ERROR in ch.qos.logback.core.pattern.parser.Compiler@478ee483 - [ansi] is not a valid conversion word +ERROR in ch.qos.logback.core.pattern.parser.Compiler@478ee483 - There is no conversion class registered for conversion word [reset] +ERROR in ch.qos.logback.core.pattern.parser.Compiler@478ee483 - [reset] is not a valid conversion word +ERROR in ch.qos.logback.core.pattern.parser.Compiler@1a7288a3 - There is no conversion class registered for conversion word [location] +ERROR in ch.qos.logback.core.pattern.parser.Compiler@1a7288a3 - [location] is not a valid conversion word + at org.springframework.boot.logging.logback.LogbackLoggingSystem.reportConfigurationErrorsIfNecessary(LogbackLoggingSystem.java:284) + at org.springframework.boot.logging.logback.LogbackLoggingSystem.loadConfiguration(LogbackLoggingSystem.java:262) + at org.springframework.boot.logging.AbstractLoggingSystem.initializeWithSpecificConfig(AbstractLoggingSystem.java:67) + at org.springframework.boot.logging.AbstractLoggingSystem.initialize(AbstractLoggingSystem.java:58) + at org.springframework.boot.logging.logback.LogbackLoggingSystem.initialize(LogbackLoggingSystem.java:193) + at org.springframework.boot.context.logging.LoggingApplicationListener.initializeSystem(LoggingApplicationListener.java:335) + ... 19 common frames omitted +2024-09-23 19:51:42.918 [main] ERROR o.s.boot.SpringApplication - %PARSER_ERROR[location] Application run failed +java.lang.IllegalStateException: java.lang.IllegalStateException: Logback configuration error detected: +ERROR in ch.qos.logback.core.pattern.parser.Compiler@478ee483 - There is no conversion class registered for conversion word [ansi] +ERROR in ch.qos.logback.core.pattern.parser.Compiler@478ee483 - [ansi] is not a valid conversion word +ERROR in ch.qos.logback.core.pattern.parser.Compiler@478ee483 - There is no conversion class registered for conversion word [reset] +ERROR in ch.qos.logback.core.pattern.parser.Compiler@478ee483 - [reset] is not a valid conversion word +ERROR in ch.qos.logback.core.pattern.parser.Compiler@478ee483 - There is no conversion class registered for conversion word [ansi] +ERROR in ch.qos.logback.core.pattern.parser.Compiler@478ee483 - [ansi] is not a valid conversion word +ERROR in ch.qos.logback.core.pattern.parser.Compiler@478ee483 - There is no conversion class registered for conversion word [reset] +ERROR in ch.qos.logback.core.pattern.parser.Compiler@478ee483 - [reset] is not a valid conversion word +ERROR in ch.qos.logback.core.pattern.parser.Compiler@478ee483 - There is no conversion class registered for conversion word [ansi] +ERROR in ch.qos.logback.core.pattern.parser.Compiler@478ee483 - [ansi] is not a valid conversion word +ERROR in ch.qos.logback.core.pattern.parser.Compiler@478ee483 - There is no conversion class registered for conversion word [reset] +ERROR in ch.qos.logback.core.pattern.parser.Compiler@478ee483 - [reset] is not a valid conversion word +ERROR in ch.qos.logback.core.pattern.parser.Compiler@478ee483 - There is no conversion class registered for conversion word [ansi] +ERROR in ch.qos.logback.core.pattern.parser.Compiler@478ee483 - [ansi] is not a valid conversion word +ERROR in ch.qos.logback.core.pattern.parser.Compiler@478ee483 - There is no conversion class registered for conversion word [reset] +ERROR in ch.qos.logback.core.pattern.parser.Compiler@478ee483 - [reset] is not a valid conversion word +ERROR in ch.qos.logback.core.pattern.parser.Compiler@478ee483 - There is no conversion class registered for conversion word [ansi] +ERROR in ch.qos.logback.core.pattern.parser.Compiler@478ee483 - [ansi] is not a valid conversion word +ERROR in ch.qos.logback.core.pattern.parser.Compiler@478ee483 - There is no conversion class registered for conversion word [reset] +ERROR in ch.qos.logback.core.pattern.parser.Compiler@478ee483 - [reset] is not a valid conversion word +ERROR in ch.qos.logback.core.pattern.parser.Compiler@1a7288a3 - There is no conversion class registered for conversion word [location] +ERROR in ch.qos.logback.core.pattern.parser.Compiler@1a7288a3 - [location] is not a valid conversion word + at org.springframework.boot.context.logging.LoggingApplicationListener.initializeSystem(LoggingApplicationListener.java:347) + at org.springframework.boot.context.logging.LoggingApplicationListener.initialize(LoggingApplicationListener.java:298) + at org.springframework.boot.context.logging.LoggingApplicationListener.onApplicationEnvironmentPreparedEvent(LoggingApplicationListener.java:246) + at org.springframework.boot.context.logging.LoggingApplicationListener.onApplicationEvent(LoggingApplicationListener.java:223) + at org.springframework.context.event.SimpleApplicationEventMulticaster.doInvokeListener(SimpleApplicationEventMulticaster.java:185) + at org.springframework.context.event.SimpleApplicationEventMulticaster.invokeListener(SimpleApplicationEventMulticaster.java:178) + at org.springframework.context.event.SimpleApplicationEventMulticaster.multicastEvent(SimpleApplicationEventMulticaster.java:156) + at org.springframework.context.event.SimpleApplicationEventMulticaster.multicastEvent(SimpleApplicationEventMulticaster.java:138) + at org.springframework.boot.context.event.EventPublishingRunListener.multicastInitialEvent(EventPublishingRunListener.java:136) + at org.springframework.boot.context.event.EventPublishingRunListener.environmentPrepared(EventPublishingRunListener.java:81) + at org.springframework.boot.SpringApplicationRunListeners.lambda$environmentPrepared$2(SpringApplicationRunListeners.java:64) + at java.base/java.lang.Iterable.forEach(Iterable.java:75) + at org.springframework.boot.SpringApplicationRunListeners.doWithListeners(SpringApplicationRunListeners.java:118) + at org.springframework.boot.SpringApplicationRunListeners.doWithListeners(SpringApplicationRunListeners.java:112) + at org.springframework.boot.SpringApplicationRunListeners.environmentPrepared(SpringApplicationRunListeners.java:63) + at org.springframework.boot.SpringApplication.prepareEnvironment(SpringApplication.java:370) + at org.springframework.boot.SpringApplication.run(SpringApplication.java:330) + at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) + at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) + at com.guaiguailang.harmony.HarmonyLifeServerApplication.main(HarmonyLifeServerApplication.java:16) +Caused by: java.lang.IllegalStateException: Logback configuration error detected: +ERROR in ch.qos.logback.core.pattern.parser.Compiler@478ee483 - There is no conversion class registered for conversion word [ansi] +ERROR in ch.qos.logback.core.pattern.parser.Compiler@478ee483 - [ansi] is not a valid conversion word +ERROR in ch.qos.logback.core.pattern.parser.Compiler@478ee483 - There is no conversion class registered for conversion word [reset] +ERROR in ch.qos.logback.core.pattern.parser.Compiler@478ee483 - [reset] is not a valid conversion word +ERROR in ch.qos.logback.core.pattern.parser.Compiler@478ee483 - There is no conversion class registered for conversion word [ansi] +ERROR in ch.qos.logback.core.pattern.parser.Compiler@478ee483 - [ansi] is not a valid conversion word +ERROR in ch.qos.logback.core.pattern.parser.Compiler@478ee483 - There is no conversion class registered for conversion word [reset] +ERROR in ch.qos.logback.core.pattern.parser.Compiler@478ee483 - [reset] is not a valid conversion word +ERROR in ch.qos.logback.core.pattern.parser.Compiler@478ee483 - There is no conversion class registered for conversion word [ansi] +ERROR in ch.qos.logback.core.pattern.parser.Compiler@478ee483 - [ansi] is not a valid conversion word +ERROR in ch.qos.logback.core.pattern.parser.Compiler@478ee483 - There is no conversion class registered for conversion word [reset] +ERROR in ch.qos.logback.core.pattern.parser.Compiler@478ee483 - [reset] is not a valid conversion word +ERROR in ch.qos.logback.core.pattern.parser.Compiler@478ee483 - There is no conversion class registered for conversion word [ansi] +ERROR in ch.qos.logback.core.pattern.parser.Compiler@478ee483 - [ansi] is not a valid conversion word +ERROR in ch.qos.logback.core.pattern.parser.Compiler@478ee483 - There is no conversion class registered for conversion word [reset] +ERROR in ch.qos.logback.core.pattern.parser.Compiler@478ee483 - [reset] is not a valid conversion word +ERROR in ch.qos.logback.core.pattern.parser.Compiler@478ee483 - There is no conversion class registered for conversion word [ansi] +ERROR in ch.qos.logback.core.pattern.parser.Compiler@478ee483 - [ansi] is not a valid conversion word +ERROR in ch.qos.logback.core.pattern.parser.Compiler@478ee483 - There is no conversion class registered for conversion word [reset] +ERROR in ch.qos.logback.core.pattern.parser.Compiler@478ee483 - [reset] is not a valid conversion word +ERROR in ch.qos.logback.core.pattern.parser.Compiler@1a7288a3 - There is no conversion class registered for conversion word [location] +ERROR in ch.qos.logback.core.pattern.parser.Compiler@1a7288a3 - [location] is not a valid conversion word + at org.springframework.boot.logging.logback.LogbackLoggingSystem.reportConfigurationErrorsIfNecessary(LogbackLoggingSystem.java:284) + at org.springframework.boot.logging.logback.LogbackLoggingSystem.loadConfiguration(LogbackLoggingSystem.java:262) + at org.springframework.boot.logging.AbstractLoggingSystem.initializeWithSpecificConfig(AbstractLoggingSystem.java:67) + at org.springframework.boot.logging.AbstractLoggingSystem.initialize(AbstractLoggingSystem.java:58) + at org.springframework.boot.logging.logback.LogbackLoggingSystem.initialize(LogbackLoggingSystem.java:193) + at org.springframework.boot.context.logging.LoggingApplicationListener.initializeSystem(LoggingApplicationListener.java:335) + ... 19 common frames omitted +2024-09-23 20:14:30.992 [main] ERROR o.s.boot.SpringApplication - Application run failed +java.lang.IllegalStateException: java.lang.IllegalStateException: Logback configuration error detected: +ERROR in ch.qos.logback.core.pattern.parser.Compiler@478ee483 - There is no conversion class registered for conversion word [ansi] +ERROR in ch.qos.logback.core.pattern.parser.Compiler@478ee483 - [ansi] is not a valid conversion word +ERROR in ch.qos.logback.core.pattern.parser.Compiler@478ee483 - There is no conversion class registered for conversion word [ansi] +ERROR in ch.qos.logback.core.pattern.parser.Compiler@478ee483 - [ansi] is not a valid conversion word +ERROR in ch.qos.logback.core.pattern.parser.Compiler@478ee483 - There is no conversion class registered for conversion word [ansi] +ERROR in ch.qos.logback.core.pattern.parser.Compiler@478ee483 - [ansi] is not a valid conversion word +ERROR in ch.qos.logback.core.pattern.parser.Compiler@478ee483 - There is no conversion class registered for conversion word [ansi] +ERROR in ch.qos.logback.core.pattern.parser.Compiler@478ee483 - [ansi] is not a valid conversion word + at org.springframework.boot.context.logging.LoggingApplicationListener.initializeSystem(LoggingApplicationListener.java:347) + at org.springframework.boot.context.logging.LoggingApplicationListener.initialize(LoggingApplicationListener.java:298) + at org.springframework.boot.context.logging.LoggingApplicationListener.onApplicationEnvironmentPreparedEvent(LoggingApplicationListener.java:246) + at org.springframework.boot.context.logging.LoggingApplicationListener.onApplicationEvent(LoggingApplicationListener.java:223) + at org.springframework.context.event.SimpleApplicationEventMulticaster.doInvokeListener(SimpleApplicationEventMulticaster.java:185) + at org.springframework.context.event.SimpleApplicationEventMulticaster.invokeListener(SimpleApplicationEventMulticaster.java:178) + at org.springframework.context.event.SimpleApplicationEventMulticaster.multicastEvent(SimpleApplicationEventMulticaster.java:156) + at org.springframework.context.event.SimpleApplicationEventMulticaster.multicastEvent(SimpleApplicationEventMulticaster.java:138) + at org.springframework.boot.context.event.EventPublishingRunListener.multicastInitialEvent(EventPublishingRunListener.java:136) + at org.springframework.boot.context.event.EventPublishingRunListener.environmentPrepared(EventPublishingRunListener.java:81) + at org.springframework.boot.SpringApplicationRunListeners.lambda$environmentPrepared$2(SpringApplicationRunListeners.java:64) + at java.base/java.lang.Iterable.forEach(Iterable.java:75) + at org.springframework.boot.SpringApplicationRunListeners.doWithListeners(SpringApplicationRunListeners.java:118) + at org.springframework.boot.SpringApplicationRunListeners.doWithListeners(SpringApplicationRunListeners.java:112) + at org.springframework.boot.SpringApplicationRunListeners.environmentPrepared(SpringApplicationRunListeners.java:63) + at org.springframework.boot.SpringApplication.prepareEnvironment(SpringApplication.java:370) + at org.springframework.boot.SpringApplication.run(SpringApplication.java:330) + at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) + at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) + at com.guaiguailang.harmony.HarmonyLifeServerApplication.main(HarmonyLifeServerApplication.java:16) +Caused by: java.lang.IllegalStateException: Logback configuration error detected: +ERROR in ch.qos.logback.core.pattern.parser.Compiler@478ee483 - There is no conversion class registered for conversion word [ansi] +ERROR in ch.qos.logback.core.pattern.parser.Compiler@478ee483 - [ansi] is not a valid conversion word +ERROR in ch.qos.logback.core.pattern.parser.Compiler@478ee483 - There is no conversion class registered for conversion word [ansi] +ERROR in ch.qos.logback.core.pattern.parser.Compiler@478ee483 - [ansi] is not a valid conversion word +ERROR in ch.qos.logback.core.pattern.parser.Compiler@478ee483 - There is no conversion class registered for conversion word [ansi] +ERROR in ch.qos.logback.core.pattern.parser.Compiler@478ee483 - [ansi] is not a valid conversion word +ERROR in ch.qos.logback.core.pattern.parser.Compiler@478ee483 - There is no conversion class registered for conversion word [ansi] +ERROR in ch.qos.logback.core.pattern.parser.Compiler@478ee483 - [ansi] is not a valid conversion word + at org.springframework.boot.logging.logback.LogbackLoggingSystem.reportConfigurationErrorsIfNecessary(LogbackLoggingSystem.java:284) + at org.springframework.boot.logging.logback.LogbackLoggingSystem.loadConfiguration(LogbackLoggingSystem.java:262) + at org.springframework.boot.logging.AbstractLoggingSystem.initializeWithSpecificConfig(AbstractLoggingSystem.java:67) + at org.springframework.boot.logging.AbstractLoggingSystem.initialize(AbstractLoggingSystem.java:58) + at org.springframework.boot.logging.logback.LogbackLoggingSystem.initialize(LogbackLoggingSystem.java:193) + at org.springframework.boot.context.logging.LoggingApplicationListener.initializeSystem(LoggingApplicationListener.java:335) + ... 19 common frames omitted diff --git a/logs/application.log b/logs/application.log new file mode 100644 index 0000000..bdca888 --- /dev/null +++ b/logs/application.log @@ -0,0 +1,4584 @@ +2024-09-23 20:16:47.811 [main] DEBUG o.s.c.e.PropertySourcesPropertyResolver - Found key 'spring.application.title' in PropertySource 'configurationProperties' with value of type String +2024-09-23 20:16:47.813 [main] DEBUG o.s.c.e.PropertySourcesPropertyResolver - Found key 'spring.application.name' in PropertySource 'configurationProperties' with value of type String +2024-09-23 20:16:47.813 [main] DEBUG o.s.c.e.PropertySourcesPropertyResolver - Found key 'spring.application.version' in PropertySource 'configurationProperties' with value of type String +2024-09-23 20:16:47.813 [main] DEBUG o.s.c.e.PropertySourcesPropertyResolver - Found key 'spring-boot.version' in PropertySource 'version' with value of type String +2024-09-23 20:16:47.813 [main] INFO o.s.boot.SpringApplication - +██╗ ██╗██████╗ ██╗██╗ █████╗ ███╗ ██╗ ██████╗ +╚██╗██╔╝██╔══██╗██║██║ ██╔══██╗████╗ ██║██╔════╝ + ╚███╔╝ ██████╔╝██║██║ ███████║██╔██╗ ██║██║ ███╗ + ██╔██╗ ██╔══██╗██║██║ ██╔══██║██║╚██╗██║██║ ██║ +██╔╝ ██╗██║ ██║██║███████╗██║ ██║██║ ╚████║╚██████╔╝ +╚═╝ ╚═╝╚═╝ ╚═╝╚═╝╚══════╝╚═╝ ╚═╝╚═╝ ╚═══╝ ╚═════╝ + +^_^ 服务启动成功 He Sheng +# 项目名称:harmony-life-server +# 项目版本:1.0.0 +# 框架版本:3.3.4 +# 最后更新于 2024年 9月 25日 + + +2024-09-23 20:16:47.853 [main] INFO c.g.h.HarmonyLifeServerApplication - Starting HarmonyLifeServerApplication using Java 17.0.8 with PID 32688 (C:\Users\xrilang\Desktop\harmony-life\harmony-life-server\harmony-life-server\target\classes started by xrilang in C:\Users\xrilang\Desktop\harmony-life\harmony-life-server\harmony-life-server) +2024-09-23 20:16:47.853 [main] DEBUG c.g.h.HarmonyLifeServerApplication - Running with Spring Boot v3.3.4, Spring v6.1.13 +2024-09-23 20:16:47.854 [main] INFO c.g.h.HarmonyLifeServerApplication - No active profile set, falling back to 1 default profile: "default" +2024-09-23 20:16:47.855 [main] DEBUG o.s.boot.SpringApplication - Loading source class com.guaiguailang.harmony.HarmonyLifeServerApplication +2024-09-23 20:16:47.884 [main] DEBUG o.s.b.w.s.c.AnnotationConfigServletWebServerApplicationContext - Refreshing org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@77602954 +2024-09-23 20:16:47.897 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalConfigurationAnnotationProcessor' +2024-09-23 20:16:47.908 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.internalCachingMetadataReaderFactory' +2024-09-23 20:16:47.950 [main] DEBUG o.s.c.a.ClassPathBeanDefinitionScanner - Identified candidate component class: file [C:\Users\xrilang\Desktop\harmony-life\harmony-life-server\harmony-life-server\target\classes\com\guaiguailang\harmony\config\GlobalExceptionHandler.class] +2024-09-23 20:16:47.953 [main] DEBUG o.s.c.a.ClassPathBeanDefinitionScanner - Identified candidate component class: file [C:\Users\xrilang\Desktop\harmony-life\harmony-life-server\harmony-life-server\target\classes\com\guaiguailang\harmony\config\SaTokenConfigure.class] +2024-09-23 20:16:47.954 [main] DEBUG o.s.c.a.ClassPathBeanDefinitionScanner - Identified candidate component class: file [C:\Users\xrilang\Desktop\harmony-life\harmony-life-server\harmony-life-server\target\classes\com\guaiguailang\harmony\config\StpInterfaceImpl.class] +2024-09-23 20:16:47.974 [main] DEBUG o.s.c.a.ClassPathBeanDefinitionScanner - Identified candidate component class: file [C:\Users\xrilang\Desktop\harmony-life\harmony-life-server\harmony-life-server\target\classes\com\guaiguailang\harmony\controller\AuthController.class] +2024-09-23 20:16:47.975 [main] DEBUG o.s.c.a.ClassPathBeanDefinitionScanner - Identified candidate component class: file [C:\Users\xrilang\Desktop\harmony-life\harmony-life-server\harmony-life-server\target\classes\com\guaiguailang\harmony\controller\SystemController.class] +2024-09-23 20:16:47.976 [main] DEBUG o.s.c.a.ClassPathBeanDefinitionScanner - Identified candidate component class: file [C:\Users\xrilang\Desktop\harmony-life\harmony-life-server\harmony-life-server\target\classes\com\guaiguailang\harmony\controller\UserController.class] +2024-09-23 20:16:47.982 [main] DEBUG o.s.c.a.ClassPathBeanDefinitionScanner - Identified candidate component class: file [C:\Users\xrilang\Desktop\harmony-life\harmony-life-server\harmony-life-server\target\classes\com\guaiguailang\harmony\service\impl\AuthServiceImpl.class] +2024-09-23 20:16:47.983 [main] DEBUG o.s.c.a.ClassPathBeanDefinitionScanner - Identified candidate component class: file [C:\Users\xrilang\Desktop\harmony-life\harmony-life-server\harmony-life-server\target\classes\com\guaiguailang\harmony\service\impl\SystemServiceImpl.class] +2024-09-23 20:16:47.983 [main] DEBUG o.s.c.a.ClassPathBeanDefinitionScanner - Identified candidate component class: file [C:\Users\xrilang\Desktop\harmony-life\harmony-life-server\harmony-life-server\target\classes\com\guaiguailang\harmony\service\impl\UserServiceImpl.class] +2024-09-23 20:16:48.156 [RMI TCP Connection(1)-172.17.0.1] DEBUG sun.rmi.transport.tcp - RMI TCP Connection(1)-172.17.0.1: accepted socket from [172.17.0.1:49601] +2024-09-23 20:16:48.157 [RMI TCP Connection(1)-172.17.0.1] DEBUG sun.rmi.transport.tcp - RMI TCP Connection(1)-172.17.0.1: (port 49599) op = 80 +2024-09-23 20:16:48.160 [RMI TCP Connection(1)-172.17.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(1)-172.17.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@2fc3f829 +2024-09-23 20:16:48.161 [RMI TCP Connection(1)-172.17.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(1)-172.17.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@2fc3f829 +2024-09-23 20:16:48.161 [RMI TCP Connection(1)-172.17.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(1)-172.17.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@2fc3f829 +2024-09-23 20:16:48.162 [RMI TCP Connection(1)-172.17.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(1)-172.17.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@2fc3f829 +2024-09-23 20:16:48.163 [RMI TCP Connection(1)-172.17.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(1)-172.17.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@2fc3f829 +2024-09-23 20:16:48.164 [RMI TCP Connection(1)-172.17.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(1)-172.17.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@2fc3f829 +2024-09-23 20:16:48.166 [RMI TCP Connection(1)-172.17.0.1] DEBUG sun.rmi.transport.tcp - RMI TCP Connection(1)-172.17.0.1: (port 49599) op = 80 +2024-09-23 20:16:48.171 [RMI TCP Connection(1)-172.17.0.1] DEBUG sun.rmi.transport.tcp - RMI TCP Connection(1)-172.17.0.1: (port 49599) op = 80 +2024-09-23 20:16:48.172 [RMI TCP Connection(1)-172.17.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(1)-172.17.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@2fc3f829 +2024-09-23 20:16:48.172 [RMI TCP Connection(1)-172.17.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(1)-172.17.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@2fc3f829 +2024-09-23 20:16:48.172 [RMI TCP Connection(1)-172.17.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(1)-172.17.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@2fc3f829 +2024-09-23 20:16:48.173 [RMI TCP Connection(1)-172.17.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(1)-172.17.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@2fc3f829 +2024-09-23 20:16:48.173 [RMI TCP Connection(1)-172.17.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(1)-172.17.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@2fc3f829 +2024-09-23 20:16:48.173 [RMI TCP Connection(1)-172.17.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(1)-172.17.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@2fc3f829 +2024-09-23 20:16:48.174 [RMI TCP Connection(1)-172.17.0.1] DEBUG sun.rmi.transport.tcp - RMI TCP Connection(1)-172.17.0.1: (port 49599) op = 84 +2024-09-23 20:16:48.174 [RMI TCP Connection(1)-172.17.0.1] DEBUG sun.rmi.transport.tcp - RMI TCP Connection(1)-172.17.0.1: (port 49599) op = 80 +2024-09-23 20:16:48.175 [RMI TCP Connection(1)-172.17.0.1] DEBUG sun.rmi.transport.tcp - RMI TCP Connection(1)-172.17.0.1: (port 49599) op = 80 +2024-09-23 20:16:48.175 [RMI TCP Connection(1)-172.17.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(1)-172.17.0.1: name = "javax.management.ObjectName", codebase = "" +2024-09-23 20:16:48.176 [RMI TCP Connection(1)-172.17.0.1] DEBUG javax.management.remote.rmi - connectionId=rmi://172.17.0.1 1, name=org.springframework.boot:type=Admin,name=SpringApplication, attribute=Ready +2024-09-23 20:16:48.177 [RMI TCP Connection(1)-172.17.0.1] DEBUG sun.rmi.server.call - RMI TCP Connection(1)-172.17.0.1: [172.17.0.1] exception: +javax.management.InstanceNotFoundException: org.springframework.boot:type=Admin,name=SpringApplication + at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getMBean(DefaultMBeanServerInterceptor.java:1088) + at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getAttribute(DefaultMBeanServerInterceptor.java:640) + at java.management/com.sun.jmx.mbeanserver.JmxMBeanServer.getAttribute(JmxMBeanServer.java:679) + at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doOperation(RMIConnectionImpl.java:1449) + at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl$PrivilegedOperation.run(RMIConnectionImpl.java:1310) + at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doPrivilegedOperation(RMIConnectionImpl.java:1405) + at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.getAttribute(RMIConnectionImpl.java:639) + at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) + at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.base/java.lang.reflect.Method.invoke(Method.java:568) + at java.rmi/sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:360) + at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:200) + at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:197) + at java.base/java.security.AccessController.doPrivileged(AccessController.java:712) + at java.rmi/sun.rmi.transport.Transport.serviceCall(Transport.java:196) + at java.rmi/sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:587) + at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run0(TCPTransport.java:828) + at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.lambda$run$0(TCPTransport.java:705) + at java.base/java.security.AccessController.doPrivileged(AccessController.java:399) + at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:704) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:833) +2024-09-23 20:16:48.183 [RMI TCP Connection(1)-172.17.0.1] DEBUG sun.rmi.transport.tcp - RMI TCP Connection(1)-172.17.0.1: (port 49599) op = 80 +2024-09-23 20:16:48.184 [RMI TCP Connection(1)-172.17.0.1] DEBUG javax.management.remote.rmi - [javax.management.remote.rmi.RMIConnectionImpl@b3f8ef9: connectionId=rmi://172.17.0.1 1] closing. +2024-09-23 20:16:48.185 [RMI TCP Connection(1)-172.17.0.1] DEBUG javax.management.remote.rmi - [javax.management.remote.rmi.RMIConnectionImpl@b3f8ef9: connectionId=rmi://172.17.0.1 1] closed. +2024-09-23 20:16:48.326 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.AutoConfigurationPackages' +2024-09-23 20:16:48.331 [main] DEBUG o.s.b.a.AutoConfigurationPackages - @EnableAutoConfiguration was declared on a class in the package 'com.guaiguailang.harmony'. Automatic @Repository and @Entity scanning is enabled. +2024-09-23 20:16:48.331 [main] DEBUG o.m.s.b.a.MybatisAutoConfiguration - Searching for mappers annotated with @Mapper +2024-09-23 20:16:48.332 [main] DEBUG o.m.s.b.a.MybatisAutoConfiguration - Using auto-configuration base package 'com.guaiguailang.harmony' +2024-09-23 20:16:48.378 [RMI TCP Connection(1)-172.17.0.1] DEBUG sun.rmi.transport.tcp - RMI TCP Connection(1)-172.17.0.1: (port 49599) connection closed +2024-09-23 20:16:48.378 [RMI TCP Connection(1)-172.17.0.1] DEBUG sun.rmi.transport.tcp - RMI TCP Connection(1)-172.17.0.1: close connection, socket: Socket[addr=/172.17.0.1,port=49601,localport=49599] +2024-09-23 20:16:48.379 [RMI TCP Connection(1)-172.17.0.1] DEBUG sun.rmi.transport.tcp - RMI TCP Connection(1)-172.17.0.1: socket close: Socket[addr=/172.17.0.1,port=49601,localport=49599] +2024-09-23 20:16:48.405 [RMI TCP Connection(2)-172.17.0.1] DEBUG sun.rmi.transport.tcp - RMI TCP Connection(2)-172.17.0.1: accepted socket from [172.17.0.1:49602] +2024-09-23 20:16:48.406 [RMI TCP Connection(2)-172.17.0.1] DEBUG sun.rmi.transport.tcp - RMI TCP Connection(2)-172.17.0.1: (port 49599) op = 80 +2024-09-23 20:16:48.406 [RMI TCP Connection(2)-172.17.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(2)-172.17.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@2fc3f829 +2024-09-23 20:16:48.407 [RMI TCP Connection(2)-172.17.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(2)-172.17.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@2fc3f829 +2024-09-23 20:16:48.407 [RMI TCP Connection(2)-172.17.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(2)-172.17.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@2fc3f829 +2024-09-23 20:16:48.407 [RMI TCP Connection(2)-172.17.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(2)-172.17.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@2fc3f829 +2024-09-23 20:16:48.407 [RMI TCP Connection(2)-172.17.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(2)-172.17.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@2fc3f829 +2024-09-23 20:16:48.467 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode +2024-09-23 20:16:48.468 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data JDBC repositories in DEFAULT mode. +2024-09-23 20:16:48.471 [main] DEBUG o.s.d.r.c.RepositoryConfigurationDelegate - Scanning for JDBC repositories in packages com.guaiguailang.harmony. +2024-09-23 20:16:48.487 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 13 ms. Found 0 JDBC repository interfaces. +2024-09-23 20:16:48.502 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode +2024-09-23 20:16:48.503 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2024-09-23 20:16:48.525 [main] DEBUG o.s.d.r.c.RepositoryConfigurationDelegate - Scanning for Redis repositories in packages com.guaiguailang.harmony. +2024-09-23 20:16:48.534 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 8 ms. Found 0 Redis repository interfaces. +2024-09-23 20:16:48.589 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.mybatis.spring.mapper.MapperScannerConfigurer' +2024-09-23 20:16:48.591 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'propertySourcesPlaceholderConfigurer' +2024-09-23 20:16:48.596 [main] DEBUG o.apache.ibatis.logging.LogFactory - Logging initialized using 'class org.apache.ibatis.logging.slf4j.Slf4jImpl' adapter. +2024-09-23 20:16:48.601 [main] DEBUG o.m.s.mapper.ClassPathMapperScanner - Identified candidate component class: file [C:\Users\xrilang\Desktop\harmony-life\harmony-life-server\harmony-life-server\target\classes\com\guaiguailang\harmony\mapper\AuthMapper.class] +2024-09-23 20:16:48.602 [main] DEBUG o.m.s.mapper.ClassPathMapperScanner - Identified candidate component class: file [C:\Users\xrilang\Desktop\harmony-life\harmony-life-server\harmony-life-server\target\classes\com\guaiguailang\harmony\mapper\SystemMapper.class] +2024-09-23 20:16:49.346 [main] DEBUG o.m.s.mapper.ClassPathMapperScanner - Identified candidate component class: file [C:\Users\xrilang\Desktop\harmony-life\harmony-life-server\harmony-life-server\target\classes\com\guaiguailang\harmony\mapper\UserMapper.class] +2024-09-23 20:16:49.348 [main] DEBUG o.m.s.mapper.ClassPathMapperScanner - Creating MapperFactoryBean with name 'authMapper' and 'com.guaiguailang.harmony.mapper.AuthMapper' mapperInterface +2024-09-23 20:16:49.350 [main] DEBUG o.m.s.mapper.ClassPathMapperScanner - Creating MapperFactoryBean with name 'systemMapper' and 'com.guaiguailang.harmony.mapper.SystemMapper' mapperInterface +2024-09-23 20:16:49.351 [main] DEBUG o.m.s.mapper.ClassPathMapperScanner - Creating MapperFactoryBean with name 'userMapper' and 'com.guaiguailang.harmony.mapper.UserMapper' mapperInterface +2024-09-23 20:16:49.371 [RMI TCP Connection(3)-172.17.0.1] DEBUG sun.rmi.transport.tcp - RMI TCP Connection(3)-172.17.0.1: accepted socket from [172.17.0.1:49606] +2024-09-23 20:16:49.372 [RMI TCP Connection(3)-172.17.0.1] DEBUG sun.rmi.transport.tcp - RMI TCP Connection(3)-172.17.0.1: (port 49599) op = 80 +2024-09-23 20:16:49.372 [RMI TCP Connection(3)-172.17.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(3)-172.17.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@2fc3f829 +2024-09-23 20:16:49.372 [RMI TCP Connection(3)-172.17.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(3)-172.17.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@2fc3f829 +2024-09-23 20:16:49.372 [RMI TCP Connection(3)-172.17.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(3)-172.17.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@2fc3f829 +2024-09-23 20:16:49.373 [RMI TCP Connection(3)-172.17.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(3)-172.17.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@2fc3f829 +2024-09-23 20:16:49.373 [RMI TCP Connection(3)-172.17.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(3)-172.17.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@2fc3f829 +2024-09-23 20:16:49.373 [RMI TCP Connection(3)-172.17.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(3)-172.17.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@2fc3f829 +2024-09-23 20:16:49.374 [RMI TCP Connection(3)-172.17.0.1] DEBUG sun.rmi.transport.tcp - RMI TCP Connection(3)-172.17.0.1: (port 49599) op = 80 +2024-09-23 20:16:49.376 [RMI TCP Connection(3)-172.17.0.1] DEBUG sun.rmi.transport.tcp - RMI TCP Connection(3)-172.17.0.1: (port 49599) op = 80 +2024-09-23 20:16:49.376 [RMI TCP Connection(3)-172.17.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(3)-172.17.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@2fc3f829 +2024-09-23 20:16:49.376 [RMI TCP Connection(3)-172.17.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(3)-172.17.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@2fc3f829 +2024-09-23 20:16:49.376 [RMI TCP Connection(3)-172.17.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(3)-172.17.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@2fc3f829 +2024-09-23 20:16:49.377 [RMI TCP Connection(3)-172.17.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(3)-172.17.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@2fc3f829 +2024-09-23 20:16:49.377 [RMI TCP Connection(3)-172.17.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(3)-172.17.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@2fc3f829 +2024-09-23 20:16:49.377 [RMI TCP Connection(3)-172.17.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(3)-172.17.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@2fc3f829 +2024-09-23 20:16:49.378 [RMI TCP Connection(3)-172.17.0.1] DEBUG sun.rmi.transport.tcp - RMI TCP Connection(3)-172.17.0.1: (port 49599) op = 84 +2024-09-23 20:16:49.378 [RMI TCP Connection(3)-172.17.0.1] DEBUG sun.rmi.transport.tcp - RMI TCP Connection(3)-172.17.0.1: (port 49599) op = 80 +2024-09-23 20:16:49.379 [RMI TCP Connection(3)-172.17.0.1] DEBUG sun.rmi.transport.tcp - RMI TCP Connection(3)-172.17.0.1: (port 49599) op = 80 +2024-09-23 20:16:49.379 [RMI TCP Connection(3)-172.17.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(3)-172.17.0.1: name = "javax.management.ObjectName", codebase = "" +2024-09-23 20:16:49.379 [RMI TCP Connection(3)-172.17.0.1] DEBUG javax.management.remote.rmi - connectionId=rmi://172.17.0.1 2, name=org.springframework.boot:type=Admin,name=SpringApplication, attribute=Ready +2024-09-23 20:16:49.379 [RMI TCP Connection(3)-172.17.0.1] DEBUG sun.rmi.server.call - RMI TCP Connection(3)-172.17.0.1: [172.17.0.1] exception: +javax.management.InstanceNotFoundException: org.springframework.boot:type=Admin,name=SpringApplication + at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getMBean(DefaultMBeanServerInterceptor.java:1088) + at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getAttribute(DefaultMBeanServerInterceptor.java:640) + at java.management/com.sun.jmx.mbeanserver.JmxMBeanServer.getAttribute(JmxMBeanServer.java:679) + at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doOperation(RMIConnectionImpl.java:1449) + at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl$PrivilegedOperation.run(RMIConnectionImpl.java:1310) + at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doPrivilegedOperation(RMIConnectionImpl.java:1405) + at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.getAttribute(RMIConnectionImpl.java:639) + at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) + at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.base/java.lang.reflect.Method.invoke(Method.java:568) + at java.rmi/sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:360) + at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:200) + at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:197) + at java.base/java.security.AccessController.doPrivileged(AccessController.java:712) + at java.rmi/sun.rmi.transport.Transport.serviceCall(Transport.java:196) + at java.rmi/sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:587) + at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run0(TCPTransport.java:828) + at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.lambda$run$0(TCPTransport.java:705) + at java.base/java.security.AccessController.doPrivileged(AccessController.java:399) + at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:704) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:833) +2024-09-23 20:16:49.381 [RMI TCP Connection(3)-172.17.0.1] DEBUG sun.rmi.transport.tcp - RMI TCP Connection(3)-172.17.0.1: (port 49599) op = 80 +2024-09-23 20:16:49.381 [RMI TCP Connection(3)-172.17.0.1] DEBUG javax.management.remote.rmi - [javax.management.remote.rmi.RMIConnectionImpl@41bc0fd4: connectionId=rmi://172.17.0.1 2] closing. +2024-09-23 20:16:49.382 [RMI TCP Connection(3)-172.17.0.1] DEBUG javax.management.remote.rmi - [javax.management.remote.rmi.RMIConnectionImpl@41bc0fd4: connectionId=rmi://172.17.0.1 2] closed. +2024-09-23 20:16:49.429 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.sql.init.dependency.DatabaseInitializationDependencyConfigurer$DependsOnDatabaseInitializationPostProcessor' +2024-09-23 20:16:49.455 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.context.event.internalEventListenerProcessor' +2024-09-23 20:16:49.456 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'preserveErrorControllerTargetClassPostProcessor' +2024-09-23 20:16:49.457 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'springdocBeanFactoryPostProcessor' +2024-09-23 20:16:49.459 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'forceAutoProxyCreatorToUseClassProxying' +2024-09-23 20:16:49.460 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.context.event.internalEventListenerFactory' +2024-09-23 20:16:49.460 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.transaction.config.internalTransactionalEventListenerFactory' +2024-09-23 20:16:49.475 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalAutowiredAnnotationProcessor' +2024-09-23 20:16:49.476 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalCommonAnnotationProcessor' +2024-09-23 20:16:49.478 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.context.properties.ConfigurationPropertiesBindingPostProcessor' +2024-09-23 20:16:49.478 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.context.internalConfigurationPropertiesBinder' +2024-09-23 20:16:49.480 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'jdbcConnectionDetailsHikariBeanPostProcessor' +2024-09-23 20:16:49.481 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'persistenceExceptionTranslationPostProcessor' +2024-09-23 20:16:49.482 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'persistenceExceptionTranslationPostProcessor' via factory method to bean named 'environment' +2024-09-23 20:16:49.486 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.aop.config.internalAutoProxyCreator' +2024-09-23 20:16:49.490 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'webServerFactoryCustomizerBeanPostProcessor' +2024-09-23 20:16:49.490 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'errorPageRegistrarBeanPostProcessor' +2024-09-23 20:16:49.490 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'projectingArgumentResolverBeanPostProcessor' +2024-09-23 20:16:49.499 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.transaction.config.internalTransactionAdvisor' +2024-09-23 20:16:49.499 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' +2024-09-23 20:16:49.502 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'transactionAttributeSource' +2024-09-23 20:16:49.504 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'transactionInterceptor' +2024-09-23 20:16:49.504 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'transactionInterceptor' via factory method to bean named 'transactionAttributeSource' +2024-09-23 20:16:49.558 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'org.springframework.transaction.config.internalTransactionAdvisor' via factory method to bean named 'transactionAttributeSource' +2024-09-23 20:16:49.558 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'org.springframework.transaction.config.internalTransactionAdvisor' via factory method to bean named 'transactionInterceptor' +2024-09-23 20:16:49.562 [main] DEBUG o.s.u.c.s.UiApplicationContextUtils - Unable to locate ThemeSource with name 'themeSource': using default [org.springframework.ui.context.support.ResourceBundleThemeSource@115dcaea] +2024-09-23 20:16:49.563 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'tomcatServletWebServerFactory' +2024-09-23 20:16:49.563 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryConfiguration$EmbeddedTomcat' +2024-09-23 20:16:49.599 [main] DEBUG o.a.c.core.AprLifecycleListener - The Apache Tomcat Native library could not be found using names [tcnative-2, libtcnative-2, tcnative-1, libtcnative-1] on the java.library.path [C:\software\env\java\openjdk17\bin;C:\WINDOWS\Sun\Java\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\Python312\Scripts\;C:\Python312\;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.2\bin;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.2\libnvvp;C:\software\DevTools\VM\VMware\bin\;C:\Program Files (x86)\Common Files\Intel\Shared Libraries\redist\intel64\compiler;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files\NVIDIA Corporation\NVIDIA NvDLISR;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\software\env\java\openjdk17\bin;C:\ProgramData\chocolatey\bin;C:\software\MathModel\MATLAB\bin;C:\Program Files\MySQL\MySQL Server 5.7\bin;C:\software\env\apache-maven-3.9.5\bin;C:\software\env\redis;C:\Program Files\NVIDIA Corporation\Nsight Compute 2023.2.2\;D:\SotfwareData\Pandoc\pandoc;C:\Program Files (x86)\Microsoft SQL Server\100\Tools\Binn\;C:\Program Files\Microsoft SQL Server\100\Tools\Binn\;C:\Program Files\Microsoft SQL Server\100\DTS\Binn\;C:\Program Files\dotnet\;C:\software\系统工具\CMake\bin;C:\software\DevTools\微信web开发者工具\dll;C:\Program Files (x86)\Windows Kits\10\Windows Performance Toolkit\;C:\Program Files\MiKTeX\miktex\bin\x64\;C:\software\env\Anaconda;C:\software\env\Anaconda\Scripts;C:\software\env\Anaconda\Library\bin;C:\software\env\CUDA\cudnn-windows-x86_64-9.1.0.70_cuda12-archive\bin;C:\software\env\CUDA\cudnn-windows-x86_64-9.1.0.70_cuda12-archive\lib\x64;C:\software\DevTools\git\Git\cmd;C:\Program Files\LibreOffice\program;C:\Program Files\LibreOffice\sdk\bin;;C:\Program Files\Docker\Docker\resources\bin;C:\Program Files\nodejs\;C:\Users\xrilang\AppData\Local\pnpm;C:\Users\xrilang\AppData\Local\Microsoft\WindowsApps;C:\software\DevTools\jet\IntelliJ IDEA 2024.2\bin;;C:\software\DevTools\jet\PyCharm 2023.2.2\bin;;C:\software\DevTools\jet\WebStorm 2023.2.2\bin;;C:\software\edit\Microsoft VS Code\bin;C:\Users\xrilang\.dotnet\tools;C:\software\env\jupyterToPDF\miktex\bin\x64\;C:\Users\xrilang\AppData\Roaming\npm;.]. The errors reported were [Can't load library: C:\Users\xrilang\Desktop\harmony-life\harmony-life-server\harmony-life-server\bin\tcnative-2.dll, Can't load library: C:\Users\xrilang\Desktop\harmony-life\harmony-life-server\harmony-life-server\bin\libtcnative-2.dll, Can't load library: C:\Users\xrilang\Desktop\harmony-life\harmony-life-server\harmony-life-server\bin\tcnative-1.dll, Can't load library: C:\Users\xrilang\Desktop\harmony-life\harmony-life-server\harmony-life-server\bin\libtcnative-1.dll, no tcnative-2 in java.library.path: C:\software\env\java\openjdk17\bin;C:\WINDOWS\Sun\Java\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\Python312\Scripts\;C:\Python312\;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.2\bin;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.2\libnvvp;C:\software\DevTools\VM\VMware\bin\;C:\Program Files (x86)\Common Files\Intel\Shared Libraries\redist\intel64\compiler;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files\NVIDIA Corporation\NVIDIA NvDLISR;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\software\env\java\openjdk17\bin;C:\ProgramData\chocolatey\bin;C:\software\MathModel\MATLAB\bin;C:\Program Files\MySQL\MySQL Server 5.7\bin;C:\software\env\apache-maven-3.9.5\bin;C:\software\env\redis;C:\Program Files\NVIDIA Corporation\Nsight Compute 2023.2.2\;D:\SotfwareData\Pandoc\pandoc;C:\Program Files (x86)\Microsoft SQL Server\100\Tools\Binn\;C:\Program Files\Microsoft SQL Server\100\Tools\Binn\;C:\Program Files\Microsoft SQL Server\100\DTS\Binn\;C:\Program Files\dotnet\;C:\software\系统工具\CMake\bin;C:\software\DevTools\微信web开发者工具\dll;C:\Program Files (x86)\Windows Kits\10\Windows Performance Toolkit\;C:\Program Files\MiKTeX\miktex\bin\x64\;C:\software\env\Anaconda;C:\software\env\Anaconda\Scripts;C:\software\env\Anaconda\Library\bin;C:\software\env\CUDA\cudnn-windows-x86_64-9.1.0.70_cuda12-archive\bin;C:\software\env\CUDA\cudnn-windows-x86_64-9.1.0.70_cuda12-archive\lib\x64;C:\software\DevTools\git\Git\cmd;C:\Program Files\LibreOffice\program;C:\Program Files\LibreOffice\sdk\bin;;C:\Program Files\Docker\Docker\resources\bin;C:\Program Files\nodejs\;C:\Users\xrilang\AppData\Local\pnpm;C:\Users\xrilang\AppData\Local\Microsoft\WindowsApps;C:\software\DevTools\jet\IntelliJ IDEA 2024.2\bin;;C:\software\DevTools\jet\PyCharm 2023.2.2\bin;;C:\software\DevTools\jet\WebStorm 2023.2.2\bin;;C:\software\edit\Microsoft VS Code\bin;C:\Users\xrilang\.dotnet\tools;C:\software\env\jupyterToPDF\miktex\bin\x64\;C:\Users\xrilang\AppData\Roaming\npm;., no libtcnative-2 in java.library.path: C:\software\env\java\openjdk17\bin;C:\WINDOWS\Sun\Java\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\Python312\Scripts\;C:\Python312\;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.2\bin;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.2\libnvvp;C:\software\DevTools\VM\VMware\bin\;C:\Program Files (x86)\Common Files\Intel\Shared Libraries\redist\intel64\compiler;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files\NVIDIA Corporation\NVIDIA NvDLISR;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\software\env\java\openjdk17\bin;C:\ProgramData\chocolatey\bin;C:\software\MathModel\MATLAB\bin;C:\Program Files\MySQL\MySQL Server 5.7\bin;C:\software\env\apache-maven-3.9.5\bin;C:\software\env\redis;C:\Program Files\NVIDIA Corporation\Nsight Compute 2023.2.2\;D:\SotfwareData\Pandoc\pandoc;C:\Program Files (x86)\Microsoft SQL Server\100\Tools\Binn\;C:\Program Files\Microsoft SQL Server\100\Tools\Binn\;C:\Program Files\Microsoft SQL Server\100\DTS\Binn\;C:\Program Files\dotnet\;C:\software\系统工具\CMake\bin;C:\software\DevTools\微信web开发者工具\dll;C:\Program Files (x86)\Windows Kits\10\Windows Performance Toolkit\;C:\Program Files\MiKTeX\miktex\bin\x64\;C:\software\env\Anaconda;C:\software\env\Anaconda\Scripts;C:\software\env\Anaconda\Library\bin;C:\software\env\CUDA\cudnn-windows-x86_64-9.1.0.70_cuda12-archive\bin;C:\software\env\CUDA\cudnn-windows-x86_64-9.1.0.70_cuda12-archive\lib\x64;C:\software\DevTools\git\Git\cmd;C:\Program Files\LibreOffice\program;C:\Program Files\LibreOffice\sdk\bin;;C:\Program Files\Docker\Docker\resources\bin;C:\Program Files\nodejs\;C:\Users\xrilang\AppData\Local\pnpm;C:\Users\xrilang\AppData\Local\Microsoft\WindowsApps;C:\software\DevTools\jet\IntelliJ IDEA 2024.2\bin;;C:\software\DevTools\jet\PyCharm 2023.2.2\bin;;C:\software\DevTools\jet\WebStorm 2023.2.2\bin;;C:\software\edit\Microsoft VS Code\bin;C:\Users\xrilang\.dotnet\tools;C:\software\env\jupyterToPDF\miktex\bin\x64\;C:\Users\xrilang\AppData\Roaming\npm;., no tcnative-1 in java.library.path: C:\software\env\java\openjdk17\bin;C:\WINDOWS\Sun\Java\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\Python312\Scripts\;C:\Python312\;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.2\bin;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.2\libnvvp;C:\software\DevTools\VM\VMware\bin\;C:\Program Files (x86)\Common Files\Intel\Shared Libraries\redist\intel64\compiler;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files\NVIDIA Corporation\NVIDIA NvDLISR;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\software\env\java\openjdk17\bin;C:\ProgramData\chocolatey\bin;C:\software\MathModel\MATLAB\bin;C:\Program Files\MySQL\MySQL Server 5.7\bin;C:\software\env\apache-maven-3.9.5\bin;C:\software\env\redis;C:\Program Files\NVIDIA Corporation\Nsight Compute 2023.2.2\;D:\SotfwareData\Pandoc\pandoc;C:\Program Files (x86)\Microsoft SQL Server\100\Tools\Binn\;C:\Program Files\Microsoft SQL Server\100\Tools\Binn\;C:\Program Files\Microsoft SQL Server\100\DTS\Binn\;C:\Program Files\dotnet\;C:\software\系统工具\CMake\bin;C:\software\DevTools\微信web开发者工具\dll;C:\Program Files (x86)\Windows Kits\10\Windows Performance Toolkit\;C:\Program Files\MiKTeX\miktex\bin\x64\;C:\software\env\Anaconda;C:\software\env\Anaconda\Scripts;C:\software\env\Anaconda\Library\bin;C:\software\env\CUDA\cudnn-windows-x86_64-9.1.0.70_cuda12-archive\bin;C:\software\env\CUDA\cudnn-windows-x86_64-9.1.0.70_cuda12-archive\lib\x64;C:\software\DevTools\git\Git\cmd;C:\Program Files\LibreOffice\program;C:\Program Files\LibreOffice\sdk\bin;;C:\Program Files\Docker\Docker\resources\bin;C:\Program Files\nodejs\;C:\Users\xrilang\AppData\Local\pnpm;C:\Users\xrilang\AppData\Local\Microsoft\WindowsApps;C:\software\DevTools\jet\IntelliJ IDEA 2024.2\bin;;C:\software\DevTools\jet\PyCharm 2023.2.2\bin;;C:\software\DevTools\jet\WebStorm 2023.2.2\bin;;C:\software\edit\Microsoft VS Code\bin;C:\Users\xrilang\.dotnet\tools;C:\software\env\jupyterToPDF\miktex\bin\x64\;C:\Users\xrilang\AppData\Roaming\npm;., no libtcnative-1 in java.library.path: C:\software\env\java\openjdk17\bin;C:\WINDOWS\Sun\Java\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\Python312\Scripts\;C:\Python312\;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.2\bin;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.2\libnvvp;C:\software\DevTools\VM\VMware\bin\;C:\Program Files (x86)\Common Files\Intel\Shared Libraries\redist\intel64\compiler;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files\NVIDIA Corporation\NVIDIA NvDLISR;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\software\env\java\openjdk17\bin;C:\ProgramData\chocolatey\bin;C:\software\MathModel\MATLAB\bin;C:\Program Files\MySQL\MySQL Server 5.7\bin;C:\software\env\apache-maven-3.9.5\bin;C:\software\env\redis;C:\Program Files\NVIDIA Corporation\Nsight Compute 2023.2.2\;D:\SotfwareData\Pandoc\pandoc;C:\Program Files (x86)\Microsoft SQL Server\100\Tools\Binn\;C:\Program Files\Microsoft SQL Server\100\Tools\Binn\;C:\Program Files\Microsoft SQL Server\100\DTS\Binn\;C:\Program Files\dotnet\;C:\software\系统工具\CMake\bin;C:\software\DevTools\微信web开发者工具\dll;C:\Program Files (x86)\Windows Kits\10\Windows Performance Toolkit\;C:\Program Files\MiKTeX\miktex\bin\x64\;C:\software\env\Anaconda;C:\software\env\Anaconda\Scripts;C:\software\env\Anaconda\Library\bin;C:\software\env\CUDA\cudnn-windows-x86_64-9.1.0.70_cuda12-archive\bin;C:\software\env\CUDA\cudnn-windows-x86_64-9.1.0.70_cuda12-archive\lib\x64;C:\software\DevTools\git\Git\cmd;C:\Program Files\LibreOffice\program;C:\Program Files\LibreOffice\sdk\bin;;C:\Program Files\Docker\Docker\resources\bin;C:\Program Files\nodejs\;C:\Users\xrilang\AppData\Local\pnpm;C:\Users\xrilang\AppData\Local\Microsoft\WindowsApps;C:\software\DevTools\jet\IntelliJ IDEA 2024.2\bin;;C:\software\DevTools\jet\PyCharm 2023.2.2\bin;;C:\software\DevTools\jet\WebStorm 2023.2.2\bin;;C:\software\edit\Microsoft VS Code\bin;C:\Users\xrilang\.dotnet\tools;C:\software\env\jupyterToPDF\miktex\bin\x64\;C:\Users\xrilang\AppData\Roaming\npm;.] +org.apache.tomcat.jni.LibraryNotFoundError: Can't load library: C:\Users\xrilang\Desktop\harmony-life\harmony-life-server\harmony-life-server\bin\tcnative-2.dll, Can't load library: C:\Users\xrilang\Desktop\harmony-life\harmony-life-server\harmony-life-server\bin\libtcnative-2.dll, Can't load library: C:\Users\xrilang\Desktop\harmony-life\harmony-life-server\harmony-life-server\bin\tcnative-1.dll, Can't load library: C:\Users\xrilang\Desktop\harmony-life\harmony-life-server\harmony-life-server\bin\libtcnative-1.dll, no tcnative-2 in java.library.path: C:\software\env\java\openjdk17\bin;C:\WINDOWS\Sun\Java\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\Python312\Scripts\;C:\Python312\;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.2\bin;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.2\libnvvp;C:\software\DevTools\VM\VMware\bin\;C:\Program Files (x86)\Common Files\Intel\Shared Libraries\redist\intel64\compiler;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files\NVIDIA Corporation\NVIDIA NvDLISR;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\software\env\java\openjdk17\bin;C:\ProgramData\chocolatey\bin;C:\software\MathModel\MATLAB\bin;C:\Program Files\MySQL\MySQL Server 5.7\bin;C:\software\env\apache-maven-3.9.5\bin;C:\software\env\redis;C:\Program Files\NVIDIA Corporation\Nsight Compute 2023.2.2\;D:\SotfwareData\Pandoc\pandoc;C:\Program Files (x86)\Microsoft SQL Server\100\Tools\Binn\;C:\Program Files\Microsoft SQL Server\100\Tools\Binn\;C:\Program Files\Microsoft SQL Server\100\DTS\Binn\;C:\Program Files\dotnet\;C:\software\系统工具\CMake\bin;C:\software\DevTools\微信web开发者工具\dll;C:\Program Files (x86)\Windows Kits\10\Windows Performance Toolkit\;C:\Program Files\MiKTeX\miktex\bin\x64\;C:\software\env\Anaconda;C:\software\env\Anaconda\Scripts;C:\software\env\Anaconda\Library\bin;C:\software\env\CUDA\cudnn-windows-x86_64-9.1.0.70_cuda12-archive\bin;C:\software\env\CUDA\cudnn-windows-x86_64-9.1.0.70_cuda12-archive\lib\x64;C:\software\DevTools\git\Git\cmd;C:\Program Files\LibreOffice\program;C:\Program Files\LibreOffice\sdk\bin;;C:\Program Files\Docker\Docker\resources\bin;C:\Program Files\nodejs\;C:\Users\xrilang\AppData\Local\pnpm;C:\Users\xrilang\AppData\Local\Microsoft\WindowsApps;C:\software\DevTools\jet\IntelliJ IDEA 2024.2\bin;;C:\software\DevTools\jet\PyCharm 2023.2.2\bin;;C:\software\DevTools\jet\WebStorm 2023.2.2\bin;;C:\software\edit\Microsoft VS Code\bin;C:\Users\xrilang\.dotnet\tools;C:\software\env\jupyterToPDF\miktex\bin\x64\;C:\Users\xrilang\AppData\Roaming\npm;., no libtcnative-2 in java.library.path: C:\software\env\java\openjdk17\bin;C:\WINDOWS\Sun\Java\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\Python312\Scripts\;C:\Python312\;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.2\bin;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.2\libnvvp;C:\software\DevTools\VM\VMware\bin\;C:\Program Files (x86)\Common Files\Intel\Shared Libraries\redist\intel64\compiler;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files\NVIDIA Corporation\NVIDIA NvDLISR;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\software\env\java\openjdk17\bin;C:\ProgramData\chocolatey\bin;C:\software\MathModel\MATLAB\bin;C:\Program Files\MySQL\MySQL Server 5.7\bin;C:\software\env\apache-maven-3.9.5\bin;C:\software\env\redis;C:\Program Files\NVIDIA Corporation\Nsight Compute 2023.2.2\;D:\SotfwareData\Pandoc\pandoc;C:\Program Files (x86)\Microsoft SQL Server\100\Tools\Binn\;C:\Program Files\Microsoft SQL Server\100\Tools\Binn\;C:\Program Files\Microsoft SQL Server\100\DTS\Binn\;C:\Program Files\dotnet\;C:\software\系统工具\CMake\bin;C:\software\DevTools\微信web开发者工具\dll;C:\Program Files (x86)\Windows Kits\10\Windows Performance Toolkit\;C:\Program Files\MiKTeX\miktex\bin\x64\;C:\software\env\Anaconda;C:\software\env\Anaconda\Scripts;C:\software\env\Anaconda\Library\bin;C:\software\env\CUDA\cudnn-windows-x86_64-9.1.0.70_cuda12-archive\bin;C:\software\env\CUDA\cudnn-windows-x86_64-9.1.0.70_cuda12-archive\lib\x64;C:\software\DevTools\git\Git\cmd;C:\Program Files\LibreOffice\program;C:\Program Files\LibreOffice\sdk\bin;;C:\Program Files\Docker\Docker\resources\bin;C:\Program Files\nodejs\;C:\Users\xrilang\AppData\Local\pnpm;C:\Users\xrilang\AppData\Local\Microsoft\WindowsApps;C:\software\DevTools\jet\IntelliJ IDEA 2024.2\bin;;C:\software\DevTools\jet\PyCharm 2023.2.2\bin;;C:\software\DevTools\jet\WebStorm 2023.2.2\bin;;C:\software\edit\Microsoft VS Code\bin;C:\Users\xrilang\.dotnet\tools;C:\software\env\jupyterToPDF\miktex\bin\x64\;C:\Users\xrilang\AppData\Roaming\npm;., no tcnative-1 in java.library.path: C:\software\env\java\openjdk17\bin;C:\WINDOWS\Sun\Java\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\Python312\Scripts\;C:\Python312\;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.2\bin;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.2\libnvvp;C:\software\DevTools\VM\VMware\bin\;C:\Program Files (x86)\Common Files\Intel\Shared Libraries\redist\intel64\compiler;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files\NVIDIA Corporation\NVIDIA NvDLISR;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\software\env\java\openjdk17\bin;C:\ProgramData\chocolatey\bin;C:\software\MathModel\MATLAB\bin;C:\Program Files\MySQL\MySQL Server 5.7\bin;C:\software\env\apache-maven-3.9.5\bin;C:\software\env\redis;C:\Program Files\NVIDIA Corporation\Nsight Compute 2023.2.2\;D:\SotfwareData\Pandoc\pandoc;C:\Program Files (x86)\Microsoft SQL Server\100\Tools\Binn\;C:\Program Files\Microsoft SQL Server\100\Tools\Binn\;C:\Program Files\Microsoft SQL Server\100\DTS\Binn\;C:\Program Files\dotnet\;C:\software\系统工具\CMake\bin;C:\software\DevTools\微信web开发者工具\dll;C:\Program Files (x86)\Windows Kits\10\Windows Performance Toolkit\;C:\Program Files\MiKTeX\miktex\bin\x64\;C:\software\env\Anaconda;C:\software\env\Anaconda\Scripts;C:\software\env\Anaconda\Library\bin;C:\software\env\CUDA\cudnn-windows-x86_64-9.1.0.70_cuda12-archive\bin;C:\software\env\CUDA\cudnn-windows-x86_64-9.1.0.70_cuda12-archive\lib\x64;C:\software\DevTools\git\Git\cmd;C:\Program Files\LibreOffice\program;C:\Program Files\LibreOffice\sdk\bin;;C:\Program Files\Docker\Docker\resources\bin;C:\Program Files\nodejs\;C:\Users\xrilang\AppData\Local\pnpm;C:\Users\xrilang\AppData\Local\Microsoft\WindowsApps;C:\software\DevTools\jet\IntelliJ IDEA 2024.2\bin;;C:\software\DevTools\jet\PyCharm 2023.2.2\bin;;C:\software\DevTools\jet\WebStorm 2023.2.2\bin;;C:\software\edit\Microsoft VS Code\bin;C:\Users\xrilang\.dotnet\tools;C:\software\env\jupyterToPDF\miktex\bin\x64\;C:\Users\xrilang\AppData\Roaming\npm;., no libtcnative-1 in java.library.path: C:\software\env\java\openjdk17\bin;C:\WINDOWS\Sun\Java\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\Python312\Scripts\;C:\Python312\;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.2\bin;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.2\libnvvp;C:\software\DevTools\VM\VMware\bin\;C:\Program Files (x86)\Common Files\Intel\Shared Libraries\redist\intel64\compiler;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files\NVIDIA Corporation\NVIDIA NvDLISR;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\software\env\java\openjdk17\bin;C:\ProgramData\chocolatey\bin;C:\software\MathModel\MATLAB\bin;C:\Program Files\MySQL\MySQL Server 5.7\bin;C:\software\env\apache-maven-3.9.5\bin;C:\software\env\redis;C:\Program Files\NVIDIA Corporation\Nsight Compute 2023.2.2\;D:\SotfwareData\Pandoc\pandoc;C:\Program Files (x86)\Microsoft SQL Server\100\Tools\Binn\;C:\Program Files\Microsoft SQL Server\100\Tools\Binn\;C:\Program Files\Microsoft SQL Server\100\DTS\Binn\;C:\Program Files\dotnet\;C:\software\系统工具\CMake\bin;C:\software\DevTools\微信web开发者工具\dll;C:\Program Files (x86)\Windows Kits\10\Windows Performance Toolkit\;C:\Program Files\MiKTeX\miktex\bin\x64\;C:\software\env\Anaconda;C:\software\env\Anaconda\Scripts;C:\software\env\Anaconda\Library\bin;C:\software\env\CUDA\cudnn-windows-x86_64-9.1.0.70_cuda12-archive\bin;C:\software\env\CUDA\cudnn-windows-x86_64-9.1.0.70_cuda12-archive\lib\x64;C:\software\DevTools\git\Git\cmd;C:\Program Files\LibreOffice\program;C:\Program Files\LibreOffice\sdk\bin;;C:\Program Files\Docker\Docker\resources\bin;C:\Program Files\nodejs\;C:\Users\xrilang\AppData\Local\pnpm;C:\Users\xrilang\AppData\Local\Microsoft\WindowsApps;C:\software\DevTools\jet\IntelliJ IDEA 2024.2\bin;;C:\software\DevTools\jet\PyCharm 2023.2.2\bin;;C:\software\DevTools\jet\WebStorm 2023.2.2\bin;;C:\software\edit\Microsoft VS Code\bin;C:\Users\xrilang\.dotnet\tools;C:\software\env\jupyterToPDF\miktex\bin\x64\;C:\Users\xrilang\AppData\Roaming\npm;. + at org.apache.tomcat.jni.Library.(Library.java:91) + at org.apache.tomcat.jni.Library.initialize(Library.java:147) + at org.apache.catalina.core.AprLifecycleListener.init(AprLifecycleListener.java:209) + at org.apache.catalina.core.AprLifecycleListener.isAprAvailable(AprLifecycleListener.java:113) + at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getDefaultServerLifecycleListeners(TomcatServletWebServerFactory.java:191) + at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.(TomcatServletWebServerFactory.java:138) + at org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryConfiguration$EmbeddedTomcat.tomcatServletWebServerFactory(ServletWebServerFactoryConfiguration.java:73) + at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) + at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.base/java.lang.reflect.Method.invoke(Method.java:568) + at org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:146) + at org.springframework.beans.factory.support.ConstructorResolver.instantiate(ConstructorResolver.java:644) + at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:636) + at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1355) + at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1185) + at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) + at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) + at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) + at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) + at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) + at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:205) + at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.getWebServerFactory(ServletWebServerApplicationContext.java:223) + at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.createWebServer(ServletWebServerApplicationContext.java:186) + at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:162) + at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:619) + at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) + at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) + at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) + at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) + at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) + at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) + at com.guaiguailang.harmony.HarmonyLifeServerApplication.main(HarmonyLifeServerApplication.java:16) +2024-09-23 20:16:49.613 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'websocketServletWebServerCustomizer' +2024-09-23 20:16:49.613 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.websocket.servlet.WebSocketServletAutoConfiguration$TomcatWebSocketConfiguration' +2024-09-23 20:16:49.614 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'servletWebServerFactoryCustomizer' +2024-09-23 20:16:49.614 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryAutoConfiguration' +2024-09-23 20:16:49.615 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'server-org.springframework.boot.autoconfigure.web.ServerProperties' +2024-09-23 20:16:49.620 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.context.properties.BoundConfigurationProperties' +2024-09-23 20:16:49.632 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'servletWebServerFactoryCustomizer' via factory method to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' +2024-09-23 20:16:49.633 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'sslBundleRegistry' +2024-09-23 20:16:49.633 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.ssl.SslAutoConfiguration' +2024-09-23 20:16:49.633 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'spring.ssl-org.springframework.boot.autoconfigure.ssl.SslProperties' +2024-09-23 20:16:49.634 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.ssl.SslAutoConfiguration' via constructor to bean named 'spring.ssl-org.springframework.boot.autoconfigure.ssl.SslProperties' +2024-09-23 20:16:49.635 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'sslPropertiesSslBundleRegistrar' +2024-09-23 20:16:49.636 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'fileWatcher' +2024-09-23 20:16:49.636 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'sslPropertiesSslBundleRegistrar' via factory method to bean named 'fileWatcher' +2024-09-23 20:16:49.639 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'tomcatServletWebServerFactoryCustomizer' +2024-09-23 20:16:49.640 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'tomcatServletWebServerFactoryCustomizer' via factory method to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' +2024-09-23 20:16:49.640 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'tomcatWebServerFactoryCustomizer' +2024-09-23 20:16:49.640 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.embedded.EmbeddedWebServerFactoryCustomizerAutoConfiguration$TomcatWebServerFactoryCustomizerConfiguration' +2024-09-23 20:16:49.640 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'tomcatWebServerFactoryCustomizer' via factory method to bean named 'environment' +2024-09-23 20:16:49.641 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'tomcatWebServerFactoryCustomizer' via factory method to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' +2024-09-23 20:16:49.642 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'localeCharsetMappingsCustomizer' +2024-09-23 20:16:49.642 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.HttpEncodingAutoConfiguration' +2024-09-23 20:16:49.642 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.HttpEncodingAutoConfiguration' via constructor to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' +2024-09-23 20:16:49.658 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'errorPageCustomizer' +2024-09-23 20:16:49.658 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration' +2024-09-23 20:16:49.659 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration' via constructor to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' +2024-09-23 20:16:49.659 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'dispatcherServletRegistration' +2024-09-23 20:16:49.659 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletRegistrationConfiguration' +2024-09-23 20:16:49.660 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'dispatcherServlet' +2024-09-23 20:16:49.660 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletConfiguration' +2024-09-23 20:16:49.660 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' +2024-09-23 20:16:49.662 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'dispatcherServlet' via factory method to bean named 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' +2024-09-23 20:16:49.672 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'dispatcherServletRegistration' via factory method to bean named 'dispatcherServlet' +2024-09-23 20:16:49.672 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'dispatcherServletRegistration' via factory method to bean named 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' +2024-09-23 20:16:49.673 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'multipartConfigElement' +2024-09-23 20:16:49.673 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.MultipartAutoConfiguration' +2024-09-23 20:16:49.674 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'spring.servlet.multipart-org.springframework.boot.autoconfigure.web.servlet.MultipartProperties' +2024-09-23 20:16:49.676 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.MultipartAutoConfiguration' via constructor to bean named 'spring.servlet.multipart-org.springframework.boot.autoconfigure.web.servlet.MultipartProperties' +2024-09-23 20:16:49.679 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'errorPageCustomizer' via factory method to bean named 'dispatcherServletRegistration' +2024-09-23 20:16:49.690 [main] DEBUG o.a.tomcat.util.compat.Jre19Compat - Class not found so assuming code is running on a pre-Java 19 JVM +java.lang.ClassNotFoundException: java.lang.WrongThreadException + at java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:641) + at java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:188) + at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:525) + at java.base/java.lang.Class.forName0(Native Method) + at java.base/java.lang.Class.forName(Class.java:375) + at org.apache.tomcat.util.compat.Jre19Compat.(Jre19Compat.java:37) + at org.apache.tomcat.util.compat.JreCompat.(JreCompat.java:60) + at org.apache.catalina.startup.Tomcat.(Tomcat.java:1193) + at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getWebServer(TomcatServletWebServerFactory.java:203) + at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.createWebServer(ServletWebServerApplicationContext.java:188) + at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:162) + at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:619) + at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) + at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) + at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) + at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) + at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) + at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) + at com.guaiguailang.harmony.HarmonyLifeServerApplication.main(HarmonyLifeServerApplication.java:16) +2024-09-23 20:16:49.690 [main] DEBUG o.a.tomcat.util.compat.Jre21Compat - Class not found so assuming code is running on a pre-Java 21 JVM +java.lang.ClassNotFoundException: java.lang.Thread$Builder + at java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:641) + at java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:188) + at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:525) + at java.base/java.lang.Class.forName0(Native Method) + at java.base/java.lang.Class.forName(Class.java:375) + at org.apache.tomcat.util.compat.Jre21Compat.(Jre21Compat.java:49) + at org.apache.tomcat.util.compat.JreCompat.(JreCompat.java:60) + at org.apache.catalina.startup.Tomcat.(Tomcat.java:1193) + at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getWebServer(TomcatServletWebServerFactory.java:203) + at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.createWebServer(ServletWebServerApplicationContext.java:188) + at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:162) + at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:619) + at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) + at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) + at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) + at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) + at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) + at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) + at com.guaiguailang.harmony.HarmonyLifeServerApplication.main(HarmonyLifeServerApplication.java:16) +2024-09-23 20:16:49.690 [main] DEBUG o.a.tomcat.util.compat.Jre22Compat - Class not found so assuming code is running on a pre-Java 22 JVM +java.lang.ClassNotFoundException: java.text.ListFormat + at java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:641) + at java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:188) + at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:525) + at java.base/java.lang.Class.forName0(Native Method) + at java.base/java.lang.Class.forName(Class.java:375) + at org.apache.tomcat.util.compat.Jre22Compat.(Jre22Compat.java:37) + at org.apache.tomcat.util.compat.JreCompat.(JreCompat.java:60) + at org.apache.catalina.startup.Tomcat.(Tomcat.java:1193) + at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getWebServer(TomcatServletWebServerFactory.java:203) + at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.createWebServer(ServletWebServerApplicationContext.java:188) + at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:162) + at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:619) + at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) + at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) + at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) + at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) + at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) + at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) + at com.guaiguailang.harmony.HarmonyLifeServerApplication.main(HarmonyLifeServerApplication.java:16) +2024-09-23 20:16:49.725 [main] DEBUG o.apache.catalina.core.ContainerBase - Add container child [StandardHost[localhost]] to container [StandardEngine[Tomcat]] +2024-09-23 20:16:49.726 [main] DEBUG o.s.b.w.e.t.TomcatServletWebServerFactory - Code archive: C:\Users\xrilang\.m2\repository\org\springframework\boot\spring-boot\3.3.4\spring-boot-3.3.4.jar +2024-09-23 20:16:49.726 [main] DEBUG o.s.b.w.e.t.TomcatServletWebServerFactory - Code archive: C:\Users\xrilang\.m2\repository\org\springframework\boot\spring-boot\3.3.4\spring-boot-3.3.4.jar +2024-09-23 20:16:49.726 [main] DEBUG o.s.b.w.e.t.TomcatServletWebServerFactory - None of the document roots [src/main/webapp, public, static] point to a directory and will be ignored. +2024-09-23 20:16:49.738 [main] DEBUG o.apache.catalina.core.ContainerBase - Add container child [TomcatEmbeddedContext[]] to container [StandardEngine[Tomcat].StandardHost[localhost]] +2024-09-23 20:16:49.740 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat initialized with port 8080 (http) +2024-09-23 20:16:49.750 [main] INFO o.a.catalina.core.StandardService - Starting service [Tomcat] +2024-09-23 20:16:49.750 [main] INFO o.a.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/10.1.30] +2024-09-23 20:16:49.767 [main] DEBUG o.a.catalina.loader.WebappLoader - Starting this Loader +2024-09-23 20:16:49.803 [main] DEBUG o.a.catalina.core.StandardContext - No manager found. Checking if cluster manager should be used. Cluster configured: [false], Application distributable: [false] +2024-09-23 20:16:49.807 [main] DEBUG o.a.catalina.core.StandardContext - Configured a manager of class [org.apache.catalina.session.StandardManager] +2024-09-23 20:16:49.812 [main] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring embedded WebApplicationContext +2024-09-23 20:16:49.812 [main] DEBUG o.s.b.w.s.c.ServletWebServerApplicationContext - Published root WebApplicationContext as ServletContext attribute with name [org.springframework.web.context.WebApplicationContext.ROOT] +2024-09-23 20:16:49.813 [main] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 1929 ms +2024-09-23 20:16:49.816 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'requestContextFilter' +2024-09-23 20:16:49.817 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'formContentFilter' +2024-09-23 20:16:49.818 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration' +2024-09-23 20:16:49.820 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'saPathCheckFilterForJakartaServlet' +2024-09-23 20:16:49.820 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'cn.dev33.satoken.spring.SaTokenContextRegister' +2024-09-23 20:16:49.821 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'characterEncodingFilter' +2024-09-23 20:16:49.827 [main] DEBUG o.s.b.w.s.ServletContextInitializerBeans - Mapping filters: characterEncodingFilter urls=[/*] order=-2147483648, formContentFilter urls=[/*] order=-9900, saPathCheckFilterForJakartaServlet urls=[/*] order=-1000, requestContextFilter urls=[/*] order=-105 +2024-09-23 20:16:49.827 [main] DEBUG o.s.b.w.s.ServletContextInitializerBeans - Mapping servlets: dispatcherServlet urls=[/] +2024-09-23 20:16:49.829 [main] DEBUG o.apache.catalina.core.ContainerBase - Add container child [StandardWrapper[dispatcherServlet]] to container [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] +2024-09-23 20:16:49.850 [main] DEBUG o.s.b.w.s.f.OrderedRequestContextFilter - Filter 'requestContextFilter' configured for use +2024-09-23 20:16:49.850 [main] DEBUG o.s.b.w.s.f.OrderedCharacterEncodingFilter - Filter 'characterEncodingFilter' configured for use +2024-09-23 20:16:49.850 [main] DEBUG o.s.b.w.s.f.OrderedFormContentFilter - Filter 'formContentFilter' configured for use +2024-09-23 20:16:49.852 [main] DEBUG org.apache.catalina.mapper.Mapper - Registered host [localhost] +2024-09-23 20:16:49.853 [main] DEBUG o.a.catalina.mapper.MapperListener - Register Wrapper [dispatcherServlet] in Context [] for service [StandardService[Tomcat]] +2024-09-23 20:16:49.853 [main] DEBUG o.a.catalina.mapper.MapperListener - Register Context [] for service [StandardService[Tomcat]] +2024-09-23 20:16:49.853 [main] DEBUG o.a.catalina.mapper.MapperListener - Register host [localhost] at domain [null] for service [StandardService[Tomcat]] +2024-09-23 20:16:49.859 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'harmonyLifeServerApplication' +2024-09-23 20:16:49.860 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'globalExceptionHandler' +2024-09-23 20:16:49.862 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'saTokenConfigure' +2024-09-23 20:16:49.862 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'stpInterfaceImpl' +2024-09-23 20:16:49.864 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'authMapper' +2024-09-23 20:16:49.866 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'dataSourceScriptDatabaseInitializer' +2024-09-23 20:16:49.866 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.sql.init.DataSourceInitializationConfiguration' +2024-09-23 20:16:49.866 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'dataSource' +2024-09-23 20:16:49.866 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceConfiguration$Hikari' +2024-09-23 20:16:49.867 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'spring.datasource-org.springframework.boot.autoconfigure.jdbc.DataSourceProperties' +2024-09-23 20:16:49.872 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'jdbcConnectionDetails' +2024-09-23 20:16:49.872 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration$PooledDataSourceConfiguration' +2024-09-23 20:16:49.872 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'jdbcConnectionDetails' via factory method to bean named 'spring.datasource-org.springframework.boot.autoconfigure.jdbc.DataSourceProperties' +2024-09-23 20:16:49.872 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'dataSource' via factory method to bean named 'spring.datasource-org.springframework.boot.autoconfigure.jdbc.DataSourceProperties' +2024-09-23 20:16:49.872 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'dataSource' via factory method to bean named 'jdbcConnectionDetails' +2024-09-23 20:16:49.874 [main] DEBUG com.zaxxer.hikari.HikariConfig - Driver class com.mysql.cj.jdbc.Driver found in Thread context class loader jdk.internal.loader.ClassLoaders$AppClassLoader@2b193f2d +2024-09-23 20:16:49.883 [RMI TCP Connection(3)-172.17.0.1] DEBUG sun.rmi.transport.tcp - RMI TCP Connection(3)-172.17.0.1: (port 49599) op = 82 +2024-09-23 20:16:49.884 [RMI TCP Connection(3)-172.17.0.1] DEBUG sun.rmi.transport.tcp - RMI TCP Connection(3)-172.17.0.1: (port 49599) op = 80 +2024-09-23 20:16:49.884 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'spring.sql.init-org.springframework.boot.autoconfigure.sql.init.SqlInitializationProperties' +2024-09-23 20:16:49.885 [RMI TCP Connection(3)-172.17.0.1] DEBUG sun.rmi.transport.tcp - RMI TCP Connection(3)-172.17.0.1: (port 49599) op = 80 +2024-09-23 20:16:49.885 [RMI TCP Connection(3)-172.17.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(3)-172.17.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@2fc3f829 +2024-09-23 20:16:49.885 [RMI TCP Connection(3)-172.17.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(3)-172.17.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@2fc3f829 +2024-09-23 20:16:49.885 [RMI TCP Connection(3)-172.17.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(3)-172.17.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@2fc3f829 +2024-09-23 20:16:49.885 [RMI TCP Connection(3)-172.17.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(3)-172.17.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@2fc3f829 +2024-09-23 20:16:49.886 [RMI TCP Connection(3)-172.17.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(3)-172.17.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@2fc3f829 +2024-09-23 20:16:49.886 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'dataSourceScriptDatabaseInitializer' via factory method to bean named 'dataSource' +2024-09-23 20:16:49.886 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'dataSourceScriptDatabaseInitializer' via factory method to bean named 'spring.sql.init-org.springframework.boot.autoconfigure.sql.init.SqlInitializationProperties' +2024-09-23 20:16:49.886 [RMI TCP Connection(3)-172.17.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(3)-172.17.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@2fc3f829 +2024-09-23 20:16:49.886 [RMI TCP Connection(3)-172.17.0.1] DEBUG sun.rmi.transport.tcp - RMI TCP Connection(3)-172.17.0.1: (port 49599) op = 84 +2024-09-23 20:16:49.886 [RMI TCP Connection(3)-172.17.0.1] DEBUG sun.rmi.transport.tcp - RMI TCP Connection(3)-172.17.0.1: (port 49599) op = 80 +2024-09-23 20:16:49.887 [RMI TCP Connection(3)-172.17.0.1] DEBUG sun.rmi.transport.tcp - RMI TCP Connection(3)-172.17.0.1: (port 49599) op = 80 +2024-09-23 20:16:49.887 [RMI TCP Connection(3)-172.17.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(3)-172.17.0.1: name = "javax.management.ObjectName", codebase = "" +2024-09-23 20:16:49.887 [RMI TCP Connection(3)-172.17.0.1] DEBUG javax.management.remote.rmi - connectionId=rmi://172.17.0.1 3, name=org.springframework.boot:type=Admin,name=SpringApplication, attribute=Ready +2024-09-23 20:16:49.887 [RMI TCP Connection(3)-172.17.0.1] DEBUG sun.rmi.server.call - RMI TCP Connection(3)-172.17.0.1: [172.17.0.1] exception: +javax.management.InstanceNotFoundException: org.springframework.boot:type=Admin,name=SpringApplication + at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getMBean(DefaultMBeanServerInterceptor.java:1088) + at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getAttribute(DefaultMBeanServerInterceptor.java:640) + at java.management/com.sun.jmx.mbeanserver.JmxMBeanServer.getAttribute(JmxMBeanServer.java:679) + at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doOperation(RMIConnectionImpl.java:1449) + at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl$PrivilegedOperation.run(RMIConnectionImpl.java:1310) + at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doPrivilegedOperation(RMIConnectionImpl.java:1405) + at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.getAttribute(RMIConnectionImpl.java:639) + at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) + at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.base/java.lang.reflect.Method.invoke(Method.java:568) + at java.rmi/sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:360) + at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:200) + at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:197) + at java.base/java.security.AccessController.doPrivileged(AccessController.java:712) + at java.rmi/sun.rmi.transport.Transport.serviceCall(Transport.java:196) + at java.rmi/sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:587) + at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run0(TCPTransport.java:828) + at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.lambda$run$0(TCPTransport.java:705) + at java.base/java.security.AccessController.doPrivileged(AccessController.java:399) + at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:704) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:833) +2024-09-23 20:16:49.888 [RMI TCP Connection(3)-172.17.0.1] DEBUG sun.rmi.transport.tcp - RMI TCP Connection(3)-172.17.0.1: (port 49599) op = 80 +2024-09-23 20:16:49.888 [RMI TCP Connection(3)-172.17.0.1] DEBUG javax.management.remote.rmi - [javax.management.remote.rmi.RMIConnectionImpl@684159f: connectionId=rmi://172.17.0.1 3] closing. +2024-09-23 20:16:49.889 [RMI TCP Connection(3)-172.17.0.1] DEBUG javax.management.remote.rmi - [javax.management.remote.rmi.RMIConnectionImpl@684159f: connectionId=rmi://172.17.0.1 3] closed. +2024-09-23 20:16:49.890 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'sqlSessionTemplate' +2024-09-23 20:16:49.890 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.mybatis.spring.boot.autoconfigure.MybatisAutoConfiguration' +2024-09-23 20:16:49.891 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'mybatis-org.mybatis.spring.boot.autoconfigure.MybatisProperties' +2024-09-23 20:16:49.898 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'org.mybatis.spring.boot.autoconfigure.MybatisAutoConfiguration' via constructor to bean named 'mybatis-org.mybatis.spring.boot.autoconfigure.MybatisProperties' +2024-09-23 20:16:49.899 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'org.mybatis.spring.boot.autoconfigure.MybatisAutoConfiguration' via constructor to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@77602954' +2024-09-23 20:16:49.900 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'sqlSessionFactory' +2024-09-23 20:16:49.900 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'sqlSessionFactory' via factory method to bean named 'dataSource' +2024-09-23 20:16:50.006 [main] DEBUG o.m.spring.SqlSessionFactoryBean - Parsed mapper file: 'file [C:\Users\xrilang\Desktop\harmony-life\harmony-life-server\harmony-life-server\target\classes\mapper\AuthMapper.xml]' +2024-09-23 20:16:50.012 [main] DEBUG o.m.spring.SqlSessionFactoryBean - Parsed mapper file: 'file [C:\Users\xrilang\Desktop\harmony-life\harmony-life-server\harmony-life-server\target\classes\mapper\SystemMapper.xml]' +2024-09-23 20:16:50.017 [main] DEBUG o.m.spring.SqlSessionFactoryBean - Parsed mapper file: 'file [C:\Users\xrilang\Desktop\harmony-life\harmony-life-server\harmony-life-server\target\classes\mapper\UserMapper.xml]' +2024-09-23 20:16:50.019 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'sqlSessionTemplate' via factory method to bean named 'sqlSessionFactory' +2024-09-23 20:16:50.023 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'userMapper' +2024-09-23 20:16:50.024 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'authController' +2024-09-23 20:16:50.027 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'authServiceImpl' +2024-09-23 20:16:50.027 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'authServiceImpl' via constructor to bean named 'authMapper' +2024-09-23 20:16:50.027 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'authServiceImpl' via constructor to bean named 'userMapper' +2024-09-23 20:16:50.029 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'authController' via constructor to bean named 'authServiceImpl' +2024-09-23 20:16:50.030 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'systemController' +2024-09-23 20:16:50.031 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'systemServiceImpl' +2024-09-23 20:16:50.031 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'systemMapper' +2024-09-23 20:16:50.032 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'systemServiceImpl' via constructor to bean named 'systemMapper' +2024-09-23 20:16:50.032 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'systemController' via constructor to bean named 'systemServiceImpl' +2024-09-23 20:16:50.033 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'userController' +2024-09-23 20:16:50.034 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'userServiceImpl' +2024-09-23 20:16:50.034 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'userServiceImpl' via constructor to bean named 'userMapper' +2024-09-23 20:16:50.034 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'userServiceImpl' via constructor to bean named 'authMapper' +2024-09-23 20:16:50.034 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.context.PropertyPlaceholderAutoConfiguration' +2024-09-23 20:16:50.035 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.context.properties.EnableConfigurationPropertiesRegistrar.methodValidationExcludeFilter' +2024-09-23 20:16:50.036 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.websocket.servlet.WebSocketServletAutoConfiguration' +2024-09-23 20:16:50.036 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration' +2024-09-23 20:16:50.036 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$ThreadPoolTaskExecutorBuilderConfiguration' +2024-09-23 20:16:50.036 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'threadPoolTaskExecutorBuilder' +2024-09-23 20:16:50.037 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties' +2024-09-23 20:16:50.038 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'threadPoolTaskExecutorBuilder' via factory method to bean named 'spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties' +2024-09-23 20:16:50.040 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$TaskExecutorBuilderConfiguration' +2024-09-23 20:16:50.040 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'taskExecutorBuilder' +2024-09-23 20:16:50.040 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'taskExecutorBuilder' via factory method to bean named 'spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties' +2024-09-23 20:16:50.040 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$SimpleAsyncTaskExecutorBuilderConfiguration' +2024-09-23 20:16:50.042 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$SimpleAsyncTaskExecutorBuilderConfiguration' via constructor to bean named 'spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties' +2024-09-23 20:16:50.042 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'simpleAsyncTaskExecutorBuilder' +2024-09-23 20:16:50.043 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutorConfigurations$TaskExecutorConfiguration' +2024-09-23 20:16:50.043 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutionAutoConfiguration' +2024-09-23 20:16:50.043 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$WhitelabelErrorViewConfiguration' +2024-09-23 20:16:50.044 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'error' +2024-09-23 20:16:50.045 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'beanNameViewResolver' +2024-09-23 20:16:50.046 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$DefaultErrorViewResolverConfiguration' +2024-09-23 20:16:50.046 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'spring.web-org.springframework.boot.autoconfigure.web.WebProperties' +2024-09-23 20:16:50.049 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$DefaultErrorViewResolverConfiguration' via constructor to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@77602954' +2024-09-23 20:16:50.049 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$DefaultErrorViewResolverConfiguration' via constructor to bean named 'spring.web-org.springframework.boot.autoconfigure.web.WebProperties' +2024-09-23 20:16:50.049 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'conventionErrorViewResolver' +2024-09-23 20:16:50.049 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'errorAttributes' +2024-09-23 20:16:50.051 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'basicErrorController' +2024-09-23 20:16:50.051 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'basicErrorController' via factory method to bean named 'errorAttributes' +2024-09-23 20:16:50.053 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration' +2024-09-23 20:16:50.054 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration' via constructor to bean named 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' +2024-09-23 20:16:50.054 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration' via constructor to bean named 'spring.web-org.springframework.boot.autoconfigure.web.WebProperties' +2024-09-23 20:16:50.054 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration' via constructor to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@51650883' +2024-09-23 20:16:50.056 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter' +2024-09-23 20:16:50.057 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter' via constructor to bean named 'spring.web-org.springframework.boot.autoconfigure.web.WebProperties' +2024-09-23 20:16:50.057 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter' via constructor to bean named 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' +2024-09-23 20:16:50.057 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter' via constructor to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@51650883' +2024-09-23 20:16:50.057 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'swaggerWebMvcConfigurer' +2024-09-23 20:16:50.057 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springdoc.webmvc.ui.SwaggerConfig' +2024-09-23 20:16:50.058 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springdoc.core.properties.SwaggerUiConfigParameters' +2024-09-23 20:16:50.059 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springdoc.core.properties.SwaggerUiConfigProperties' +2024-09-23 20:16:50.066 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'org.springdoc.core.properties.SwaggerUiConfigParameters' via constructor to bean named 'org.springdoc.core.properties.SwaggerUiConfigProperties' +2024-09-23 20:16:50.067 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'indexPageTransformer' +2024-09-23 20:16:50.067 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springdoc.core.properties.SwaggerUiOAuthProperties' +2024-09-23 20:16:50.069 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'swaggerWelcome' +2024-09-23 20:16:50.069 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springdoc.core.properties.SpringDocConfigProperties' +2024-09-23 20:16:50.074 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'springWebProvider' +2024-09-23 20:16:50.074 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springdoc.webmvc.core.configuration.SpringDocWebMvcConfiguration' +2024-09-23 20:16:50.078 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'swaggerWelcome' via factory method to bean named 'org.springdoc.core.properties.SwaggerUiConfigProperties' +2024-09-23 20:16:50.078 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'swaggerWelcome' via factory method to bean named 'org.springdoc.core.properties.SpringDocConfigProperties' +2024-09-23 20:16:50.078 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'swaggerWelcome' via factory method to bean named 'org.springdoc.core.properties.SwaggerUiConfigParameters' +2024-09-23 20:16:50.078 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'swaggerWelcome' via factory method to bean named 'springWebProvider' +2024-09-23 20:16:50.091 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'springdocObjectMapperProvider' +2024-09-23 20:16:50.091 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springdoc.core.configuration.SpringDocConfiguration' +2024-09-23 20:16:50.092 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'springdocObjectMapperProvider' via factory method to bean named 'org.springdoc.core.properties.SpringDocConfigProperties' +2024-09-23 20:16:50.106 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'indexPageTransformer' via factory method to bean named 'org.springdoc.core.properties.SwaggerUiConfigProperties' +2024-09-23 20:16:50.106 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'indexPageTransformer' via factory method to bean named 'org.springdoc.core.properties.SwaggerUiOAuthProperties' +2024-09-23 20:16:50.106 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'indexPageTransformer' via factory method to bean named 'org.springdoc.core.properties.SwaggerUiConfigParameters' +2024-09-23 20:16:50.106 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'indexPageTransformer' via factory method to bean named 'swaggerWelcome' +2024-09-23 20:16:50.106 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'indexPageTransformer' via factory method to bean named 'springdocObjectMapperProvider' +2024-09-23 20:16:50.108 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'swaggerResourceResolver' +2024-09-23 20:16:50.108 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'swaggerResourceResolver' via factory method to bean named 'org.springdoc.core.properties.SwaggerUiConfigProperties' +2024-09-23 20:16:50.109 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'swaggerWebMvcConfigurer' via factory method to bean named 'org.springdoc.core.properties.SwaggerUiConfigParameters' +2024-09-23 20:16:50.109 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'swaggerWebMvcConfigurer' via factory method to bean named 'indexPageTransformer' +2024-09-23 20:16:50.109 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'swaggerWebMvcConfigurer' via factory method to bean named 'swaggerResourceResolver' +2024-09-23 20:16:50.109 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.data.web.config.SpringDataWebConfiguration' +2024-09-23 20:16:50.110 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'org.springframework.data.web.config.SpringDataWebConfiguration' via constructor to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@77602954' +2024-09-23 20:16:50.112 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'welcomePageHandlerMapping' +2024-09-23 20:16:50.112 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'mvcConversionService' +2024-09-23 20:16:50.118 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'mvcResourceUrlProvider' +2024-09-23 20:16:50.119 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'welcomePageHandlerMapping' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@77602954' +2024-09-23 20:16:50.119 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'welcomePageHandlerMapping' via factory method to bean named 'mvcConversionService' +2024-09-23 20:16:50.119 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'welcomePageHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' +2024-09-23 20:16:50.133 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'welcomePageNotAcceptableHandlerMapping' +2024-09-23 20:16:50.133 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'welcomePageNotAcceptableHandlerMapping' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@77602954' +2024-09-23 20:16:50.133 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'welcomePageNotAcceptableHandlerMapping' via factory method to bean named 'mvcConversionService' +2024-09-23 20:16:50.133 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'welcomePageNotAcceptableHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' +2024-09-23 20:16:50.135 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'localeResolver' +2024-09-23 20:16:50.136 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'themeResolver' +2024-09-23 20:16:50.137 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'flashMapManager' +2024-09-23 20:16:50.138 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'mvcValidator' +2024-09-23 20:16:50.142 [main] DEBUG o.s.v.b.OptionalValidatorFactoryBean - Failed to set up a Bean Validation provider +jakarta.validation.NoProviderFoundException: Unable to create a Configuration, because no Jakarta Bean Validation provider could be found. Add a provider like Hibernate Validator (RI) to your classpath. + at jakarta.validation.Validation$GenericBootstrapImpl.configure(Validation.java:291) + at org.springframework.validation.beanvalidation.LocalValidatorFactoryBean.afterPropertiesSet(LocalValidatorFactoryBean.java:270) + at org.springframework.validation.beanvalidation.OptionalValidatorFactoryBean.afterPropertiesSet(OptionalValidatorFactoryBean.java:39) + at org.springframework.boot.autoconfigure.validation.ValidatorAdapter.afterPropertiesSet(ValidatorAdapter.java:85) + at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1853) + at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1802) + at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) + at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) + at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) + at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) + at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) + at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) + at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) + at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:971) + at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:625) + at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) + at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) + at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) + at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) + at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) + at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) + at com.guaiguailang.harmony.HarmonyLifeServerApplication.main(HarmonyLifeServerApplication.java:16) +2024-09-23 20:16:50.142 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'mvcContentNegotiationManager' +2024-09-23 20:16:50.145 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'requestMappingHandlerMapping' +2024-09-23 20:16:50.146 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'requestMappingHandlerMapping' via factory method to bean named 'mvcContentNegotiationManager' +2024-09-23 20:16:50.146 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'requestMappingHandlerMapping' via factory method to bean named 'mvcConversionService' +2024-09-23 20:16:50.146 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'requestMappingHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' +2024-09-23 20:16:50.163 [main] DEBUG _.s.w.s.HandlerMapping.Mappings - + c.g.h.c.AuthController: + {POST [/auth/logout]}: logout() + {POST [/auth/login]}: loginByAccount(ParamLogin) +2024-09-23 20:16:50.165 [main] DEBUG _.s.w.s.HandlerMapping.Mappings - + c.g.h.c.SystemController: + {GET [/system/menu]}: getMenu() +2024-09-23 20:16:50.166 [main] DEBUG _.s.w.s.HandlerMapping.Mappings - + c.g.h.c.UserController: + {GET [/user/info]}: loginByAccount() +2024-09-23 20:16:50.167 [main] DEBUG _.s.w.s.HandlerMapping.Mappings - + o.s.b.a.w.s.e.BasicErrorController: + { [/error]}: error(HttpServletRequest) + { [/error], produces [text/html]}: errorHtml(HttpServletRequest,HttpServletResponse) +2024-09-23 20:16:50.168 [main] DEBUG o.s.c.e.PropertySourcesPropertyResolver - Found key 'springdoc.api-docs.path' in PropertySource 'environmentProperties' with value of type String +2024-09-23 20:16:50.169 [main] DEBUG o.s.c.e.PropertySourcesPropertyResolver - Found key 'springdoc.api-docs.path' in PropertySource 'environmentProperties' with value of type String +2024-09-23 20:16:50.169 [main] DEBUG _.s.w.s.HandlerMapping.Mappings - + o.s.w.a.MultipleOpenApiWebMvcResource: + {GET [/v3/api-docs.yaml/{group}], produces [application/vnd.oai.openapi]}: openapiYaml(HttpServletRequest,String,String,Locale) + {GET [/v3/api-docs/{group}], produces [application/json]}: openapiJson(HttpServletRequest,String,String,Locale) +2024-09-23 20:16:50.172 [main] DEBUG o.s.c.e.PropertySourcesPropertyResolver - Found key 'springdoc.api-docs.path' in PropertySource 'environmentProperties' with value of type String +2024-09-23 20:16:50.173 [main] DEBUG o.s.c.e.PropertySourcesPropertyResolver - Found key 'springdoc.api-docs.path' in PropertySource 'environmentProperties' with value of type String +2024-09-23 20:16:50.173 [main] DEBUG o.s.c.e.PropertySourcesPropertyResolver - Found key 'springdoc.api-docs.path' in PropertySource 'environmentProperties' with value of type String +2024-09-23 20:16:50.173 [main] DEBUG o.s.c.e.PropertySourcesPropertyResolver - Found key 'springdoc.api-docs.path' in PropertySource 'environmentProperties' with value of type String +2024-09-23 20:16:50.174 [main] DEBUG _.s.w.s.HandlerMapping.Mappings - + o.s.w.a.OpenApiWebMvcResource: + {GET [/v3/api-docs.yaml], produces [application/vnd.oai.openapi]}: openapiYaml(HttpServletRequest,String,Locale) + {GET [/v3/api-docs], produces [application/json]}: openapiJson(HttpServletRequest,String,Locale) +2024-09-23 20:16:50.175 [main] DEBUG o.s.c.e.PropertySourcesPropertyResolver - Found key 'springdoc.swagger-ui.path' in PropertySource 'environmentProperties' with value of type String +2024-09-23 20:16:50.176 [main] DEBUG o.s.c.e.PropertySourcesPropertyResolver - Found key 'springdoc.swagger-ui.path' in PropertySource 'environmentProperties' with value of type String +2024-09-23 20:16:50.176 [main] DEBUG _.s.w.s.HandlerMapping.Mappings - + o.s.w.u.SwaggerWelcomeWebMvc: + {GET [/swagger-ui.html]}: redirectToUi(HttpServletRequest) +2024-09-23 20:16:50.176 [main] DEBUG o.s.c.e.PropertySourcesPropertyResolver - Found key 'springdoc.api-docs.path' in PropertySource 'environmentProperties' with value of type String +2024-09-23 20:16:50.177 [main] DEBUG _.s.w.s.HandlerMapping.Mappings - + o.s.w.u.SwaggerConfigResource: + {GET [/v3/api-docs/swagger-config], produces [application/json]}: openapiJson(HttpServletRequest) +2024-09-23 20:16:50.178 [main] DEBUG o.s.w.s.m.m.a.RequestMappingHandlerMapping - 12 mappings in 'requestMappingHandlerMapping' +2024-09-23 20:16:50.179 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'mvcPatternParser' +2024-09-23 20:16:50.180 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'mvcUrlPathHelper' +2024-09-23 20:16:50.180 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'mvcPathMatcher' +2024-09-23 20:16:50.181 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'viewControllerHandlerMapping' +2024-09-23 20:16:50.181 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'viewControllerHandlerMapping' via factory method to bean named 'mvcConversionService' +2024-09-23 20:16:50.181 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'viewControllerHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' +2024-09-23 20:16:50.181 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'beanNameHandlerMapping' +2024-09-23 20:16:50.182 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'beanNameHandlerMapping' via factory method to bean named 'mvcConversionService' +2024-09-23 20:16:50.182 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'beanNameHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' +2024-09-23 20:16:50.184 [main] DEBUG _.s.w.s.HandlerMapping.Mappings - 'beanNameHandlerMapping' {} +2024-09-23 20:16:50.184 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'routerFunctionMapping' +2024-09-23 20:16:50.185 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'routerFunctionMapping' via factory method to bean named 'mvcConversionService' +2024-09-23 20:16:50.185 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'routerFunctionMapping' via factory method to bean named 'mvcResourceUrlProvider' +2024-09-23 20:16:50.185 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'messageConverters' +2024-09-23 20:16:50.185 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration' +2024-09-23 20:16:50.187 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'stringHttpMessageConverter' +2024-09-23 20:16:50.187 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration$StringHttpMessageConverterConfiguration' +2024-09-23 20:16:50.188 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'stringHttpMessageConverter' via factory method to bean named 'environment' +2024-09-23 20:16:50.190 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'mappingJackson2HttpMessageConverter' +2024-09-23 20:16:50.190 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.JacksonHttpMessageConvertersConfiguration$MappingJackson2HttpMessageConverterConfiguration' +2024-09-23 20:16:50.190 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'jacksonObjectMapper' +2024-09-23 20:16:50.190 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperConfiguration' +2024-09-23 20:16:50.191 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperBuilderConfiguration' +2024-09-23 20:16:50.191 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'standardJacksonObjectMapperBuilderCustomizer' +2024-09-23 20:16:50.191 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$Jackson2ObjectMapperBuilderCustomizerConfiguration' +2024-09-23 20:16:50.192 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'spring.jackson-org.springframework.boot.autoconfigure.jackson.JacksonProperties' +2024-09-23 20:16:50.193 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'standardJacksonObjectMapperBuilderCustomizer' via factory method to bean named 'spring.jackson-org.springframework.boot.autoconfigure.jackson.JacksonProperties' +2024-09-23 20:16:50.194 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'parameterNamesModule' +2024-09-23 20:16:50.194 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$ParameterNamesModuleConfiguration' +2024-09-23 20:16:50.197 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'jsonMixinModule' +2024-09-23 20:16:50.197 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonMixinConfiguration' +2024-09-23 20:16:50.197 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'jsonMixinModuleEntries' +2024-09-23 20:16:50.197 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'jsonMixinModuleEntries' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@77602954' +2024-09-23 20:16:50.203 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'jsonMixinModule' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@77602954' +2024-09-23 20:16:50.203 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'jsonMixinModule' via factory method to bean named 'jsonMixinModuleEntries' +2024-09-23 20:16:50.204 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'jsonComponentModule' +2024-09-23 20:16:50.204 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration' +2024-09-23 20:16:50.206 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'jacksonGeoModule' +2024-09-23 20:16:50.206 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.data.web.config.SpringDataJacksonConfiguration' +2024-09-23 20:16:50.208 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'pageModule' +2024-09-23 20:16:50.210 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'jacksonObjectMapperBuilder' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@77602954' +2024-09-23 20:16:50.210 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'jacksonObjectMapperBuilder' via factory method to bean named 'standardJacksonObjectMapperBuilderCustomizer' +2024-09-23 20:16:50.211 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'jacksonObjectMapper' via factory method to bean named 'jacksonObjectMapperBuilder' +2024-09-23 20:16:50.221 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'mappingJackson2HttpMessageConverter' via factory method to bean named 'jacksonObjectMapper' +2024-09-23 20:16:50.226 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'resourceHandlerMapping' +2024-09-23 20:16:50.226 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'resourceHandlerMapping' via factory method to bean named 'mvcContentNegotiationManager' +2024-09-23 20:16:50.226 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'resourceHandlerMapping' via factory method to bean named 'mvcConversionService' +2024-09-23 20:16:50.226 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'resourceHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' +2024-09-23 20:16:50.234 [main] DEBUG _.s.w.s.HandlerMapping.Mappings - 'resourceHandlerMapping' {/webjars/**=ResourceHttpRequestHandler [classpath [META-INF/resources/webjars/]], /**=ResourceHttpRequestHandler [classpath [META-INF/resources/], classpath [resources/], classpath [static/], classpath [public/], ServletContext [/]], /swagger-ui*/*swagger-initializer.js=ResourceHttpRequestHandler [classpath [META-INF/resources/webjars/]], /swagger-ui*/**=ResourceHttpRequestHandler [classpath [META-INF/resources/webjars/]]} +2024-09-23 20:16:50.235 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'defaultServletHandlerMapping' +2024-09-23 20:16:50.236 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'requestMappingHandlerAdapter' +2024-09-23 20:16:50.236 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'requestMappingHandlerAdapter' via factory method to bean named 'mvcContentNegotiationManager' +2024-09-23 20:16:50.236 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'requestMappingHandlerAdapter' via factory method to bean named 'mvcConversionService' +2024-09-23 20:16:50.237 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'requestMappingHandlerAdapter' via factory method to bean named 'mvcValidator' +2024-09-23 20:16:50.241 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'sortResolver' +2024-09-23 20:16:50.242 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'sortCustomizer' +2024-09-23 20:16:50.242 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.data.web.SpringDataWebAutoConfiguration' +2024-09-23 20:16:50.242 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'spring.data.web-org.springframework.boot.autoconfigure.data.web.SpringDataWebProperties' +2024-09-23 20:16:50.243 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.data.web.SpringDataWebAutoConfiguration' via constructor to bean named 'spring.data.web-org.springframework.boot.autoconfigure.data.web.SpringDataWebProperties' +2024-09-23 20:16:50.245 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'pageableResolver' +2024-09-23 20:16:50.246 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'pageableCustomizer' +2024-09-23 20:16:50.248 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'applicationTaskExecutor' +2024-09-23 20:16:50.249 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'applicationTaskExecutor' via factory method to bean named 'taskExecutorBuilder' +2024-09-23 20:16:50.252 [main] DEBUG o.s.s.c.ThreadPoolTaskExecutor - Initializing ExecutorService 'applicationTaskExecutor' +2024-09-23 20:16:50.258 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springdoc.core.configuration.SpringDocConfiguration$OpenApiResourceAdvice' +2024-09-23 20:16:50.259 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'org.springdoc.core.configuration.SpringDocConfiguration$OpenApiResourceAdvice' via constructor to bean named 'org.springdoc.core.configuration.SpringDocConfiguration' +2024-09-23 20:16:50.261 [main] DEBUG o.s.w.s.m.m.a.RequestMappingHandlerAdapter - ControllerAdvice beans: 0 @ModelAttribute, 0 @InitBinder, 1 RequestBodyAdvice, 1 ResponseBodyAdvice +2024-09-23 20:16:50.289 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'handlerFunctionAdapter' +2024-09-23 20:16:50.290 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'mvcUriComponentsContributor' +2024-09-23 20:16:50.291 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'mvcUriComponentsContributor' via factory method to bean named 'mvcConversionService' +2024-09-23 20:16:50.291 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'mvcUriComponentsContributor' via factory method to bean named 'requestMappingHandlerAdapter' +2024-09-23 20:16:50.291 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'httpRequestHandlerAdapter' +2024-09-23 20:16:50.291 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'simpleControllerHandlerAdapter' +2024-09-23 20:16:50.292 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'handlerExceptionResolver' +2024-09-23 20:16:50.292 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'handlerExceptionResolver' via factory method to bean named 'mvcContentNegotiationManager' +2024-09-23 20:16:50.294 [main] DEBUG o.s.w.s.m.m.a.ExceptionHandlerExceptionResolver - ControllerAdvice beans: 2 @ExceptionHandler, 1 ResponseBodyAdvice +2024-09-23 20:16:50.296 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'mvcViewResolver' +2024-09-23 20:16:50.296 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'mvcViewResolver' via factory method to bean named 'mvcContentNegotiationManager' +2024-09-23 20:16:50.298 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'viewNameTranslator' +2024-09-23 20:16:50.298 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'defaultViewResolver' +2024-09-23 20:16:50.302 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'viewResolver' +2024-09-23 20:16:50.302 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'viewResolver' via factory method to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@51650883' +2024-09-23 20:16:50.303 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'viewResolver' +2024-09-23 20:16:50.303 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'cn.dev33.satoken.dao.SaTokenDaoRedisJackson' +2024-09-23 20:16:50.305 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'redisConnectionFactory' +2024-09-23 20:16:50.305 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.data.redis.LettuceConnectionConfiguration' +2024-09-23 20:16:50.306 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'spring.data.redis-org.springframework.boot.autoconfigure.data.redis.RedisProperties' +2024-09-23 20:16:50.309 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'redisConnectionDetails' +2024-09-23 20:16:50.309 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.data.redis.RedisAutoConfiguration' +2024-09-23 20:16:50.309 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'redisConnectionDetails' via factory method to bean named 'spring.data.redis-org.springframework.boot.autoconfigure.data.redis.RedisProperties' +2024-09-23 20:16:50.310 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.data.redis.LettuceConnectionConfiguration' via constructor to bean named 'spring.data.redis-org.springframework.boot.autoconfigure.data.redis.RedisProperties' +2024-09-23 20:16:50.310 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.data.redis.LettuceConnectionConfiguration' via constructor to bean named 'redisConnectionDetails' +2024-09-23 20:16:50.310 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'lettuceClientResources' +2024-09-23 20:16:50.314 [main] DEBUG i.n.u.i.l.InternalLoggerFactory - Using SLF4J as the default logging framework +2024-09-23 20:16:50.317 [main] DEBUG i.l.c.r.AddressResolverGroupProvider - Starting without optional netty's non-blocking DNS resolver library +2024-09-23 20:16:50.318 [main] DEBUG i.l.c.r.DefaultClientResources - -Dio.netty.eventLoopThreads: 20 +2024-09-23 20:16:50.322 [main] DEBUG i.l.c.r.DefaultEventLoopGroupProvider - Creating executor io.netty.util.concurrent.DefaultEventExecutorGroup +2024-09-23 20:16:50.330 [main] DEBUG i.n.u.concurrent.GlobalEventExecutor - -Dio.netty.globalEventExecutor.quietPeriodSeconds: 1 +2024-09-23 20:16:50.334 [main] DEBUG i.n.u.i.InternalThreadLocalMap - -Dio.netty.threadLocalMap.stringBuilder.initialSize: 1024 +2024-09-23 20:16:50.334 [main] DEBUG i.n.u.i.InternalThreadLocalMap - -Dio.netty.threadLocalMap.stringBuilder.maxSize: 4096 +2024-09-23 20:16:50.337 [main] DEBUG io.netty.util.ResourceLeakDetector - -Dio.netty.leakDetection.level: simple +2024-09-23 20:16:50.337 [main] DEBUG io.netty.util.ResourceLeakDetector - -Dio.netty.leakDetection.targetRecords: 4 +2024-09-23 20:16:50.339 [main] DEBUG i.n.util.ResourceLeakDetectorFactory - Loaded default ResourceLeakDetector: io.netty.util.ResourceLeakDetector@1a89414e +2024-09-23 20:16:50.352 [main] DEBUG i.n.util.internal.PlatformDependent0 - -Dio.netty.noUnsafe: false +2024-09-23 20:16:50.352 [main] DEBUG i.n.util.internal.PlatformDependent0 - Java version: 17 +2024-09-23 20:16:50.352 [main] DEBUG i.n.util.internal.PlatformDependent0 - sun.misc.Unsafe.theUnsafe: available +2024-09-23 20:16:50.352 [main] DEBUG i.n.util.internal.PlatformDependent0 - sun.misc.Unsafe base methods: all available +2024-09-23 20:16:50.352 [main] DEBUG i.n.util.internal.PlatformDependent0 - sun.misc.Unsafe.storeFence: available +2024-09-23 20:16:50.353 [main] DEBUG i.n.util.internal.PlatformDependent0 - java.nio.Buffer.address: available +2024-09-23 20:16:50.353 [main] DEBUG i.n.util.internal.PlatformDependent0 - direct buffer constructor: unavailable: Reflective setAccessible(true) disabled +2024-09-23 20:16:50.353 [main] DEBUG i.n.util.internal.PlatformDependent0 - java.nio.Bits.unaligned: available, true +2024-09-23 20:16:50.354 [main] DEBUG i.n.util.internal.PlatformDependent0 - jdk.internal.misc.Unsafe.allocateUninitializedArray(int): unavailable: class io.netty.util.internal.PlatformDependent0$7 cannot access class jdk.internal.misc.Unsafe (in module java.base) because module java.base does not export jdk.internal.misc to unnamed module @7770f470 +2024-09-23 20:16:50.354 [main] DEBUG i.n.util.internal.PlatformDependent0 - java.nio.DirectByteBuffer.(long, {int,long}): unavailable +2024-09-23 20:16:50.354 [main] DEBUG i.n.util.internal.PlatformDependent - sun.misc.Unsafe: available +2024-09-23 20:16:50.355 [main] DEBUG i.n.util.internal.PlatformDependent - -Dio.netty.tmpdir: C:\Users\xrilang\AppData\Local\Temp (java.io.tmpdir) +2024-09-23 20:16:50.355 [main] DEBUG i.n.util.internal.PlatformDependent - -Dio.netty.bitMode: 64 (sun.arch.data.model) +2024-09-23 20:16:50.355 [main] DEBUG i.n.util.internal.PlatformDependent - Platform: Windows +2024-09-23 20:16:50.355 [main] DEBUG i.n.util.internal.PlatformDependent - -Dio.netty.maxDirectMemory: -1 bytes +2024-09-23 20:16:50.355 [main] DEBUG i.n.util.internal.PlatformDependent - -Dio.netty.uninitializedArrayAllocationThreshold: -1 +2024-09-23 20:16:50.356 [main] DEBUG io.netty.util.internal.CleanerJava9 - java.nio.ByteBuffer.cleaner(): available +2024-09-23 20:16:50.356 [main] DEBUG i.n.util.internal.PlatformDependent - -Dio.netty.noPreferDirect: false +2024-09-23 20:16:50.360 [main] DEBUG i.n.util.internal.PlatformDependent - org.jctools-core.MpscChunkedArrayQueue: available +2024-09-23 20:16:50.365 [main] DEBUG reactor.util.Loggers - Using Slf4j logging framework +2024-09-23 20:16:50.367 [main] DEBUG i.l.c.event.jfr.EventRecorderHolder - Starting with JFR support +2024-09-23 20:16:50.373 [main] DEBUG i.l.c.r.DefaultClientResources - LatencyUtils/HdrUtils are not available, metrics are disabled +2024-09-23 20:16:50.375 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'redisConnectionFactory' via factory method to bean named 'lettuceClientResources' +2024-09-23 20:16:50.391 [RMI TCP Connection(3)-172.17.0.1] DEBUG sun.rmi.transport.tcp - RMI TCP Connection(3)-172.17.0.1: (port 49599) op = 82 +2024-09-23 20:16:50.391 [RMI TCP Connection(3)-172.17.0.1] DEBUG sun.rmi.transport.tcp - RMI TCP Connection(3)-172.17.0.1: (port 49599) op = 80 +2024-09-23 20:16:50.392 [RMI TCP Connection(3)-172.17.0.1] DEBUG sun.rmi.transport.tcp - RMI TCP Connection(3)-172.17.0.1: (port 49599) op = 82 +2024-09-23 20:16:50.392 [RMI TCP Connection(3)-172.17.0.1] DEBUG sun.rmi.transport.tcp - RMI TCP Connection(3)-172.17.0.1: (port 49599) op = 80 +2024-09-23 20:16:50.392 [RMI TCP Connection(3)-172.17.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(3)-172.17.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@2fc3f829 +2024-09-23 20:16:50.393 [RMI TCP Connection(3)-172.17.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(3)-172.17.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@2fc3f829 +2024-09-23 20:16:50.393 [RMI TCP Connection(3)-172.17.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(3)-172.17.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@2fc3f829 +2024-09-23 20:16:50.393 [RMI TCP Connection(3)-172.17.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(3)-172.17.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@2fc3f829 +2024-09-23 20:16:50.393 [RMI TCP Connection(3)-172.17.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(3)-172.17.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@2fc3f829 +2024-09-23 20:16:50.393 [RMI TCP Connection(3)-172.17.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(3)-172.17.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@2fc3f829 +2024-09-23 20:16:50.394 [RMI TCP Connection(3)-172.17.0.1] DEBUG sun.rmi.transport.tcp - RMI TCP Connection(3)-172.17.0.1: (port 49599) op = 82 +2024-09-23 20:16:50.394 [RMI TCP Connection(3)-172.17.0.1] DEBUG sun.rmi.transport.tcp - RMI TCP Connection(3)-172.17.0.1: (port 49599) op = 84 +2024-09-23 20:16:50.394 [RMI TCP Connection(3)-172.17.0.1] DEBUG sun.rmi.transport.tcp - RMI TCP Connection(3)-172.17.0.1: (port 49599) op = 80 +2024-09-23 20:16:50.394 [RMI TCP Connection(3)-172.17.0.1] DEBUG sun.rmi.transport.tcp - RMI TCP Connection(3)-172.17.0.1: (port 49599) op = 80 +2024-09-23 20:16:50.394 [RMI TCP Connection(3)-172.17.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(3)-172.17.0.1: name = "javax.management.ObjectName", codebase = "" +2024-09-23 20:16:50.394 [RMI TCP Connection(3)-172.17.0.1] DEBUG javax.management.remote.rmi - connectionId=rmi://172.17.0.1 4, name=org.springframework.boot:type=Admin,name=SpringApplication, attribute=Ready +2024-09-23 20:16:50.395 [RMI TCP Connection(3)-172.17.0.1] DEBUG sun.rmi.server.call - RMI TCP Connection(3)-172.17.0.1: [172.17.0.1] exception: +javax.management.InstanceNotFoundException: org.springframework.boot:type=Admin,name=SpringApplication + at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getMBean(DefaultMBeanServerInterceptor.java:1088) + at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getAttribute(DefaultMBeanServerInterceptor.java:640) + at java.management/com.sun.jmx.mbeanserver.JmxMBeanServer.getAttribute(JmxMBeanServer.java:679) + at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doOperation(RMIConnectionImpl.java:1449) + at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl$PrivilegedOperation.run(RMIConnectionImpl.java:1310) + at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doPrivilegedOperation(RMIConnectionImpl.java:1405) + at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.getAttribute(RMIConnectionImpl.java:639) + at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) + at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.base/java.lang.reflect.Method.invoke(Method.java:568) + at java.rmi/sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:360) + at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:200) + at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:197) + at java.base/java.security.AccessController.doPrivileged(AccessController.java:712) + at java.rmi/sun.rmi.transport.Transport.serviceCall(Transport.java:196) + at java.rmi/sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:587) + at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run0(TCPTransport.java:828) + at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.lambda$run$0(TCPTransport.java:705) + at java.base/java.security.AccessController.doPrivileged(AccessController.java:399) + at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:704) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:833) +2024-09-23 20:16:50.395 [RMI TCP Connection(3)-172.17.0.1] DEBUG sun.rmi.transport.tcp - RMI TCP Connection(3)-172.17.0.1: (port 49599) op = 80 +2024-09-23 20:16:50.395 [RMI TCP Connection(3)-172.17.0.1] DEBUG javax.management.remote.rmi - [javax.management.remote.rmi.RMIConnectionImpl@3abc628f: connectionId=rmi://172.17.0.1 4] closing. +2024-09-23 20:16:50.395 [RMI TCP Connection(3)-172.17.0.1] DEBUG javax.management.remote.rmi - [javax.management.remote.rmi.RMIConnectionImpl@3abc628f: connectionId=rmi://172.17.0.1 4] closed. +2024-09-23 20:16:50.462 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.lang.String to class [B as writing converter +2024-09-23 20:16:50.463 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class [B to class java.lang.String as reading converter +2024-09-23 20:16:50.463 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.lang.Number to class [B as writing converter +2024-09-23 20:16:50.463 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class [B to class java.lang.Number as reading converter +2024-09-23 20:16:50.463 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.lang.Enum to class [B as writing converter +2024-09-23 20:16:50.463 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class [B to class java.lang.Enum as reading converter +2024-09-23 20:16:50.463 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.lang.Boolean to class [B as writing converter +2024-09-23 20:16:50.463 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class [B to class java.lang.Boolean as reading converter +2024-09-23 20:16:50.463 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.util.Date to class [B as writing converter +2024-09-23 20:16:50.463 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class [B to class java.util.Date as reading converter +2024-09-23 20:16:50.463 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.util.UUID to class [B as writing converter +2024-09-23 20:16:50.463 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class [B to class java.util.UUID as reading converter +2024-09-23 20:16:50.463 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.time.LocalDateTime to class [B as reading converter +2024-09-23 20:16:50.463 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class [B to class java.time.LocalDateTime as reading converter +2024-09-23 20:16:50.463 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.time.LocalDate to class [B as reading converter +2024-09-23 20:16:50.463 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class [B to class java.time.LocalDate as reading converter +2024-09-23 20:16:50.464 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.time.LocalTime to class [B as reading converter +2024-09-23 20:16:50.464 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class [B to class java.time.LocalTime as reading converter +2024-09-23 20:16:50.464 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.time.ZonedDateTime to class [B as reading converter +2024-09-23 20:16:50.464 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class [B to class java.time.ZonedDateTime as reading converter +2024-09-23 20:16:50.464 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.time.Instant to class [B as reading converter +2024-09-23 20:16:50.464 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class [B to class java.time.Instant as reading converter +2024-09-23 20:16:50.464 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.time.ZoneId to class [B as reading converter +2024-09-23 20:16:50.464 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class [B to class java.time.ZoneId as reading converter +2024-09-23 20:16:50.464 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.time.Period to class [B as reading converter +2024-09-23 20:16:50.464 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class [B to class java.time.Period as reading converter +2024-09-23 20:16:50.464 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.time.Duration to class [B as reading converter +2024-09-23 20:16:50.464 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class [B to class java.time.Duration as reading converter +2024-09-23 20:16:50.464 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.time.OffsetDateTime to class [B as reading converter +2024-09-23 20:16:50.464 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class [B to class java.time.OffsetDateTime as reading converter +2024-09-23 20:16:50.464 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.time.OffsetTime to class [B as reading converter +2024-09-23 20:16:50.464 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class [B to class java.time.OffsetTime as reading converter +2024-09-23 20:16:50.464 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.util.Date to class java.time.LocalDateTime as reading converter +2024-09-23 20:16:50.464 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.time.LocalDateTime to class java.util.Date as writing converter +2024-09-23 20:16:50.464 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.util.Date to class java.time.LocalDate as reading converter +2024-09-23 20:16:50.464 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.time.LocalDate to class java.util.Date as writing converter +2024-09-23 20:16:50.464 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.util.Date to class java.time.LocalTime as reading converter +2024-09-23 20:16:50.464 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.time.LocalTime to class java.util.Date as writing converter +2024-09-23 20:16:50.465 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.util.Date to class java.time.Instant as reading converter +2024-09-23 20:16:50.465 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.time.Instant to class java.util.Date as writing converter +2024-09-23 20:16:50.465 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.time.LocalDateTime to class java.time.Instant as reading converter +2024-09-23 20:16:50.465 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.time.Instant to class java.time.LocalDateTime as reading converter +2024-09-23 20:16:50.465 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.time.ZoneId to class java.lang.String as writing converter +2024-09-23 20:16:50.465 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.lang.String to class java.time.ZoneId as reading converter +2024-09-23 20:16:50.465 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.time.Duration to class java.lang.String as writing converter +2024-09-23 20:16:50.465 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.lang.String to class java.time.Duration as reading converter +2024-09-23 20:16:50.465 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.time.Period to class java.lang.String as writing converter +2024-09-23 20:16:50.465 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.lang.String to class java.time.Period as reading converter +2024-09-23 20:16:50.465 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.lang.String to class java.time.LocalDate as reading converter +2024-09-23 20:16:50.465 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.lang.String to class java.time.LocalDateTime as reading converter +2024-09-23 20:16:50.465 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.lang.String to class java.time.Instant as reading converter +2024-09-23 20:16:50.466 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.lang.String to class [B as writing converter +2024-09-23 20:16:50.466 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class [B to class java.lang.String as reading converter +2024-09-23 20:16:50.466 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.lang.Number to class [B as writing converter +2024-09-23 20:16:50.466 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class [B to class java.lang.Number as reading converter +2024-09-23 20:16:50.466 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.lang.Enum to class [B as writing converter +2024-09-23 20:16:50.467 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class [B to class java.lang.Enum as reading converter +2024-09-23 20:16:50.467 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.lang.Boolean to class [B as writing converter +2024-09-23 20:16:50.467 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class [B to class java.lang.Boolean as reading converter +2024-09-23 20:16:50.467 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.util.Date to class [B as writing converter +2024-09-23 20:16:50.467 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class [B to class java.util.Date as reading converter +2024-09-23 20:16:50.467 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.util.UUID to class [B as writing converter +2024-09-23 20:16:50.467 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class [B to class java.util.UUID as reading converter +2024-09-23 20:16:50.467 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.time.LocalDateTime to class [B as reading converter +2024-09-23 20:16:50.468 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class [B to class java.time.LocalDateTime as reading converter +2024-09-23 20:16:50.468 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.time.LocalDate to class [B as reading converter +2024-09-23 20:16:50.468 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class [B to class java.time.LocalDate as reading converter +2024-09-23 20:16:50.468 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.time.LocalTime to class [B as reading converter +2024-09-23 20:16:50.468 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class [B to class java.time.LocalTime as reading converter +2024-09-23 20:16:50.468 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.time.ZonedDateTime to class [B as reading converter +2024-09-23 20:16:50.468 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class [B to class java.time.ZonedDateTime as reading converter +2024-09-23 20:16:50.468 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.time.Instant to class [B as reading converter +2024-09-23 20:16:50.468 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class [B to class java.time.Instant as reading converter +2024-09-23 20:16:50.468 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.time.ZoneId to class [B as reading converter +2024-09-23 20:16:50.468 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class [B to class java.time.ZoneId as reading converter +2024-09-23 20:16:50.468 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.time.Period to class [B as reading converter +2024-09-23 20:16:50.468 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class [B to class java.time.Period as reading converter +2024-09-23 20:16:50.468 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.time.Duration to class [B as reading converter +2024-09-23 20:16:50.469 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class [B to class java.time.Duration as reading converter +2024-09-23 20:16:50.469 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.time.OffsetDateTime to class [B as reading converter +2024-09-23 20:16:50.469 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class [B to class java.time.OffsetDateTime as reading converter +2024-09-23 20:16:50.469 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.time.OffsetTime to class [B as reading converter +2024-09-23 20:16:50.469 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class [B to class java.time.OffsetTime as reading converter +2024-09-23 20:16:50.469 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.util.Date to class java.time.LocalDateTime as reading converter +2024-09-23 20:16:50.469 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.time.LocalDateTime to class java.util.Date as writing converter +2024-09-23 20:16:50.469 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.util.Date to class java.time.LocalDate as reading converter +2024-09-23 20:16:50.469 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.time.LocalDate to class java.util.Date as writing converter +2024-09-23 20:16:50.469 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.util.Date to class java.time.LocalTime as reading converter +2024-09-23 20:16:50.469 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.time.LocalTime to class java.util.Date as writing converter +2024-09-23 20:16:50.469 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.util.Date to class java.time.Instant as reading converter +2024-09-23 20:16:50.469 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.time.Instant to class java.util.Date as writing converter +2024-09-23 20:16:50.469 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.time.LocalDateTime to class java.time.Instant as reading converter +2024-09-23 20:16:50.469 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.time.Instant to class java.time.LocalDateTime as reading converter +2024-09-23 20:16:50.469 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.time.ZoneId to class java.lang.String as writing converter +2024-09-23 20:16:50.469 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.lang.String to class java.time.ZoneId as reading converter +2024-09-23 20:16:50.469 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.time.Duration to class java.lang.String as writing converter +2024-09-23 20:16:50.470 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.lang.String to class java.time.Duration as reading converter +2024-09-23 20:16:50.470 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.time.Period to class java.lang.String as writing converter +2024-09-23 20:16:50.470 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.lang.String to class java.time.Period as reading converter +2024-09-23 20:16:50.470 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.lang.String to class java.time.LocalDate as reading converter +2024-09-23 20:16:50.470 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.lang.String to class java.time.LocalDateTime as reading converter +2024-09-23 20:16:50.470 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.lang.String to class java.time.Instant as reading converter +2024-09-23 20:16:50.477 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.lang.String to class [B as writing converter +2024-09-23 20:16:50.477 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class [B to class java.lang.String as reading converter +2024-09-23 20:16:50.477 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.lang.Number to class [B as writing converter +2024-09-23 20:16:50.477 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class [B to class java.lang.Number as reading converter +2024-09-23 20:16:50.477 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.lang.Enum to class [B as writing converter +2024-09-23 20:16:50.477 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class [B to class java.lang.Enum as reading converter +2024-09-23 20:16:50.477 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.lang.Boolean to class [B as writing converter +2024-09-23 20:16:50.477 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class [B to class java.lang.Boolean as reading converter +2024-09-23 20:16:50.478 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.util.Date to class [B as writing converter +2024-09-23 20:16:50.478 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class [B to class java.util.Date as reading converter +2024-09-23 20:16:50.478 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.util.UUID to class [B as writing converter +2024-09-23 20:16:50.478 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class [B to class java.util.UUID as reading converter +2024-09-23 20:16:50.478 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.time.LocalDateTime to class [B as reading converter +2024-09-23 20:16:50.478 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class [B to class java.time.LocalDateTime as reading converter +2024-09-23 20:16:50.478 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.time.LocalDate to class [B as reading converter +2024-09-23 20:16:50.478 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class [B to class java.time.LocalDate as reading converter +2024-09-23 20:16:50.478 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.time.LocalTime to class [B as reading converter +2024-09-23 20:16:50.478 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class [B to class java.time.LocalTime as reading converter +2024-09-23 20:16:50.478 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.time.ZonedDateTime to class [B as reading converter +2024-09-23 20:16:50.478 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class [B to class java.time.ZonedDateTime as reading converter +2024-09-23 20:16:50.478 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.time.Instant to class [B as reading converter +2024-09-23 20:16:50.478 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class [B to class java.time.Instant as reading converter +2024-09-23 20:16:50.478 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.time.ZoneId to class [B as reading converter +2024-09-23 20:16:50.478 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class [B to class java.time.ZoneId as reading converter +2024-09-23 20:16:50.478 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.time.Period to class [B as reading converter +2024-09-23 20:16:50.478 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class [B to class java.time.Period as reading converter +2024-09-23 20:16:50.478 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.time.Duration to class [B as reading converter +2024-09-23 20:16:50.478 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class [B to class java.time.Duration as reading converter +2024-09-23 20:16:50.478 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.time.OffsetDateTime to class [B as reading converter +2024-09-23 20:16:50.478 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class [B to class java.time.OffsetDateTime as reading converter +2024-09-23 20:16:50.478 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.time.OffsetTime to class [B as reading converter +2024-09-23 20:16:50.478 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class [B to class java.time.OffsetTime as reading converter +2024-09-23 20:16:50.478 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.util.Date to class java.time.LocalDateTime as reading converter +2024-09-23 20:16:50.478 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.time.LocalDateTime to class java.util.Date as writing converter +2024-09-23 20:16:50.478 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.util.Date to class java.time.LocalDate as reading converter +2024-09-23 20:16:50.479 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.time.LocalDate to class java.util.Date as writing converter +2024-09-23 20:16:50.479 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.util.Date to class java.time.LocalTime as reading converter +2024-09-23 20:16:50.479 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.time.LocalTime to class java.util.Date as writing converter +2024-09-23 20:16:50.479 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.util.Date to class java.time.Instant as reading converter +2024-09-23 20:16:50.479 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.time.Instant to class java.util.Date as writing converter +2024-09-23 20:16:50.479 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.time.LocalDateTime to class java.time.Instant as reading converter +2024-09-23 20:16:50.479 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.time.Instant to class java.time.LocalDateTime as reading converter +2024-09-23 20:16:50.479 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.time.ZoneId to class java.lang.String as writing converter +2024-09-23 20:16:50.479 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.lang.String to class java.time.ZoneId as reading converter +2024-09-23 20:16:50.479 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.time.Duration to class java.lang.String as writing converter +2024-09-23 20:16:50.479 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.lang.String to class java.time.Duration as reading converter +2024-09-23 20:16:50.479 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.time.Period to class java.lang.String as writing converter +2024-09-23 20:16:50.479 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.lang.String to class java.time.Period as reading converter +2024-09-23 20:16:50.479 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.lang.String to class java.time.LocalDate as reading converter +2024-09-23 20:16:50.479 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.lang.String to class java.time.LocalDateTime as reading converter +2024-09-23 20:16:50.479 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.lang.String to class java.time.Instant as reading converter +2024-09-23 20:16:50.480 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.lang.String to class [B as writing converter +2024-09-23 20:16:50.480 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class [B to class java.lang.String as reading converter +2024-09-23 20:16:50.480 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.lang.Number to class [B as writing converter +2024-09-23 20:16:50.480 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class [B to class java.lang.Number as reading converter +2024-09-23 20:16:50.481 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.lang.Enum to class [B as writing converter +2024-09-23 20:16:50.481 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class [B to class java.lang.Enum as reading converter +2024-09-23 20:16:50.481 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.lang.Boolean to class [B as writing converter +2024-09-23 20:16:50.481 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class [B to class java.lang.Boolean as reading converter +2024-09-23 20:16:50.481 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.util.Date to class [B as writing converter +2024-09-23 20:16:50.481 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class [B to class java.util.Date as reading converter +2024-09-23 20:16:50.481 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.util.UUID to class [B as writing converter +2024-09-23 20:16:50.481 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class [B to class java.util.UUID as reading converter +2024-09-23 20:16:50.481 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.time.LocalDateTime to class [B as reading converter +2024-09-23 20:16:50.481 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class [B to class java.time.LocalDateTime as reading converter +2024-09-23 20:16:50.481 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.time.LocalDate to class [B as reading converter +2024-09-23 20:16:50.481 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class [B to class java.time.LocalDate as reading converter +2024-09-23 20:16:50.481 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.time.LocalTime to class [B as reading converter +2024-09-23 20:16:50.481 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class [B to class java.time.LocalTime as reading converter +2024-09-23 20:16:50.481 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.time.ZonedDateTime to class [B as reading converter +2024-09-23 20:16:50.481 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class [B to class java.time.ZonedDateTime as reading converter +2024-09-23 20:16:50.481 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.time.Instant to class [B as reading converter +2024-09-23 20:16:50.481 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class [B to class java.time.Instant as reading converter +2024-09-23 20:16:50.481 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.time.ZoneId to class [B as reading converter +2024-09-23 20:16:50.481 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class [B to class java.time.ZoneId as reading converter +2024-09-23 20:16:50.481 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.time.Period to class [B as reading converter +2024-09-23 20:16:50.481 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class [B to class java.time.Period as reading converter +2024-09-23 20:16:50.481 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.time.Duration to class [B as reading converter +2024-09-23 20:16:50.482 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class [B to class java.time.Duration as reading converter +2024-09-23 20:16:50.482 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.time.OffsetDateTime to class [B as reading converter +2024-09-23 20:16:50.482 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class [B to class java.time.OffsetDateTime as reading converter +2024-09-23 20:16:50.482 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.time.OffsetTime to class [B as reading converter +2024-09-23 20:16:50.482 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class [B to class java.time.OffsetTime as reading converter +2024-09-23 20:16:50.482 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.util.Date to class java.time.LocalDateTime as reading converter +2024-09-23 20:16:50.482 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.time.LocalDateTime to class java.util.Date as writing converter +2024-09-23 20:16:50.482 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.util.Date to class java.time.LocalDate as reading converter +2024-09-23 20:16:50.482 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.time.LocalDate to class java.util.Date as writing converter +2024-09-23 20:16:50.482 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.util.Date to class java.time.LocalTime as reading converter +2024-09-23 20:16:50.482 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.time.LocalTime to class java.util.Date as writing converter +2024-09-23 20:16:50.482 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.util.Date to class java.time.Instant as reading converter +2024-09-23 20:16:50.482 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.time.Instant to class java.util.Date as writing converter +2024-09-23 20:16:50.482 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.time.LocalDateTime to class java.time.Instant as reading converter +2024-09-23 20:16:50.482 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.time.Instant to class java.time.LocalDateTime as reading converter +2024-09-23 20:16:50.482 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.time.ZoneId to class java.lang.String as writing converter +2024-09-23 20:16:50.482 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.lang.String to class java.time.ZoneId as reading converter +2024-09-23 20:16:50.482 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.time.Duration to class java.lang.String as writing converter +2024-09-23 20:16:50.482 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.lang.String to class java.time.Duration as reading converter +2024-09-23 20:16:50.482 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.time.Period to class java.lang.String as writing converter +2024-09-23 20:16:50.482 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.lang.String to class java.time.Period as reading converter +2024-09-23 20:16:50.482 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.lang.String to class java.time.LocalDate as reading converter +2024-09-23 20:16:50.482 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.lang.String to class java.time.LocalDateTime as reading converter +2024-09-23 20:16:50.482 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.lang.String to class java.time.Instant as reading converter +2024-09-23 20:16:50.487 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.lang.String to class [B as writing converter +2024-09-23 20:16:50.487 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class [B to class java.lang.String as reading converter +2024-09-23 20:16:50.487 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.lang.Number to class [B as writing converter +2024-09-23 20:16:50.487 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class [B to class java.lang.Number as reading converter +2024-09-23 20:16:50.487 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.lang.Enum to class [B as writing converter +2024-09-23 20:16:50.487 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class [B to class java.lang.Enum as reading converter +2024-09-23 20:16:50.487 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.lang.Boolean to class [B as writing converter +2024-09-23 20:16:50.487 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class [B to class java.lang.Boolean as reading converter +2024-09-23 20:16:50.487 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.util.Date to class [B as writing converter +2024-09-23 20:16:50.487 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class [B to class java.util.Date as reading converter +2024-09-23 20:16:50.487 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.util.UUID to class [B as writing converter +2024-09-23 20:16:50.488 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class [B to class java.util.UUID as reading converter +2024-09-23 20:16:50.488 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.time.LocalDateTime to class [B as reading converter +2024-09-23 20:16:50.488 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class [B to class java.time.LocalDateTime as reading converter +2024-09-23 20:16:50.488 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.time.LocalDate to class [B as reading converter +2024-09-23 20:16:50.488 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class [B to class java.time.LocalDate as reading converter +2024-09-23 20:16:50.488 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.time.LocalTime to class [B as reading converter +2024-09-23 20:16:50.488 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class [B to class java.time.LocalTime as reading converter +2024-09-23 20:16:50.488 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.time.ZonedDateTime to class [B as reading converter +2024-09-23 20:16:50.488 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class [B to class java.time.ZonedDateTime as reading converter +2024-09-23 20:16:50.488 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.time.Instant to class [B as reading converter +2024-09-23 20:16:50.488 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class [B to class java.time.Instant as reading converter +2024-09-23 20:16:50.488 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.time.ZoneId to class [B as reading converter +2024-09-23 20:16:50.488 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class [B to class java.time.ZoneId as reading converter +2024-09-23 20:16:50.488 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.time.Period to class [B as reading converter +2024-09-23 20:16:50.488 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class [B to class java.time.Period as reading converter +2024-09-23 20:16:50.488 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.time.Duration to class [B as reading converter +2024-09-23 20:16:50.488 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class [B to class java.time.Duration as reading converter +2024-09-23 20:16:50.488 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.time.OffsetDateTime to class [B as reading converter +2024-09-23 20:16:50.488 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class [B to class java.time.OffsetDateTime as reading converter +2024-09-23 20:16:50.488 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.time.OffsetTime to class [B as reading converter +2024-09-23 20:16:50.488 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class [B to class java.time.OffsetTime as reading converter +2024-09-23 20:16:50.488 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.util.Date to class java.time.LocalDateTime as reading converter +2024-09-23 20:16:50.488 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.time.LocalDateTime to class java.util.Date as writing converter +2024-09-23 20:16:50.488 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.util.Date to class java.time.LocalDate as reading converter +2024-09-23 20:16:50.489 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.time.LocalDate to class java.util.Date as writing converter +2024-09-23 20:16:50.489 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.util.Date to class java.time.LocalTime as reading converter +2024-09-23 20:16:50.489 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.time.LocalTime to class java.util.Date as writing converter +2024-09-23 20:16:50.489 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.util.Date to class java.time.Instant as reading converter +2024-09-23 20:16:50.489 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.time.Instant to class java.util.Date as writing converter +2024-09-23 20:16:50.489 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.time.LocalDateTime to class java.time.Instant as reading converter +2024-09-23 20:16:50.489 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.time.Instant to class java.time.LocalDateTime as reading converter +2024-09-23 20:16:50.489 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.time.ZoneId to class java.lang.String as writing converter +2024-09-23 20:16:50.489 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.lang.String to class java.time.ZoneId as reading converter +2024-09-23 20:16:50.489 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.time.Duration to class java.lang.String as writing converter +2024-09-23 20:16:50.489 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.lang.String to class java.time.Duration as reading converter +2024-09-23 20:16:50.489 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.time.Period to class java.lang.String as writing converter +2024-09-23 20:16:50.489 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.lang.String to class java.time.Period as reading converter +2024-09-23 20:16:50.489 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.lang.String to class java.time.LocalDate as reading converter +2024-09-23 20:16:50.489 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.lang.String to class java.time.LocalDateTime as reading converter +2024-09-23 20:16:50.489 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.lang.String to class java.time.Instant as reading converter +2024-09-23 20:16:50.494 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'cn.dev33.satoken.spring.SaBeanInject' +2024-09-23 20:16:50.496 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'getSaTokenConfig' +2024-09-23 20:16:50.496 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'cn.dev33.satoken.spring.SaBeanRegister' +2024-09-23 20:16:50.500 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'cn.dev33.satoken.spring.SaBeanInject' via constructor to bean named 'getSaTokenConfig' +2024-09-23 20:16:50.506 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'getSaTokenContextForSpringInJakartaServlet' +2024-09-23 20:16:50.508 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'getSaJsonTemplateForJackson' +2024-09-23 20:16:50.509 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'getApplicationContextPathLoading' +2024-09-23 20:16:50.510 [main] DEBUG o.s.c.e.PropertySourcesPropertyResolver - Found key 'server.servlet.context-path' in PropertySource 'environmentProperties' with value of type String +2024-09-23 20:16:50.511 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'com.github.xiaoymin.knife4j.spring.configuration.Knife4jAutoConfiguration' +2024-09-23 20:16:50.511 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'knife4j-com.github.xiaoymin.knife4j.spring.configuration.Knife4jProperties' +2024-09-23 20:16:50.514 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'com.github.xiaoymin.knife4j.spring.configuration.Knife4jAutoConfiguration' via constructor to bean named 'knife4j-com.github.xiaoymin.knife4j.spring.configuration.Knife4jProperties' +2024-09-23 20:16:50.514 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'com.github.xiaoymin.knife4j.spring.configuration.Knife4jAutoConfiguration' via constructor to bean named 'environment' +2024-09-23 20:16:50.515 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'knife4jOpenApiCustomizer' +2024-09-23 20:16:50.515 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'knife4jOpenApiCustomizer' via factory method to bean named 'org.springdoc.core.properties.SpringDocConfigProperties' +2024-09-23 20:16:50.515 [main] DEBUG c.g.x.k.s.c.Knife4jAutoConfiguration - Register Knife4jOpenApiCustomizer +2024-09-23 20:16:50.516 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'knife4jJakartaOperationCustomizer' +2024-09-23 20:16:50.516 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'knife4j.basic-com.github.xiaoymin.knife4j.spring.configuration.Knife4jHttpBasic' +2024-09-23 20:16:50.516 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'knife4j.setting-com.github.xiaoymin.knife4j.spring.configuration.Knife4jSetting' +2024-09-23 20:16:50.518 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.mybatis.spring.boot.autoconfigure.MybatisLanguageDriverAutoConfiguration' +2024-09-23 20:16:50.519 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceJmxConfiguration$Hikari' +2024-09-23 20:16:50.519 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.jdbc.DataSourceJmxConfiguration$Hikari' via constructor to bean named 'dataSource' +2024-09-23 20:16:50.519 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceJmxConfiguration' +2024-09-23 20:16:50.520 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.metadata.DataSourcePoolMetadataProvidersConfiguration$HikariPoolDataSourceMetadataProviderConfiguration' +2024-09-23 20:16:50.520 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'hikariPoolDataSourceMetadataProvider' +2024-09-23 20:16:50.520 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.metadata.DataSourcePoolMetadataProvidersConfiguration' +2024-09-23 20:16:50.520 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration' +2024-09-23 20:16:50.521 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.mybatis.spring.boot.autoconfigure.MybatisAutoConfiguration$MapperScannerRegistrarNotFoundConfiguration' +2024-09-23 20:16:50.521 [main] DEBUG o.m.s.b.a.MybatisAutoConfiguration - Not found configuration for registering mapper bean using @MapperScan, MapperFactoryBean and MapperScannerConfigurer. +2024-09-23 20:16:50.521 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springdoc.core.configuration.SpringDocConfiguration$QuerydslProvider' +2024-09-23 20:16:50.521 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'queryDslQuerydslPredicateOperationCustomizer' +2024-09-23 20:16:50.521 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'queryDslQuerydslPredicateOperationCustomizer' via factory method to bean named 'org.springdoc.core.properties.SpringDocConfigProperties' +2024-09-23 20:16:50.521 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springdoc.core.configuration.SpringDocConfiguration$SpringDocWebFluxSupportConfiguration' +2024-09-23 20:16:50.522 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'webFluxSupportConverter' +2024-09-23 20:16:50.522 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'webFluxSupportConverter' via factory method to bean named 'springdocObjectMapperProvider' +2024-09-23 20:16:50.522 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springdoc.core.configuration.SpringDocConfiguration$SpringDocSpringDataWebPropertiesProvider' +2024-09-23 20:16:50.523 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'springDataWebPropertiesProvider' +2024-09-23 20:16:50.523 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springdoc.core.configuration.SpringDocConfiguration$WebConversionServiceConfiguration' +2024-09-23 20:16:50.523 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'webConversionServiceProvider' +2024-09-23 20:16:50.523 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'localSpringDocParameterNameDiscoverer' +2024-09-23 20:16:50.524 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'additionalModelsConverter' +2024-09-23 20:16:50.524 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'additionalModelsConverter' via factory method to bean named 'springdocObjectMapperProvider' +2024-09-23 20:16:50.524 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'fileSupportConverter' +2024-09-23 20:16:50.524 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'fileSupportConverter' via factory method to bean named 'springdocObjectMapperProvider' +2024-09-23 20:16:50.524 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'responseSupportConverter' +2024-09-23 20:16:50.524 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'responseSupportConverter' via factory method to bean named 'springdocObjectMapperProvider' +2024-09-23 20:16:50.525 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'schemaPropertyDeprecatingConverter' +2024-09-23 20:16:50.525 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'polymorphicModelConverter' +2024-09-23 20:16:50.525 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'polymorphicModelConverter' via factory method to bean named 'springdocObjectMapperProvider' +2024-09-23 20:16:50.525 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'modelConverterRegistrar' +2024-09-23 20:16:50.526 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'pageableOpenAPIConverter' +2024-09-23 20:16:50.526 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springdoc.core.configuration.SpringDocPageableConfiguration' +2024-09-23 20:16:50.527 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'pageableOpenAPIConverter' via factory method to bean named 'springdocObjectMapperProvider' +2024-09-23 20:16:50.527 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'sortOpenAPIConverter' +2024-09-23 20:16:50.527 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springdoc.core.configuration.SpringDocSortConfiguration' +2024-09-23 20:16:50.528 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'sortOpenAPIConverter' via factory method to bean named 'springdocObjectMapperProvider' +2024-09-23 20:16:50.529 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'modelConverterRegistrar' via factory method to bean named 'org.springdoc.core.properties.SpringDocConfigProperties' +2024-09-23 20:16:50.537 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'operationBuilder' +2024-09-23 20:16:50.537 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'parameterBuilder' +2024-09-23 20:16:50.538 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'propertyResolverUtils' +2024-09-23 20:16:50.538 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'propertyResolverUtils' via factory method to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@51650883' +2024-09-23 20:16:50.538 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'propertyResolverUtils' via factory method to bean named 'messageSource' +2024-09-23 20:16:50.538 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'propertyResolverUtils' via factory method to bean named 'org.springdoc.core.properties.SpringDocConfigProperties' +2024-09-23 20:16:50.539 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'delegatingMethodParameterCustomizer' +2024-09-23 20:16:50.540 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'parameterBuilder' via factory method to bean named 'propertyResolverUtils' +2024-09-23 20:16:50.541 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'parameterBuilder' via factory method to bean named 'springdocObjectMapperProvider' +2024-09-23 20:16:50.542 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'requestBodyBuilder' +2024-09-23 20:16:50.542 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'requestBodyBuilder' via factory method to bean named 'parameterBuilder' +2024-09-23 20:16:50.542 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'securityParser' +2024-09-23 20:16:50.542 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'securityParser' via factory method to bean named 'propertyResolverUtils' +2024-09-23 20:16:50.543 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'operationBuilder' via factory method to bean named 'parameterBuilder' +2024-09-23 20:16:50.543 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'operationBuilder' via factory method to bean named 'requestBodyBuilder' +2024-09-23 20:16:50.543 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'operationBuilder' via factory method to bean named 'securityParser' +2024-09-23 20:16:50.543 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'operationBuilder' via factory method to bean named 'propertyResolverUtils' +2024-09-23 20:16:50.544 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'genericReturnTypeParser' +2024-09-23 20:16:50.544 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'springDocProviders' +2024-09-23 20:16:50.548 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'routerFunctionProvider' +2024-09-23 20:16:50.548 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springdoc.webmvc.core.configuration.SpringDocWebMvcConfiguration$SpringDocWebMvcRouterConfiguration' +2024-09-23 20:16:50.549 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'springDocProviders' via factory method to bean named 'springdocObjectMapperProvider' +2024-09-23 20:16:50.550 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'springDocCustomizers' +2024-09-23 20:16:50.552 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springdoc.core.configuration.SpringDocUIConfiguration' +2024-09-23 20:16:50.553 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springdoc.webmvc.core.configuration.MultipleOpenApiSupportConfiguration' +2024-09-23 20:16:50.553 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'multipleOpenApiResource' +2024-09-23 20:16:50.553 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'requestBuilder' +2024-09-23 20:16:50.554 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'requestBuilder' via factory method to bean named 'parameterBuilder' +2024-09-23 20:16:50.554 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'requestBuilder' via factory method to bean named 'requestBodyBuilder' +2024-09-23 20:16:50.554 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'requestBuilder' via factory method to bean named 'operationBuilder' +2024-09-23 20:16:50.554 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'requestBuilder' via factory method to bean named 'localSpringDocParameterNameDiscoverer' +2024-09-23 20:16:50.555 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'responseBuilder' +2024-09-23 20:16:50.556 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'responseBuilder' via factory method to bean named 'operationBuilder' +2024-09-23 20:16:50.556 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'responseBuilder' via factory method to bean named 'genericReturnTypeParser' +2024-09-23 20:16:50.556 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'responseBuilder' via factory method to bean named 'org.springdoc.core.properties.SpringDocConfigProperties' +2024-09-23 20:16:50.556 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'responseBuilder' via factory method to bean named 'propertyResolverUtils' +2024-09-23 20:16:50.557 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'multipleOpenApiResource' via factory method to bean named 'main' +2024-09-23 20:16:50.557 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'multipleOpenApiResource' via factory method to bean named 'requestBuilder' +2024-09-23 20:16:50.557 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'multipleOpenApiResource' via factory method to bean named 'responseBuilder' +2024-09-23 20:16:50.557 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'multipleOpenApiResource' via factory method to bean named 'operationBuilder' +2024-09-23 20:16:50.557 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'multipleOpenApiResource' via factory method to bean named 'org.springdoc.core.properties.SpringDocConfigProperties' +2024-09-23 20:16:50.557 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'multipleOpenApiResource' via factory method to bean named 'springDocProviders' +2024-09-23 20:16:50.557 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'multipleOpenApiResource' via factory method to bean named 'springDocCustomizers' +2024-09-23 20:16:50.558 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'openAPIBuilder' via factory method to bean named 'securityParser' +2024-09-23 20:16:50.558 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'openAPIBuilder' via factory method to bean named 'org.springdoc.core.properties.SpringDocConfigProperties' +2024-09-23 20:16:50.558 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'openAPIBuilder' via factory method to bean named 'propertyResolverUtils' +2024-09-23 20:16:50.559 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'openApiResource' +2024-09-23 20:16:50.559 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'openApiResource' via factory method to bean named 'requestBuilder' +2024-09-23 20:16:50.560 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'openApiResource' via factory method to bean named 'responseBuilder' +2024-09-23 20:16:50.560 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'openApiResource' via factory method to bean named 'operationBuilder' +2024-09-23 20:16:50.560 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'openApiResource' via factory method to bean named 'org.springdoc.core.properties.SpringDocConfigProperties' +2024-09-23 20:16:50.560 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'openApiResource' via factory method to bean named 'springDocProviders' +2024-09-23 20:16:50.560 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'openApiResource' via factory method to bean named 'springDocCustomizers' +2024-09-23 20:16:50.561 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'swaggerConfigResource' +2024-09-23 20:16:50.561 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'swaggerConfigResource' via factory method to bean named 'swaggerWelcome' +2024-09-23 20:16:50.561 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jmx.JmxAutoConfiguration' +2024-09-23 20:16:50.561 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'spring.jmx-org.springframework.boot.autoconfigure.jmx.JmxProperties' +2024-09-23 20:16:50.562 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.jmx.JmxAutoConfiguration' via constructor to bean named 'spring.jmx-org.springframework.boot.autoconfigure.jmx.JmxProperties' +2024-09-23 20:16:50.562 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'mbeanExporter' +2024-09-23 20:16:50.563 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'objectNamingStrategy' +2024-09-23 20:16:50.564 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'mbeanExporter' via factory method to bean named 'objectNamingStrategy' +2024-09-23 20:16:50.564 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'mbeanExporter' via factory method to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@51650883' +2024-09-23 20:16:50.567 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'mbeanServer' +2024-09-23 20:16:50.568 [main] DEBUG o.s.jmx.support.JmxUtils - Found MBeanServer: com.sun.jmx.mbeanserver.JmxMBeanServer@d70c109 +2024-09-23 20:16:50.569 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.admin.SpringApplicationAdminJmxAutoConfiguration' +2024-09-23 20:16:50.570 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'springApplicationAdminRegistrar' +2024-09-23 20:16:50.570 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'springApplicationAdminRegistrar' via factory method to bean named 'environment' +2024-09-23 20:16:50.571 [main] DEBUG o.s.b.a.SpringApplicationAdminMXBeanRegistrar$SpringApplicationAdmin - Application Admin MBean registered with name 'org.springframework.boot:type=Admin,name=SpringApplication' +2024-09-23 20:16:50.571 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.aop.AopAutoConfiguration$ClassProxyingConfiguration' +2024-09-23 20:16:50.571 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.aop.AopAutoConfiguration' +2024-09-23 20:16:50.573 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.availability.ApplicationAvailabilityAutoConfiguration' +2024-09-23 20:16:50.573 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'applicationAvailability' +2024-09-23 20:16:50.574 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'redisTemplate' +2024-09-23 20:16:50.575 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'redisTemplate' via factory method to bean named 'redisConnectionFactory' +2024-09-23 20:16:50.579 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'stringRedisTemplate' +2024-09-23 20:16:50.579 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'stringRedisTemplate' via factory method to bean named 'redisConnectionFactory' +2024-09-23 20:16:50.581 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionManagerCustomizationAutoConfiguration' +2024-09-23 20:16:50.582 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'platformTransactionManagerCustomizers' +2024-09-23 20:16:50.582 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'transactionExecutionListeners' +2024-09-23 20:16:50.583 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'spring.transaction-org.springframework.boot.autoconfigure.transaction.TransactionProperties' +2024-09-23 20:16:50.584 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.context.ConfigurationPropertiesAutoConfiguration' +2024-09-23 20:16:50.584 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.context.LifecycleAutoConfiguration' +2024-09-23 20:16:50.584 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'lifecycleProcessor' +2024-09-23 20:16:50.584 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'spring.lifecycle-org.springframework.boot.autoconfigure.context.LifecycleProperties' +2024-09-23 20:16:50.584 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'lifecycleProcessor' via factory method to bean named 'spring.lifecycle-org.springframework.boot.autoconfigure.context.LifecycleProperties' +2024-09-23 20:16:50.585 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.dao.PersistenceExceptionTranslationAutoConfiguration' +2024-09-23 20:16:50.585 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.JdbcTemplateConfiguration' +2024-09-23 20:16:50.586 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'jdbcTemplate' +2024-09-23 20:16:50.586 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'spring.jdbc-org.springframework.boot.autoconfigure.jdbc.JdbcProperties' +2024-09-23 20:16:50.586 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'jdbcTemplate' via factory method to bean named 'dataSource' +2024-09-23 20:16:50.586 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'jdbcTemplate' via factory method to bean named 'spring.jdbc-org.springframework.boot.autoconfigure.jdbc.JdbcProperties' +2024-09-23 20:16:50.591 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.NamedParameterJdbcTemplateConfiguration' +2024-09-23 20:16:50.591 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'namedParameterJdbcTemplate' +2024-09-23 20:16:50.591 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'namedParameterJdbcTemplate' via factory method to bean named 'jdbcTemplate' +2024-09-23 20:16:50.594 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.JdbcTemplateAutoConfiguration' +2024-09-23 20:16:50.594 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceTransactionManagerAutoConfiguration$JdbcTransactionManagerConfiguration' +2024-09-23 20:16:50.595 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'transactionManager' +2024-09-23 20:16:50.595 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'transactionManager' via factory method to bean named 'environment' +2024-09-23 20:16:50.595 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'transactionManager' via factory method to bean named 'dataSource' +2024-09-23 20:16:50.599 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceTransactionManagerAutoConfiguration' +2024-09-23 20:16:50.599 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.data.jdbc.JdbcRepositoriesAutoConfiguration$SpringBootJdbcConfiguration' +2024-09-23 20:16:50.599 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'spring.data.jdbc-org.springframework.boot.autoconfigure.data.jdbc.JdbcDataProperties' +2024-09-23 20:16:50.600 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.data.jdbc.JdbcRepositoriesAutoConfiguration$SpringBootJdbcConfiguration' via constructor to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@77602954' +2024-09-23 20:16:50.600 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.data.jdbc.JdbcRepositoriesAutoConfiguration$SpringBootJdbcConfiguration' via constructor to bean named 'spring.data.jdbc-org.springframework.boot.autoconfigure.data.jdbc.JdbcDataProperties' +2024-09-23 20:16:50.600 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'jdbcManagedTypes' +2024-09-23 20:16:50.605 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'jdbcMappingContext' +2024-09-23 20:16:50.606 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'jdbcCustomConversions' +2024-09-23 20:16:50.606 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'jdbcDialect' +2024-09-23 20:16:50.606 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'jdbcDialect' via factory method to bean named 'namedParameterJdbcTemplate' +2024-09-23 20:16:50.609 [main] DEBUG o.s.jdbc.datasource.DataSourceUtils - Fetching JDBC Connection from DataSource +2024-09-23 20:16:50.609 [main] DEBUG com.zaxxer.hikari.HikariConfig - HikariPool-1 - configuration: +2024-09-23 20:16:50.611 [main] DEBUG com.zaxxer.hikari.HikariConfig - allowPoolSuspension.............false +2024-09-23 20:16:50.611 [main] DEBUG com.zaxxer.hikari.HikariConfig - autoCommit......................true +2024-09-23 20:16:50.611 [main] DEBUG com.zaxxer.hikari.HikariConfig - catalog.........................none +2024-09-23 20:16:50.611 [main] DEBUG com.zaxxer.hikari.HikariConfig - connectionInitSql...............none +2024-09-23 20:16:50.611 [main] DEBUG com.zaxxer.hikari.HikariConfig - connectionTestQuery.............none +2024-09-23 20:16:50.611 [main] DEBUG com.zaxxer.hikari.HikariConfig - connectionTimeout...............30000 +2024-09-23 20:16:50.612 [main] DEBUG com.zaxxer.hikari.HikariConfig - dataSource......................none +2024-09-23 20:16:50.612 [main] DEBUG com.zaxxer.hikari.HikariConfig - dataSourceClassName.............none +2024-09-23 20:16:50.612 [main] DEBUG com.zaxxer.hikari.HikariConfig - dataSourceJNDI..................none +2024-09-23 20:16:50.612 [main] DEBUG com.zaxxer.hikari.HikariConfig - dataSourceProperties............{password=} +2024-09-23 20:16:50.612 [main] DEBUG com.zaxxer.hikari.HikariConfig - driverClassName................."com.mysql.cj.jdbc.Driver" +2024-09-23 20:16:50.612 [main] DEBUG com.zaxxer.hikari.HikariConfig - exceptionOverrideClassName......none +2024-09-23 20:16:50.612 [main] DEBUG com.zaxxer.hikari.HikariConfig - healthCheckProperties...........{} +2024-09-23 20:16:50.612 [main] DEBUG com.zaxxer.hikari.HikariConfig - healthCheckRegistry.............none +2024-09-23 20:16:50.612 [main] DEBUG com.zaxxer.hikari.HikariConfig - idleTimeout.....................600000 +2024-09-23 20:16:50.612 [main] DEBUG com.zaxxer.hikari.HikariConfig - initializationFailTimeout.......1 +2024-09-23 20:16:50.612 [main] DEBUG com.zaxxer.hikari.HikariConfig - isolateInternalQueries..........false +2024-09-23 20:16:50.612 [main] DEBUG com.zaxxer.hikari.HikariConfig - jdbcUrl.........................jdbc:mysql://localhost:3306/harmonylife?serverTimezone=UTC&useSSL=false +2024-09-23 20:16:50.613 [main] DEBUG com.zaxxer.hikari.HikariConfig - keepaliveTime...................0 +2024-09-23 20:16:50.613 [main] DEBUG com.zaxxer.hikari.HikariConfig - leakDetectionThreshold..........0 +2024-09-23 20:16:50.613 [main] DEBUG com.zaxxer.hikari.HikariConfig - maxLifetime.....................1800000 +2024-09-23 20:16:50.613 [main] DEBUG com.zaxxer.hikari.HikariConfig - maximumPoolSize.................10 +2024-09-23 20:16:50.613 [main] DEBUG com.zaxxer.hikari.HikariConfig - metricRegistry..................none +2024-09-23 20:16:50.613 [main] DEBUG com.zaxxer.hikari.HikariConfig - metricsTrackerFactory...........none +2024-09-23 20:16:50.613 [main] DEBUG com.zaxxer.hikari.HikariConfig - minimumIdle.....................10 +2024-09-23 20:16:50.613 [main] DEBUG com.zaxxer.hikari.HikariConfig - password........................ +2024-09-23 20:16:50.613 [main] DEBUG com.zaxxer.hikari.HikariConfig - poolName........................"HikariPool-1" +2024-09-23 20:16:50.613 [main] DEBUG com.zaxxer.hikari.HikariConfig - readOnly........................false +2024-09-23 20:16:50.613 [main] DEBUG com.zaxxer.hikari.HikariConfig - registerMbeans..................false +2024-09-23 20:16:50.613 [main] DEBUG com.zaxxer.hikari.HikariConfig - scheduledExecutor...............none +2024-09-23 20:16:50.613 [main] DEBUG com.zaxxer.hikari.HikariConfig - schema..........................none +2024-09-23 20:16:50.613 [main] DEBUG com.zaxxer.hikari.HikariConfig - threadFactory...................internal +2024-09-23 20:16:50.613 [main] DEBUG com.zaxxer.hikari.HikariConfig - transactionIsolation............default +2024-09-23 20:16:50.613 [main] DEBUG com.zaxxer.hikari.HikariConfig - username........................"root" +2024-09-23 20:16:50.613 [main] DEBUG com.zaxxer.hikari.HikariConfig - validationTimeout...............5000 +2024-09-23 20:16:50.613 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Starting... +2024-09-23 20:16:50.704 [main] INFO com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - Added connection com.mysql.cj.jdbc.ConnectionImpl@3134b261 +2024-09-23 20:16:50.705 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Start completed. +2024-09-23 20:16:50.722 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.sql.Timestamp to class java.time.OffsetDateTime as reading converter +2024-09-23 20:16:50.723 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.lang.Number to class java.lang.Boolean as reading converter +2024-09-23 20:16:50.723 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.time.OffsetDateTime to class org.springframework.data.jdbc.core.mapping.JdbcValue as writing converter +2024-09-23 20:16:50.723 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.time.LocalDateTime to class java.util.Date as reading converter +2024-09-23 20:16:50.723 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.sql.Timestamp to class java.time.LocalDateTime as reading converter +2024-09-23 20:16:50.723 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.sql.Timestamp to class java.time.LocalDate as reading converter +2024-09-23 20:16:50.723 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.time.LocalDate to class java.sql.Timestamp as writing converter +2024-09-23 20:16:50.723 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.sql.Timestamp to class java.time.LocalTime as reading converter +2024-09-23 20:16:50.723 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.time.LocalTime to class java.sql.Timestamp as writing converter +2024-09-23 20:16:50.723 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.sql.Timestamp to class java.time.Instant as reading converter +2024-09-23 20:16:50.723 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.time.Instant to class java.sql.Timestamp as writing converter +2024-09-23 20:16:50.723 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.util.Date to class java.time.LocalDateTime as reading converter +2024-09-23 20:16:50.723 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.time.LocalDateTime to class java.util.Date as writing converter +2024-09-23 20:16:50.723 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.util.Date to class java.time.LocalDate as reading converter +2024-09-23 20:16:50.723 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.time.LocalDate to class java.util.Date as writing converter +2024-09-23 20:16:50.723 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.util.Date to class java.time.LocalTime as reading converter +2024-09-23 20:16:50.723 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.time.LocalTime to class java.util.Date as writing converter +2024-09-23 20:16:50.723 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.util.Date to class java.time.Instant as reading converter +2024-09-23 20:16:50.723 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.time.Instant to class java.util.Date as writing converter +2024-09-23 20:16:50.723 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.time.LocalDateTime to class java.time.Instant as reading converter +2024-09-23 20:16:50.723 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.time.Instant to class java.time.LocalDateTime as reading converter +2024-09-23 20:16:50.723 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.time.ZoneId to class java.lang.String as writing converter +2024-09-23 20:16:50.723 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.lang.String to class java.time.ZoneId as reading converter +2024-09-23 20:16:50.723 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.time.Duration to class java.lang.String as writing converter +2024-09-23 20:16:50.724 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.lang.String to class java.time.Duration as reading converter +2024-09-23 20:16:50.724 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.time.Period to class java.lang.String as writing converter +2024-09-23 20:16:50.724 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.lang.String to class java.time.Period as reading converter +2024-09-23 20:16:50.724 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.lang.String to class java.time.LocalDate as reading converter +2024-09-23 20:16:50.724 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.lang.String to class java.time.LocalDateTime as reading converter +2024-09-23 20:16:50.724 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.lang.String to class java.time.Instant as reading converter +2024-09-23 20:16:50.724 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'jdbcMappingContext' via factory method to bean named 'jdbcCustomConversions' +2024-09-23 20:16:50.725 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'jdbcMappingContext' via factory method to bean named 'jdbcManagedTypes' +2024-09-23 20:16:50.733 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'jdbcConverter' +2024-09-23 20:16:50.738 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'jdbcConverter' via factory method to bean named 'jdbcMappingContext' +2024-09-23 20:16:50.738 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'jdbcConverter' via factory method to bean named 'namedParameterJdbcTemplate' +2024-09-23 20:16:50.738 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'jdbcConverter' via factory method to bean named 'jdbcCustomConversions' +2024-09-23 20:16:50.738 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'jdbcConverter' via factory method to bean named 'jdbcDialect' +2024-09-23 20:16:50.748 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'jdbcAggregateTemplate' +2024-09-23 20:16:50.749 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'dataAccessStrategyBean' +2024-09-23 20:16:50.749 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'dataAccessStrategyBean' via factory method to bean named 'namedParameterJdbcTemplate' +2024-09-23 20:16:50.749 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'dataAccessStrategyBean' via factory method to bean named 'jdbcConverter' +2024-09-23 20:16:50.749 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'dataAccessStrategyBean' via factory method to bean named 'jdbcMappingContext' +2024-09-23 20:16:50.749 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'dataAccessStrategyBean' via factory method to bean named 'jdbcDialect' +2024-09-23 20:16:50.754 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'jdbcAggregateTemplate' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@77602954' +2024-09-23 20:16:50.754 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'jdbcAggregateTemplate' via factory method to bean named 'jdbcMappingContext' +2024-09-23 20:16:50.754 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'jdbcAggregateTemplate' via factory method to bean named 'jdbcConverter' +2024-09-23 20:16:50.754 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'jdbcAggregateTemplate' via factory method to bean named 'dataAccessStrategyBean' +2024-09-23 20:16:50.759 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.data.jdbc.JdbcRepositoriesAutoConfiguration$JdbcRepositoriesConfiguration' +2024-09-23 20:16:50.759 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'data-jdbc.repository-aot-processor#0' +2024-09-23 20:16:50.760 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.data.jdbc.JdbcRepositoriesAutoConfiguration' +2024-09-23 20:16:50.760 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.data.redis.RedisReactiveAutoConfiguration' +2024-09-23 20:16:50.760 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'reactiveRedisTemplate' +2024-09-23 20:16:50.760 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'reactiveRedisTemplate' via factory method to bean named 'redisConnectionFactory' +2024-09-23 20:16:50.760 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'reactiveRedisTemplate' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@77602954' +2024-09-23 20:16:50.775 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'reactiveStringRedisTemplate' +2024-09-23 20:16:50.775 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'reactiveStringRedisTemplate' via factory method to bean named 'redisConnectionFactory' +2024-09-23 20:16:50.776 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.data.redis.RedisRepositoriesAutoConfiguration' +2024-09-23 20:16:50.776 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'redisIndexConfiguration#0' +2024-09-23 20:16:50.777 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'redisKeyspaceConfiguration#0' +2024-09-23 20:16:50.777 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'redisMappingConfiguration#0' +2024-09-23 20:16:50.777 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'keyValueMappingContext' +2024-09-23 20:16:50.778 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'redisCustomConversions' +2024-09-23 20:16:50.778 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.lang.String to class [B as writing converter +2024-09-23 20:16:50.779 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class [B to class java.lang.String as reading converter +2024-09-23 20:16:50.779 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.lang.Number to class [B as writing converter +2024-09-23 20:16:50.779 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class [B to class java.lang.Number as reading converter +2024-09-23 20:16:50.779 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.lang.Enum to class [B as writing converter +2024-09-23 20:16:50.779 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class [B to class java.lang.Enum as reading converter +2024-09-23 20:16:50.779 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.lang.Boolean to class [B as writing converter +2024-09-23 20:16:50.779 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class [B to class java.lang.Boolean as reading converter +2024-09-23 20:16:50.779 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.util.Date to class [B as writing converter +2024-09-23 20:16:50.779 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class [B to class java.util.Date as reading converter +2024-09-23 20:16:50.779 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.util.UUID to class [B as writing converter +2024-09-23 20:16:50.779 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class [B to class java.util.UUID as reading converter +2024-09-23 20:16:50.779 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.time.LocalDateTime to class [B as reading converter +2024-09-23 20:16:50.779 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class [B to class java.time.LocalDateTime as reading converter +2024-09-23 20:16:50.779 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.time.LocalDate to class [B as reading converter +2024-09-23 20:16:50.779 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class [B to class java.time.LocalDate as reading converter +2024-09-23 20:16:50.779 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.time.LocalTime to class [B as reading converter +2024-09-23 20:16:50.779 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class [B to class java.time.LocalTime as reading converter +2024-09-23 20:16:50.779 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.time.ZonedDateTime to class [B as reading converter +2024-09-23 20:16:50.779 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class [B to class java.time.ZonedDateTime as reading converter +2024-09-23 20:16:50.779 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.time.Instant to class [B as reading converter +2024-09-23 20:16:50.779 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class [B to class java.time.Instant as reading converter +2024-09-23 20:16:50.779 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.time.ZoneId to class [B as reading converter +2024-09-23 20:16:50.779 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class [B to class java.time.ZoneId as reading converter +2024-09-23 20:16:50.779 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.time.Period to class [B as reading converter +2024-09-23 20:16:50.779 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class [B to class java.time.Period as reading converter +2024-09-23 20:16:50.779 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.time.Duration to class [B as reading converter +2024-09-23 20:16:50.779 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class [B to class java.time.Duration as reading converter +2024-09-23 20:16:50.779 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.time.OffsetDateTime to class [B as reading converter +2024-09-23 20:16:50.779 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class [B to class java.time.OffsetDateTime as reading converter +2024-09-23 20:16:50.779 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.time.OffsetTime to class [B as reading converter +2024-09-23 20:16:50.779 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class [B to class java.time.OffsetTime as reading converter +2024-09-23 20:16:50.779 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.util.Date to class java.time.LocalDateTime as reading converter +2024-09-23 20:16:50.779 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.time.LocalDateTime to class java.util.Date as writing converter +2024-09-23 20:16:50.779 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.util.Date to class java.time.LocalDate as reading converter +2024-09-23 20:16:50.779 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.time.LocalDate to class java.util.Date as writing converter +2024-09-23 20:16:50.779 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.util.Date to class java.time.LocalTime as reading converter +2024-09-23 20:16:50.780 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.time.LocalTime to class java.util.Date as writing converter +2024-09-23 20:16:50.780 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.util.Date to class java.time.Instant as reading converter +2024-09-23 20:16:50.780 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.time.Instant to class java.util.Date as writing converter +2024-09-23 20:16:50.780 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.time.LocalDateTime to class java.time.Instant as reading converter +2024-09-23 20:16:50.780 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.time.Instant to class java.time.LocalDateTime as reading converter +2024-09-23 20:16:50.780 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.time.ZoneId to class java.lang.String as writing converter +2024-09-23 20:16:50.780 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.lang.String to class java.time.ZoneId as reading converter +2024-09-23 20:16:50.780 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.time.Duration to class java.lang.String as writing converter +2024-09-23 20:16:50.780 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.lang.String to class java.time.Duration as reading converter +2024-09-23 20:16:50.780 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.time.Period to class java.lang.String as writing converter +2024-09-23 20:16:50.780 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.lang.String to class java.time.Period as reading converter +2024-09-23 20:16:50.780 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.lang.String to class java.time.LocalDate as reading converter +2024-09-23 20:16:50.780 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.lang.String to class java.time.LocalDateTime as reading converter +2024-09-23 20:16:50.780 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.lang.String to class java.time.Instant as reading converter +2024-09-23 20:16:50.780 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'redisReferenceResolver' +2024-09-23 20:16:50.781 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'redisConverter' +2024-09-23 20:16:50.781 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.lang.String to class [B as writing converter +2024-09-23 20:16:50.781 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class [B to class java.lang.String as reading converter +2024-09-23 20:16:50.781 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.lang.Number to class [B as writing converter +2024-09-23 20:16:50.781 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class [B to class java.lang.Number as reading converter +2024-09-23 20:16:50.781 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.lang.Enum to class [B as writing converter +2024-09-23 20:16:50.781 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class [B to class java.lang.Enum as reading converter +2024-09-23 20:16:50.781 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.lang.Boolean to class [B as writing converter +2024-09-23 20:16:50.781 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class [B to class java.lang.Boolean as reading converter +2024-09-23 20:16:50.781 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.util.Date to class [B as writing converter +2024-09-23 20:16:50.781 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class [B to class java.util.Date as reading converter +2024-09-23 20:16:50.781 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.util.UUID to class [B as writing converter +2024-09-23 20:16:50.781 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class [B to class java.util.UUID as reading converter +2024-09-23 20:16:50.782 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.time.LocalDateTime to class [B as reading converter +2024-09-23 20:16:50.782 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class [B to class java.time.LocalDateTime as reading converter +2024-09-23 20:16:50.782 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.time.LocalDate to class [B as reading converter +2024-09-23 20:16:50.782 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class [B to class java.time.LocalDate as reading converter +2024-09-23 20:16:50.782 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.time.LocalTime to class [B as reading converter +2024-09-23 20:16:50.782 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class [B to class java.time.LocalTime as reading converter +2024-09-23 20:16:50.782 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.time.ZonedDateTime to class [B as reading converter +2024-09-23 20:16:50.782 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class [B to class java.time.ZonedDateTime as reading converter +2024-09-23 20:16:50.782 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.time.Instant to class [B as reading converter +2024-09-23 20:16:50.782 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class [B to class java.time.Instant as reading converter +2024-09-23 20:16:50.782 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.time.ZoneId to class [B as reading converter +2024-09-23 20:16:50.782 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class [B to class java.time.ZoneId as reading converter +2024-09-23 20:16:50.782 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.time.Period to class [B as reading converter +2024-09-23 20:16:50.782 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class [B to class java.time.Period as reading converter +2024-09-23 20:16:50.782 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.time.Duration to class [B as reading converter +2024-09-23 20:16:50.782 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class [B to class java.time.Duration as reading converter +2024-09-23 20:16:50.782 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.time.OffsetDateTime to class [B as reading converter +2024-09-23 20:16:50.782 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class [B to class java.time.OffsetDateTime as reading converter +2024-09-23 20:16:50.782 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.time.OffsetTime to class [B as reading converter +2024-09-23 20:16:50.782 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class [B to class java.time.OffsetTime as reading converter +2024-09-23 20:16:50.782 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.util.Date to class java.time.LocalDateTime as reading converter +2024-09-23 20:16:50.782 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.time.LocalDateTime to class java.util.Date as writing converter +2024-09-23 20:16:50.782 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.util.Date to class java.time.LocalDate as reading converter +2024-09-23 20:16:50.782 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.time.LocalDate to class java.util.Date as writing converter +2024-09-23 20:16:50.782 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.util.Date to class java.time.LocalTime as reading converter +2024-09-23 20:16:50.782 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.time.LocalTime to class java.util.Date as writing converter +2024-09-23 20:16:50.782 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.util.Date to class java.time.Instant as reading converter +2024-09-23 20:16:50.782 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.time.Instant to class java.util.Date as writing converter +2024-09-23 20:16:50.782 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.time.LocalDateTime to class java.time.Instant as reading converter +2024-09-23 20:16:50.782 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.time.Instant to class java.time.LocalDateTime as reading converter +2024-09-23 20:16:50.782 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.time.ZoneId to class java.lang.String as writing converter +2024-09-23 20:16:50.782 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.lang.String to class java.time.ZoneId as reading converter +2024-09-23 20:16:50.782 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.time.Duration to class java.lang.String as writing converter +2024-09-23 20:16:50.782 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.lang.String to class java.time.Duration as reading converter +2024-09-23 20:16:50.782 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.time.Period to class java.lang.String as writing converter +2024-09-23 20:16:50.782 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.lang.String to class java.time.Period as reading converter +2024-09-23 20:16:50.782 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.lang.String to class java.time.LocalDate as reading converter +2024-09-23 20:16:50.783 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.lang.String to class java.time.LocalDateTime as reading converter +2024-09-23 20:16:50.783 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.lang.String to class java.time.Instant as reading converter +2024-09-23 20:16:50.783 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.lang.String to class [B as writing converter +2024-09-23 20:16:50.783 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class [B to class java.lang.String as reading converter +2024-09-23 20:16:50.783 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.lang.Number to class [B as writing converter +2024-09-23 20:16:50.783 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class [B to class java.lang.Number as reading converter +2024-09-23 20:16:50.783 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.lang.Enum to class [B as writing converter +2024-09-23 20:16:50.784 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class [B to class java.lang.Enum as reading converter +2024-09-23 20:16:50.784 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.lang.Boolean to class [B as writing converter +2024-09-23 20:16:50.784 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class [B to class java.lang.Boolean as reading converter +2024-09-23 20:16:50.784 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.util.Date to class [B as writing converter +2024-09-23 20:16:50.784 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class [B to class java.util.Date as reading converter +2024-09-23 20:16:50.784 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.util.UUID to class [B as writing converter +2024-09-23 20:16:50.784 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class [B to class java.util.UUID as reading converter +2024-09-23 20:16:50.784 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.time.LocalDateTime to class [B as reading converter +2024-09-23 20:16:50.784 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class [B to class java.time.LocalDateTime as reading converter +2024-09-23 20:16:50.784 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.time.LocalDate to class [B as reading converter +2024-09-23 20:16:50.784 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class [B to class java.time.LocalDate as reading converter +2024-09-23 20:16:50.784 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.time.LocalTime to class [B as reading converter +2024-09-23 20:16:50.784 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class [B to class java.time.LocalTime as reading converter +2024-09-23 20:16:50.784 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.time.ZonedDateTime to class [B as reading converter +2024-09-23 20:16:50.784 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class [B to class java.time.ZonedDateTime as reading converter +2024-09-23 20:16:50.784 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.time.Instant to class [B as reading converter +2024-09-23 20:16:50.784 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class [B to class java.time.Instant as reading converter +2024-09-23 20:16:50.784 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.time.ZoneId to class [B as reading converter +2024-09-23 20:16:50.784 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class [B to class java.time.ZoneId as reading converter +2024-09-23 20:16:50.784 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.time.Period to class [B as reading converter +2024-09-23 20:16:50.784 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class [B to class java.time.Period as reading converter +2024-09-23 20:16:50.784 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.time.Duration to class [B as reading converter +2024-09-23 20:16:50.784 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class [B to class java.time.Duration as reading converter +2024-09-23 20:16:50.784 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.time.OffsetDateTime to class [B as reading converter +2024-09-23 20:16:50.784 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class [B to class java.time.OffsetDateTime as reading converter +2024-09-23 20:16:50.784 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.time.OffsetTime to class [B as reading converter +2024-09-23 20:16:50.784 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class [B to class java.time.OffsetTime as reading converter +2024-09-23 20:16:50.784 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.util.Date to class java.time.LocalDateTime as reading converter +2024-09-23 20:16:50.784 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.time.LocalDateTime to class java.util.Date as writing converter +2024-09-23 20:16:50.785 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.util.Date to class java.time.LocalDate as reading converter +2024-09-23 20:16:50.785 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.time.LocalDate to class java.util.Date as writing converter +2024-09-23 20:16:50.785 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.util.Date to class java.time.LocalTime as reading converter +2024-09-23 20:16:50.785 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.time.LocalTime to class java.util.Date as writing converter +2024-09-23 20:16:50.785 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.util.Date to class java.time.Instant as reading converter +2024-09-23 20:16:50.785 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.time.Instant to class java.util.Date as writing converter +2024-09-23 20:16:50.785 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.time.LocalDateTime to class java.time.Instant as reading converter +2024-09-23 20:16:50.785 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.time.Instant to class java.time.LocalDateTime as reading converter +2024-09-23 20:16:50.785 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.time.ZoneId to class java.lang.String as writing converter +2024-09-23 20:16:50.785 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.lang.String to class java.time.ZoneId as reading converter +2024-09-23 20:16:50.785 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.time.Duration to class java.lang.String as writing converter +2024-09-23 20:16:50.785 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.lang.String to class java.time.Duration as reading converter +2024-09-23 20:16:50.785 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.time.Period to class java.lang.String as writing converter +2024-09-23 20:16:50.785 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.lang.String to class java.time.Period as reading converter +2024-09-23 20:16:50.785 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.lang.String to class java.time.LocalDate as reading converter +2024-09-23 20:16:50.785 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.lang.String to class java.time.LocalDateTime as reading converter +2024-09-23 20:16:50.785 [main] DEBUG o.s.data.convert.CustomConversions - Adding converter from class java.lang.String to class java.time.Instant as reading converter +2024-09-23 20:16:50.788 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'redisKeyValueAdapter' +2024-09-23 20:16:50.795 [main] DEBUG o.s.d.r.l.RedisMessageListenerContainer - Starting RedisMessageListenerContainer... +2024-09-23 20:16:50.796 [main] DEBUG o.s.d.r.l.RedisMessageListenerContainer - Postpone listening for Redis messages until actual listeners are added +2024-09-23 20:16:50.796 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'redisKeyValueTemplate' +2024-09-23 20:16:50.798 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'data-redis.repository-aot-processor#0' +2024-09-23 20:16:50.798 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.JacksonHttpMessageConvertersConfiguration' +2024-09-23 20:16:50.798 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.data.web.config.ProjectingArgumentResolverRegistrar' +2024-09-23 20:16:50.798 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'offsetResolver' +2024-09-23 20:16:50.801 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration' +2024-09-23 20:16:50.802 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'spring.info-org.springframework.boot.autoconfigure.info.ProjectInfoProperties' +2024-09-23 20:16:50.803 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration' via constructor to bean named 'spring.info-org.springframework.boot.autoconfigure.info.ProjectInfoProperties' +2024-09-23 20:16:50.803 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.JdbcClientAutoConfiguration' +2024-09-23 20:16:50.803 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'jdbcClient' +2024-09-23 20:16:50.804 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'jdbcClient' via factory method to bean named 'namedParameterJdbcTemplate' +2024-09-23 20:16:50.805 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.netty.NettyAutoConfiguration' +2024-09-23 20:16:50.805 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'spring.netty-org.springframework.boot.autoconfigure.netty.NettyProperties' +2024-09-23 20:16:50.805 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.netty.NettyAutoConfiguration' via constructor to bean named 'spring.netty-org.springframework.boot.autoconfigure.netty.NettyProperties' +2024-09-23 20:16:50.805 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.reactor.ReactorAutoConfiguration' +2024-09-23 20:16:50.806 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'spring.reactor-org.springframework.boot.autoconfigure.reactor.ReactorProperties' +2024-09-23 20:16:50.806 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.reactor.ReactorAutoConfiguration' via constructor to bean named 'spring.reactor-org.springframework.boot.autoconfigure.reactor.ReactorProperties' +2024-09-23 20:16:50.806 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.session.SessionAutoConfiguration$ServletSessionConfiguration$ServletSessionRepositoryConfiguration' +2024-09-23 20:16:50.806 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.session.SessionAutoConfiguration$ServletSessionConfiguration' +2024-09-23 20:16:50.806 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'cookieSerializer' +2024-09-23 20:16:50.807 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'cookieSerializer' via factory method to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' +2024-09-23 20:16:50.809 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.session.SessionAutoConfiguration' +2024-09-23 20:16:50.813 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'spring.session-org.springframework.boot.autoconfigure.session.SessionProperties' +2024-09-23 20:16:50.814 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'spring.webflux-org.springframework.boot.autoconfigure.web.reactive.WebFluxProperties' +2024-09-23 20:16:50.814 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.sql.init.SqlInitializationAutoConfiguration' +2024-09-23 20:16:50.815 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskSchedulingConfigurations$ThreadPoolTaskSchedulerBuilderConfiguration' +2024-09-23 20:16:50.815 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'threadPoolTaskSchedulerBuilder' +2024-09-23 20:16:50.815 [HikariPool-1 housekeeper] DEBUG com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - Pool stats (total=1, active=0, idle=1, waiting=0) +2024-09-23 20:16:50.815 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties' +2024-09-23 20:16:50.816 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'threadPoolTaskSchedulerBuilder' via factory method to bean named 'spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties' +2024-09-23 20:16:50.818 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskSchedulingConfigurations$TaskSchedulerBuilderConfiguration' +2024-09-23 20:16:50.818 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'taskSchedulerBuilder' +2024-09-23 20:16:50.818 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'taskSchedulerBuilder' via factory method to bean named 'spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties' +2024-09-23 20:16:50.818 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskSchedulingConfigurations$SimpleAsyncTaskSchedulerBuilderConfiguration' +2024-09-23 20:16:50.819 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.task.TaskSchedulingConfigurations$SimpleAsyncTaskSchedulerBuilderConfiguration' via constructor to bean named 'spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties' +2024-09-23 20:16:50.819 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'simpleAsyncTaskSchedulerBuilder' +2024-09-23 20:16:50.819 [HikariPool-1 connection adder] DEBUG com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - Added connection com.mysql.cj.jdbc.ConnectionImpl@44adda01 +2024-09-23 20:16:50.820 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskSchedulingAutoConfiguration' +2024-09-23 20:16:50.820 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration$EnableTransactionManagementConfiguration$CglibAutoProxyConfiguration' +2024-09-23 20:16:50.821 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration$EnableTransactionManagementConfiguration' +2024-09-23 20:16:50.821 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration$TransactionTemplateConfiguration' +2024-09-23 20:16:50.821 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'transactionTemplate' +2024-09-23 20:16:50.821 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'transactionTemplate' via factory method to bean named 'transactionManager' +2024-09-23 20:16:50.822 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration' +2024-09-23 20:16:50.822 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.client.RestClientAutoConfiguration' +2024-09-23 20:16:50.822 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'httpMessageConvertersRestClientCustomizer' +2024-09-23 20:16:50.822 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'restClientSsl' +2024-09-23 20:16:50.822 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'restClientSsl' via factory method to bean named 'sslBundleRegistry' +2024-09-23 20:16:50.823 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'restClientBuilderConfigurer' +2024-09-23 20:16:50.823 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.client.RestTemplateAutoConfiguration' +2024-09-23 20:16:50.823 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.embedded.EmbeddedWebServerFactoryCustomizerAutoConfiguration' +2024-09-23 20:16:50.823 [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'multipartResolver' +2024-09-23 20:16:50.828 [main] DEBUG o.s.j.e.a.AnnotationMBeanExporter - Registering beans for JMX exposure on startup +2024-09-23 20:16:50.828 [main] DEBUG o.s.j.e.a.AnnotationMBeanExporter - Auto-detecting user-defined JMX MBeans +2024-09-23 20:16:50.829 [main] DEBUG o.s.j.e.a.AnnotationMBeanExporter - Bean with name 'dataSource' has been autodetected for JMX exposure +2024-09-23 20:16:50.832 [main] DEBUG o.s.j.e.a.AnnotationMBeanExporter - Located MBean 'dataSource': registering with JMX server as MBean [com.zaxxer.hikari:name=dataSource,type=HikariDataSource] +2024-09-23 20:16:50.835 [main] DEBUG o.s.c.s.DefaultLifecycleProcessor - Starting beans in phase -2147483647 +2024-09-23 20:16:50.835 [main] DEBUG o.s.c.s.DefaultLifecycleProcessor - Successfully started bean 'springBootLoggingLifecycle' +2024-09-23 20:16:50.835 [main] DEBUG o.s.c.s.DefaultLifecycleProcessor - Starting beans in phase 0 +2024-09-23 20:16:50.835 [main] DEBUG o.s.c.s.DefaultLifecycleProcessor - Starting beans in phase 2147481599 +2024-09-23 20:16:50.848 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat started on port 8080 (http) with context path '/' +2024-09-23 20:16:50.848 [main] DEBUG o.s.c.s.DefaultLifecycleProcessor - Successfully started bean 'webServerStartStop' +2024-09-23 20:16:50.848 [main] DEBUG o.s.c.s.DefaultLifecycleProcessor - Starting beans in phase 2147482623 +2024-09-23 20:16:50.848 [main] DEBUG o.s.c.s.DefaultLifecycleProcessor - Successfully started bean 'webServerGracefulShutdown' +2024-09-23 20:16:50.849 [main] DEBUG o.s.c.s.DefaultLifecycleProcessor - Starting beans in phase 2147483647 +2024-09-23 20:16:50.855 [main] DEBUG o.s.b.a.l.ConditionEvaluationReportLogger - + + +============================ +CONDITIONS EVALUATION REPORT +============================ + + +Positive matches: +----------------- + + AopAutoConfiguration matched: + - @ConditionalOnProperty (spring.aop.auto=true) matched (OnPropertyCondition) + + AopAutoConfiguration.ClassProxyingConfiguration matched: + - @ConditionalOnMissingClass did not find unwanted class 'org.aspectj.weaver.Advice' (OnClassCondition) + - @ConditionalOnProperty (spring.aop.proxy-target-class=true) matched (OnPropertyCondition) + + ApplicationAvailabilityAutoConfiguration#applicationAvailability matched: + - @ConditionalOnMissingBean (types: org.springframework.boot.availability.ApplicationAvailability; SearchStrategy: all) did not find any beans (OnBeanCondition) + + DataSourceAutoConfiguration matched: + - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseType' (OnClassCondition) + - @ConditionalOnMissingBean (types: io.r2dbc.spi.ConnectionFactory; SearchStrategy: all) did not find any beans (OnBeanCondition) + + DataSourceAutoConfiguration.PooledDataSourceConfiguration matched: + - AnyNestedCondition 1 matched 1 did not; NestedCondition on DataSourceAutoConfiguration.PooledDataSourceCondition.PooledDataSourceAvailable PooledDataSource found supported DataSource; NestedCondition on DataSourceAutoConfiguration.PooledDataSourceCondition.ExplicitType @ConditionalOnProperty (spring.datasource.type) did not find property 'type' (DataSourceAutoConfiguration.PooledDataSourceCondition) + - @ConditionalOnMissingBean (types: javax.sql.DataSource,javax.sql.XADataSource; SearchStrategy: all) did not find any beans (OnBeanCondition) + + DataSourceAutoConfiguration.PooledDataSourceConfiguration#jdbcConnectionDetails matched: + - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.jdbc.JdbcConnectionDetails; SearchStrategy: all) did not find any beans (OnBeanCondition) + + DataSourceConfiguration.Hikari matched: + - @ConditionalOnClass found required class 'com.zaxxer.hikari.HikariDataSource' (OnClassCondition) + - @ConditionalOnProperty (spring.datasource.type=com.zaxxer.hikari.HikariDataSource) matched (OnPropertyCondition) + - @ConditionalOnMissingBean (types: javax.sql.DataSource; SearchStrategy: all) did not find any beans (OnBeanCondition) + + DataSourceInitializationConfiguration matched: + - @ConditionalOnClass found required class 'org.springframework.jdbc.datasource.init.DatabasePopulator' (OnClassCondition) + - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource'; @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.sql.init.SqlDataSourceScriptDatabaseInitializer,org.springframework.boot.autoconfigure.sql.init.SqlR2dbcScriptDatabaseInitializer; SearchStrategy: all) did not find any beans (OnBeanCondition) + + DataSourceJmxConfiguration matched: + - @ConditionalOnProperty (spring.jmx.enabled=true) matched (OnPropertyCondition) + + DataSourceJmxConfiguration.Hikari matched: + - @ConditionalOnClass found required class 'com.zaxxer.hikari.HikariDataSource' (OnClassCondition) + - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource' (OnBeanCondition) + + DataSourcePoolMetadataProvidersConfiguration.HikariPoolDataSourceMetadataProviderConfiguration matched: + - @ConditionalOnClass found required class 'com.zaxxer.hikari.HikariDataSource' (OnClassCondition) + + DataSourceTransactionManagerAutoConfiguration matched: + - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'org.springframework.jdbc.core.JdbcTemplate', 'org.springframework.transaction.TransactionManager' (OnClassCondition) + + DataSourceTransactionManagerAutoConfiguration.JdbcTransactionManagerConfiguration matched: + - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource' (OnBeanCondition) + + DataSourceTransactionManagerAutoConfiguration.JdbcTransactionManagerConfiguration#transactionManager matched: + - @ConditionalOnMissingBean (types: org.springframework.transaction.TransactionManager; SearchStrategy: all) did not find any beans (OnBeanCondition) + + DispatcherServletAutoConfiguration matched: + - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) + - found 'session' scope (OnWebApplicationCondition) + + DispatcherServletAutoConfiguration.DispatcherServletConfiguration matched: + - @ConditionalOnClass found required class 'jakarta.servlet.ServletRegistration' (OnClassCondition) + - Default DispatcherServlet did not find dispatcher servlet beans (DispatcherServletAutoConfiguration.DefaultDispatcherServletCondition) + + DispatcherServletAutoConfiguration.DispatcherServletRegistrationConfiguration matched: + - @ConditionalOnClass found required class 'jakarta.servlet.ServletRegistration' (OnClassCondition) + - DispatcherServlet Registration did not find servlet registration bean (DispatcherServletAutoConfiguration.DispatcherServletRegistrationCondition) + + DispatcherServletAutoConfiguration.DispatcherServletRegistrationConfiguration#dispatcherServletRegistration matched: + - @ConditionalOnBean (names: dispatcherServlet types: org.springframework.web.servlet.DispatcherServlet; SearchStrategy: all) found bean 'dispatcherServlet' (OnBeanCondition) + + EmbeddedWebServerFactoryCustomizerAutoConfiguration matched: + - @ConditionalOnWebApplication (required) found 'session' scope (OnWebApplicationCondition) + - @ConditionalOnWarDeployment the application is not deployed as a WAR file. (OnWarDeploymentCondition) + + EmbeddedWebServerFactoryCustomizerAutoConfiguration.TomcatWebServerFactoryCustomizerConfiguration matched: + - @ConditionalOnClass found required classes 'org.apache.catalina.startup.Tomcat', 'org.apache.coyote.UpgradeProtocol' (OnClassCondition) + + ErrorMvcAutoConfiguration matched: + - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) + - found 'session' scope (OnWebApplicationCondition) + + ErrorMvcAutoConfiguration#basicErrorController matched: + - @ConditionalOnMissingBean (types: org.springframework.boot.web.servlet.error.ErrorController; SearchStrategy: current) did not find any beans (OnBeanCondition) + + ErrorMvcAutoConfiguration#errorAttributes matched: + - @ConditionalOnMissingBean (types: org.springframework.boot.web.servlet.error.ErrorAttributes; SearchStrategy: current) did not find any beans (OnBeanCondition) + + ErrorMvcAutoConfiguration.DefaultErrorViewResolverConfiguration#conventionErrorViewResolver matched: + - @ConditionalOnBean (types: org.springframework.web.servlet.DispatcherServlet; SearchStrategy: all) found bean 'dispatcherServlet'; @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.web.servlet.error.ErrorViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) + + ErrorMvcAutoConfiguration.WhitelabelErrorViewConfiguration matched: + - @ConditionalOnProperty (server.error.whitelabel.enabled) matched (OnPropertyCondition) + - ErrorTemplate Missing did not find error template view (ErrorMvcAutoConfiguration.ErrorTemplateMissingCondition) + + ErrorMvcAutoConfiguration.WhitelabelErrorViewConfiguration#beanNameViewResolver matched: + - @ConditionalOnMissingBean (types: org.springframework.web.servlet.view.BeanNameViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) + + ErrorMvcAutoConfiguration.WhitelabelErrorViewConfiguration#defaultErrorView matched: + - @ConditionalOnMissingBean (names: error; SearchStrategy: all) did not find any beans (OnBeanCondition) + + GenericCacheConfiguration matched: + - Cache org.springframework.boot.autoconfigure.cache.GenericCacheConfiguration automatic cache type (CacheCondition) + + HttpEncodingAutoConfiguration matched: + - @ConditionalOnClass found required class 'org.springframework.web.filter.CharacterEncodingFilter' (OnClassCondition) + - found 'session' scope (OnWebApplicationCondition) + - @ConditionalOnProperty (server.servlet.encoding.enabled) matched (OnPropertyCondition) + + HttpEncodingAutoConfiguration#characterEncodingFilter matched: + - @ConditionalOnMissingBean (types: org.springframework.web.filter.CharacterEncodingFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) + + HttpMessageConvertersAutoConfiguration matched: + - @ConditionalOnClass found required class 'org.springframework.http.converter.HttpMessageConverter' (OnClassCondition) + - NoneNestedConditions 0 matched 1 did not; NestedCondition on HttpMessageConvertersAutoConfiguration.NotReactiveWebApplicationCondition.ReactiveWebApplication did not find reactive web application classes (HttpMessageConvertersAutoConfiguration.NotReactiveWebApplicationCondition) + + HttpMessageConvertersAutoConfiguration#messageConverters matched: + - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.http.HttpMessageConverters; SearchStrategy: all) did not find any beans (OnBeanCondition) + + HttpMessageConvertersAutoConfiguration.StringHttpMessageConverterConfiguration matched: + - @ConditionalOnClass found required class 'org.springframework.http.converter.StringHttpMessageConverter' (OnClassCondition) + + HttpMessageConvertersAutoConfiguration.StringHttpMessageConverterConfiguration#stringHttpMessageConverter matched: + - @ConditionalOnMissingBean (types: org.springframework.http.converter.StringHttpMessageConverter; SearchStrategy: all) did not find any beans (OnBeanCondition) + + JacksonAutoConfiguration matched: + - @ConditionalOnClass found required class 'com.fasterxml.jackson.databind.ObjectMapper' (OnClassCondition) + + JacksonAutoConfiguration.Jackson2ObjectMapperBuilderCustomizerConfiguration matched: + - @ConditionalOnClass found required class 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder' (OnClassCondition) + + JacksonAutoConfiguration.JacksonObjectMapperBuilderConfiguration matched: + - @ConditionalOnClass found required class 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder' (OnClassCondition) + + JacksonAutoConfiguration.JacksonObjectMapperBuilderConfiguration#jacksonObjectMapperBuilder matched: + - @ConditionalOnMissingBean (types: org.springframework.http.converter.json.Jackson2ObjectMapperBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) + + JacksonAutoConfiguration.JacksonObjectMapperConfiguration matched: + - @ConditionalOnClass found required class 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder' (OnClassCondition) + + JacksonAutoConfiguration.JacksonObjectMapperConfiguration#jacksonObjectMapper matched: + - @ConditionalOnMissingBean (types: com.fasterxml.jackson.databind.ObjectMapper; SearchStrategy: all) did not find any beans (OnBeanCondition) + + JacksonAutoConfiguration.ParameterNamesModuleConfiguration matched: + - @ConditionalOnClass found required class 'com.fasterxml.jackson.module.paramnames.ParameterNamesModule' (OnClassCondition) + + JacksonAutoConfiguration.ParameterNamesModuleConfiguration#parameterNamesModule matched: + - @ConditionalOnMissingBean (types: com.fasterxml.jackson.module.paramnames.ParameterNamesModule; SearchStrategy: all) did not find any beans (OnBeanCondition) + + JacksonHttpMessageConvertersConfiguration.MappingJackson2HttpMessageConverterConfiguration matched: + - @ConditionalOnClass found required class 'com.fasterxml.jackson.databind.ObjectMapper' (OnClassCondition) + - @ConditionalOnProperty (spring.mvc.converters.preferred-json-mapper=jackson) matched (OnPropertyCondition) + - @ConditionalOnBean (types: com.fasterxml.jackson.databind.ObjectMapper; SearchStrategy: all) found bean 'jacksonObjectMapper' (OnBeanCondition) + + JacksonHttpMessageConvertersConfiguration.MappingJackson2HttpMessageConverterConfiguration#mappingJackson2HttpMessageConverter matched: + - @ConditionalOnMissingBean (types: org.springframework.http.converter.json.MappingJackson2HttpMessageConverter ignored: org.springframework.hateoas.server.mvc.TypeConstrainedMappingJackson2HttpMessageConverter,org.springframework.data.rest.webmvc.alps.AlpsJsonHttpMessageConverter; SearchStrategy: all) did not find any beans (OnBeanCondition) + + JdbcClientAutoConfiguration matched: + - @ConditionalOnSingleCandidate (types: org.springframework.jdbc.core.namedparam.NamedParameterJdbcTemplate; SearchStrategy: all) found a single bean 'namedParameterJdbcTemplate'; @ConditionalOnMissingBean (types: org.springframework.jdbc.core.simple.JdbcClient; SearchStrategy: all) did not find any beans (OnBeanCondition) + + JdbcRepositoriesAutoConfiguration matched: + - @ConditionalOnClass found required classes 'org.springframework.jdbc.core.namedparam.NamedParameterJdbcOperations', 'org.springframework.data.jdbc.repository.config.AbstractJdbcConfiguration' (OnClassCondition) + - @ConditionalOnProperty (spring.data.jdbc.repositories.enabled=true) matched (OnPropertyCondition) + - @ConditionalOnBean (types: org.springframework.jdbc.core.namedparam.NamedParameterJdbcOperations,org.springframework.transaction.PlatformTransactionManager; SearchStrategy: all) found beans 'transactionManager', 'namedParameterJdbcTemplate' (OnBeanCondition) + + JdbcRepositoriesAutoConfiguration.JdbcRepositoriesConfiguration matched: + - @ConditionalOnMissingBean (types: org.springframework.data.jdbc.repository.config.JdbcRepositoryConfigExtension; SearchStrategy: all) did not find any beans (OnBeanCondition) + + JdbcRepositoriesAutoConfiguration.SpringBootJdbcConfiguration matched: + - @ConditionalOnMissingBean (types: org.springframework.data.jdbc.repository.config.AbstractJdbcConfiguration; SearchStrategy: all) did not find any beans (OnBeanCondition) + + JdbcRepositoriesAutoConfiguration.SpringBootJdbcConfiguration#dataAccessStrategyBean matched: + - @ConditionalOnMissingBean (types: org.springframework.data.jdbc.core.convert.DataAccessStrategy; SearchStrategy: all) did not find any beans (OnBeanCondition) + + JdbcRepositoriesAutoConfiguration.SpringBootJdbcConfiguration#jdbcAggregateTemplate matched: + - @ConditionalOnMissingBean (types: org.springframework.data.jdbc.core.JdbcAggregateTemplate; SearchStrategy: all) did not find any beans (OnBeanCondition) + + JdbcRepositoriesAutoConfiguration.SpringBootJdbcConfiguration#jdbcConverter matched: + - @ConditionalOnMissingBean (types: org.springframework.data.jdbc.core.convert.JdbcConverter; SearchStrategy: all) did not find any beans (OnBeanCondition) + + JdbcRepositoriesAutoConfiguration.SpringBootJdbcConfiguration#jdbcCustomConversions matched: + - @ConditionalOnMissingBean (types: org.springframework.data.jdbc.core.convert.JdbcCustomConversions; SearchStrategy: all) did not find any beans (OnBeanCondition) + + JdbcRepositoriesAutoConfiguration.SpringBootJdbcConfiguration#jdbcDialect matched: + - @ConditionalOnMissingBean (types: org.springframework.data.relational.core.dialect.Dialect; SearchStrategy: all) did not find any beans (OnBeanCondition) + + JdbcRepositoriesAutoConfiguration.SpringBootJdbcConfiguration#jdbcManagedTypes matched: + - @ConditionalOnMissingBean (types: org.springframework.data.relational.RelationalManagedTypes; SearchStrategy: all) did not find any beans (OnBeanCondition) + + JdbcRepositoriesAutoConfiguration.SpringBootJdbcConfiguration#jdbcMappingContext matched: + - @ConditionalOnMissingBean (types: org.springframework.data.jdbc.core.mapping.JdbcMappingContext; SearchStrategy: all) did not find any beans (OnBeanCondition) + + JdbcTemplateAutoConfiguration matched: + - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'org.springframework.jdbc.core.JdbcTemplate' (OnClassCondition) + - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource' (OnBeanCondition) + + JdbcTemplateConfiguration matched: + - @ConditionalOnMissingBean (types: org.springframework.jdbc.core.JdbcOperations; SearchStrategy: all) did not find any beans (OnBeanCondition) + + JmxAutoConfiguration matched: + - @ConditionalOnClass found required class 'org.springframework.jmx.export.MBeanExporter' (OnClassCondition) + - @ConditionalOnProperty (spring.jmx.enabled=true) matched (OnPropertyCondition) + + JmxAutoConfiguration#mbeanExporter matched: + - @ConditionalOnMissingBean (types: org.springframework.jmx.export.MBeanExporter; SearchStrategy: current) did not find any beans (OnBeanCondition) + + JmxAutoConfiguration#mbeanServer matched: + - @ConditionalOnMissingBean (types: javax.management.MBeanServer; SearchStrategy: all) did not find any beans (OnBeanCondition) + + JmxAutoConfiguration#objectNamingStrategy matched: + - @ConditionalOnMissingBean (types: org.springframework.jmx.export.naming.ObjectNamingStrategy; SearchStrategy: current) did not find any beans (OnBeanCondition) + + Knife4jAutoConfiguration matched: + - @ConditionalOnProperty (knife4j.enable=true) matched (OnPropertyCondition) + + Knife4jAutoConfiguration#knife4jJakartaOperationCustomizer matched: + - @ConditionalOnMissingBean (types: com.github.xiaoymin.knife4j.spring.extension.Knife4jJakartaOperationCustomizer; SearchStrategy: all) did not find any beans (OnBeanCondition) + + Knife4jAutoConfiguration#knife4jOpenApiCustomizer matched: + - @ConditionalOnMissingBean (types: com.github.xiaoymin.knife4j.spring.extension.Knife4jOpenApiCustomizer; SearchStrategy: all) did not find any beans (OnBeanCondition) + + LettuceConnectionConfiguration matched: + - @ConditionalOnClass found required class 'io.lettuce.core.RedisClient' (OnClassCondition) + - @ConditionalOnProperty (spring.data.redis.client-type=lettuce) matched (OnPropertyCondition) + + LettuceConnectionConfiguration#lettuceClientResources matched: + - @ConditionalOnMissingBean (types: io.lettuce.core.resource.ClientResources; SearchStrategy: all) did not find any beans (OnBeanCondition) + + LettuceConnectionConfiguration#redisConnectionFactory matched: + - @ConditionalOnMissingBean (types: org.springframework.data.redis.connection.RedisConnectionFactory; SearchStrategy: all) did not find any beans (OnBeanCondition) + - @ConditionalOnThreading found PLATFORM (OnThreadingCondition) + + LifecycleAutoConfiguration#defaultLifecycleProcessor matched: + - @ConditionalOnMissingBean (names: lifecycleProcessor; SearchStrategy: current) did not find any beans (OnBeanCondition) + + MultipartAutoConfiguration matched: + - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'org.springframework.web.multipart.support.StandardServletMultipartResolver', 'jakarta.servlet.MultipartConfigElement' (OnClassCondition) + - found 'session' scope (OnWebApplicationCondition) + - @ConditionalOnProperty (spring.servlet.multipart.enabled) matched (OnPropertyCondition) + + MultipartAutoConfiguration#multipartConfigElement matched: + - @ConditionalOnMissingBean (types: jakarta.servlet.MultipartConfigElement; SearchStrategy: all) did not find any beans (OnBeanCondition) + + MultipartAutoConfiguration#multipartResolver matched: + - @ConditionalOnMissingBean (types: org.springframework.web.multipart.MultipartResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) + + MultipleOpenApiSupportConfiguration matched: + - found 'session' scope (OnWebApplicationCondition) + - @ConditionalOnProperty (springdoc.api-docs.enabled) matched (OnPropertyCondition) + - AnyNestedCondition 1 matched 1 did not; NestedCondition on MultipleOpenApiSupportCondition.OnActuatorDifferentPort @ConditionalOnProperty (springdoc.show-actuator) did not find property 'springdoc.show-actuator'; NestedCondition on MultipleOpenApiSupportCondition.OnMultipleOpenApiSupportCondition AnyNestedCondition 1 matched 1 did not; NestedCondition on MultipleOpenApiGroupsCondition.OnGroupConfigProperty @ConditionalOnProperty (springdoc.group-configs[0].group) matched; NestedCondition on MultipleOpenApiGroupsCondition.OnGroupedOpenApiBean @ConditionalOnBean (types: org.springdoc.core.models.GroupedOpenApi; SearchStrategy: all) did not find any beans of type org.springdoc.core.models.GroupedOpenApi (MultipleOpenApiSupportCondition) + + MultipleOpenApiSupportConfiguration#multipleOpenApiResource matched: + - @ConditionalOnProperty (springdoc.use-management-port=false) matched (OnPropertyCondition) + - @ConditionalOnMissingBean (types: org.springdoc.webmvc.api.MultipleOpenApiWebMvcResource; SearchStrategy: all) did not find any beans (OnBeanCondition) + + MybatisAutoConfiguration matched: + - @ConditionalOnClass found required classes 'org.apache.ibatis.session.SqlSessionFactory', 'org.mybatis.spring.SqlSessionFactoryBean' (OnClassCondition) + - @ConditionalOnSingleCandidate (types: javax.sql.DataSource; SearchStrategy: all) found a single bean 'dataSource' (OnBeanCondition) + + MybatisAutoConfiguration#sqlSessionFactory matched: + - @ConditionalOnMissingBean (types: org.apache.ibatis.session.SqlSessionFactory; SearchStrategy: all) did not find any beans (OnBeanCondition) + + MybatisAutoConfiguration#sqlSessionTemplate matched: + - @ConditionalOnMissingBean (types: org.mybatis.spring.SqlSessionTemplate; SearchStrategy: all) did not find any beans (OnBeanCondition) + + MybatisAutoConfiguration.MapperScannerRegistrarNotFoundConfiguration matched: + - @ConditionalOnMissingBean (types: org.mybatis.spring.mapper.MapperFactoryBean,org.mybatis.spring.mapper.MapperScannerConfigurer; SearchStrategy: all) did not find any beans (OnBeanCondition) + + MybatisLanguageDriverAutoConfiguration matched: + - @ConditionalOnClass found required class 'org.apache.ibatis.scripting.LanguageDriver' (OnClassCondition) + + NamedParameterJdbcTemplateConfiguration matched: + - @ConditionalOnSingleCandidate (types: org.springframework.jdbc.core.JdbcTemplate; SearchStrategy: all) found a single bean 'jdbcTemplate'; @ConditionalOnMissingBean (types: org.springframework.jdbc.core.namedparam.NamedParameterJdbcOperations; SearchStrategy: all) did not find any beans (OnBeanCondition) + + NettyAutoConfiguration matched: + - @ConditionalOnClass found required class 'io.netty.util.NettyRuntime' (OnClassCondition) + + NoOpCacheConfiguration matched: + - Cache org.springframework.boot.autoconfigure.cache.NoOpCacheConfiguration automatic cache type (CacheCondition) + + PersistenceExceptionTranslationAutoConfiguration matched: + - @ConditionalOnClass found required class 'org.springframework.dao.annotation.PersistenceExceptionTranslationPostProcessor' (OnClassCondition) + + PersistenceExceptionTranslationAutoConfiguration#persistenceExceptionTranslationPostProcessor matched: + - @ConditionalOnProperty (spring.dao.exceptiontranslation.enabled) matched (OnPropertyCondition) + - @ConditionalOnMissingBean (types: org.springframework.dao.annotation.PersistenceExceptionTranslationPostProcessor; SearchStrategy: all) did not find any beans (OnBeanCondition) + + PropertyPlaceholderAutoConfiguration#propertySourcesPlaceholderConfigurer matched: + - @ConditionalOnMissingBean (types: org.springframework.context.support.PropertySourcesPlaceholderConfigurer; SearchStrategy: current) did not find any beans (OnBeanCondition) + + ReactorAutoConfiguration matched: + - @ConditionalOnClass found required class 'reactor.core.publisher.Hooks' (OnClassCondition) + + RedisAutoConfiguration matched: + - @ConditionalOnClass found required class 'org.springframework.data.redis.core.RedisOperations' (OnClassCondition) + + RedisAutoConfiguration#redisConnectionDetails matched: + - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.data.redis.RedisConnectionDetails; SearchStrategy: all) did not find any beans (OnBeanCondition) + + RedisAutoConfiguration#redisTemplate matched: + - @ConditionalOnSingleCandidate (types: org.springframework.data.redis.connection.RedisConnectionFactory; SearchStrategy: all) found a single bean 'redisConnectionFactory'; @ConditionalOnMissingBean (names: redisTemplate; SearchStrategy: all) did not find any beans (OnBeanCondition) + + RedisAutoConfiguration#stringRedisTemplate matched: + - @ConditionalOnSingleCandidate (types: org.springframework.data.redis.connection.RedisConnectionFactory; SearchStrategy: all) found a single bean 'redisConnectionFactory'; @ConditionalOnMissingBean (types: org.springframework.data.redis.core.StringRedisTemplate; SearchStrategy: all) did not find any beans (OnBeanCondition) + + RedisCacheConfiguration matched: + - @ConditionalOnClass found required class 'org.springframework.data.redis.connection.RedisConnectionFactory' (OnClassCondition) + - Cache org.springframework.boot.autoconfigure.cache.RedisCacheConfiguration automatic cache type (CacheCondition) + + RedisReactiveAutoConfiguration matched: + - @ConditionalOnClass found required classes 'org.springframework.data.redis.connection.ReactiveRedisConnectionFactory', 'org.springframework.data.redis.core.ReactiveRedisTemplate', 'reactor.core.publisher.Flux' (OnClassCondition) + + RedisReactiveAutoConfiguration#reactiveRedisTemplate matched: + - @ConditionalOnBean (types: org.springframework.data.redis.connection.ReactiveRedisConnectionFactory; SearchStrategy: all) found bean 'redisConnectionFactory'; @ConditionalOnMissingBean (names: reactiveRedisTemplate; SearchStrategy: all) did not find any beans (OnBeanCondition) + + RedisReactiveAutoConfiguration#reactiveStringRedisTemplate matched: + - @ConditionalOnBean (types: org.springframework.data.redis.connection.ReactiveRedisConnectionFactory; SearchStrategy: all) found bean 'redisConnectionFactory'; @ConditionalOnMissingBean (names: reactiveStringRedisTemplate; SearchStrategy: all) did not find any beans (OnBeanCondition) + + RedisRepositoriesAutoConfiguration matched: + - @ConditionalOnClass found required class 'org.springframework.data.redis.repository.configuration.EnableRedisRepositories' (OnClassCondition) + - @ConditionalOnProperty (spring.data.redis.repositories.enabled=true) matched (OnPropertyCondition) + - @ConditionalOnBean (types: org.springframework.data.redis.connection.RedisConnectionFactory; SearchStrategy: all) found bean 'redisConnectionFactory'; @ConditionalOnMissingBean (types: org.springframework.data.redis.repository.support.RedisRepositoryFactoryBean; SearchStrategy: all) did not find any beans (OnBeanCondition) + + RestClientAutoConfiguration matched: + - @ConditionalOnClass found required class 'org.springframework.web.client.RestClient' (OnClassCondition) + - NoneNestedConditions 0 matched 1 did not; NestedCondition on NotReactiveWebApplicationCondition.ReactiveWebApplication did not find reactive web application classes (NotReactiveWebApplicationCondition) + + RestClientAutoConfiguration#httpMessageConvertersRestClientCustomizer matched: + - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.web.client.HttpMessageConvertersRestClientCustomizer; SearchStrategy: all) did not find any beans (OnBeanCondition) + + RestClientAutoConfiguration#restClientBuilder matched: + - @ConditionalOnMissingBean (types: org.springframework.web.client.RestClient$Builder; SearchStrategy: all) did not find any beans (OnBeanCondition) + + RestClientAutoConfiguration#restClientBuilderConfigurer matched: + - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.web.client.RestClientBuilderConfigurer; SearchStrategy: all) did not find any beans (OnBeanCondition) + + RestClientAutoConfiguration#restClientSsl matched: + - @ConditionalOnBean (types: org.springframework.boot.ssl.SslBundles; SearchStrategy: all) found bean 'sslBundleRegistry'; @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.web.client.RestClientSsl; SearchStrategy: all) did not find any beans (OnBeanCondition) + + RestTemplateAutoConfiguration matched: + - @ConditionalOnClass found required class 'org.springframework.web.client.RestTemplate' (OnClassCondition) + - NoneNestedConditions 0 matched 1 did not; NestedCondition on NotReactiveWebApplicationCondition.ReactiveWebApplication did not find reactive web application classes (NotReactiveWebApplicationCondition) + + RestTemplateAutoConfiguration#restTemplateBuilder matched: + - @ConditionalOnMissingBean (types: org.springframework.boot.web.client.RestTemplateBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) + + ServletWebServerFactoryAutoConfiguration matched: + - @ConditionalOnClass found required class 'jakarta.servlet.ServletRequest' (OnClassCondition) + - found 'session' scope (OnWebApplicationCondition) + + ServletWebServerFactoryAutoConfiguration#tomcatServletWebServerFactoryCustomizer matched: + - @ConditionalOnClass found required class 'org.apache.catalina.startup.Tomcat' (OnClassCondition) + + ServletWebServerFactoryConfiguration.EmbeddedTomcat matched: + - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'org.apache.catalina.startup.Tomcat', 'org.apache.coyote.UpgradeProtocol' (OnClassCondition) + - @ConditionalOnMissingBean (types: org.springframework.boot.web.servlet.server.ServletWebServerFactory; SearchStrategy: current) did not find any beans (OnBeanCondition) + + SessionAutoConfiguration matched: + - @ConditionalOnClass found required class 'org.springframework.session.Session' (OnClassCondition) + - @ConditionalOnWebApplication (required) found 'session' scope (OnWebApplicationCondition) + + SessionAutoConfiguration.ServletSessionConfiguration matched: + - found 'session' scope (OnWebApplicationCondition) + + SessionAutoConfiguration.ServletSessionConfiguration#cookieSerializer matched: + - AnyNestedCondition 1 matched 1 did not; NestedCondition on SessionAutoConfiguration.DefaultCookieSerializerCondition.CookieHttpSessionIdResolverAvailable found non-matching nested conditions @ConditionalOnBean (types: org.springframework.session.web.http.CookieHttpSessionIdResolver; SearchStrategy: all) did not find any beans of type org.springframework.session.web.http.CookieHttpSessionIdResolver, @ConditionalOnBean (types: org.springframework.session.web.http.CookieHttpSessionIdResolver; SearchStrategy: all) did not find any beans of type org.springframework.session.web.http.CookieHttpSessionIdResolver; NestedCondition on SessionAutoConfiguration.DefaultCookieSerializerCondition.NoComponentsAvailable @ConditionalOnMissingBean (types: org.springframework.session.web.http.HttpSessionIdResolver,org.springframework.session.web.http.CookieSerializer; SearchStrategy: all) did not find any beans (SessionAutoConfiguration.DefaultCookieSerializerCondition) + + SessionAutoConfiguration.ServletSessionConfiguration.ServletSessionRepositoryConfiguration matched: + - @ConditionalOnMissingBean (types: org.springframework.session.SessionRepository; SearchStrategy: all) did not find any beans (OnBeanCondition) + + SimpleCacheConfiguration matched: + - Cache org.springframework.boot.autoconfigure.cache.SimpleCacheConfiguration automatic cache type (CacheCondition) + + SpringApplicationAdminJmxAutoConfiguration matched: + - @ConditionalOnProperty (spring.application.admin.enabled=true) matched (OnPropertyCondition) + + SpringApplicationAdminJmxAutoConfiguration#springApplicationAdminRegistrar matched: + - @ConditionalOnMissingBean (types: org.springframework.boot.admin.SpringApplicationAdminMXBeanRegistrar; SearchStrategy: all) did not find any beans (OnBeanCondition) + + SpringDataWebAutoConfiguration matched: + - @ConditionalOnClass found required classes 'org.springframework.data.web.PageableHandlerMethodArgumentResolver', 'org.springframework.web.servlet.config.annotation.WebMvcConfigurer' (OnClassCondition) + - found 'session' scope (OnWebApplicationCondition) + - @ConditionalOnMissingBean (types: org.springframework.data.web.PageableHandlerMethodArgumentResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) + + SpringDataWebAutoConfiguration#pageableCustomizer matched: + - @ConditionalOnMissingBean (types: org.springframework.data.web.config.PageableHandlerMethodArgumentResolverCustomizer; SearchStrategy: all) did not find any beans (OnBeanCondition) + + SpringDataWebAutoConfiguration#sortCustomizer matched: + - @ConditionalOnMissingBean (types: org.springframework.data.web.config.SortHandlerMethodArgumentResolverCustomizer; SearchStrategy: all) did not find any beans (OnBeanCondition) + + SpringDocConfigProperties matched: + - @ConditionalOnProperty (springdoc.api-docs.enabled) matched (OnPropertyCondition) + - @ConditionalOnBean (types: org.springdoc.core.configuration.SpringDocConfiguration; SearchStrategy: all) found bean 'org.springdoc.core.configuration.SpringDocConfiguration' (OnBeanCondition) + + SpringDocConfiguration matched: + - @ConditionalOnWebApplication (required) found 'session' scope (OnWebApplicationCondition) + - @ConditionalOnProperty (springdoc.api-docs.enabled) matched (OnPropertyCondition) + + SpringDocConfiguration#fileSupportConverter matched: + - @ConditionalOnMissingBean (types: org.springdoc.core.converters.FileSupportConverter; SearchStrategy: all) did not find any beans (OnBeanCondition) + + SpringDocConfiguration#openAPIBuilder matched: + - @ConditionalOnMissingBean (types: org.springdoc.core.service.OpenAPIService; SearchStrategy: all) did not find any beans (OnBeanCondition) + + SpringDocConfiguration#operationBuilder matched: + - @ConditionalOnMissingBean (types: org.springdoc.core.service.OperationService; SearchStrategy: all) did not find any beans (OnBeanCondition) + + SpringDocConfiguration#parameterBuilder matched: + - @ConditionalOnMissingBean (types: org.springdoc.core.service.GenericParameterService; SearchStrategy: all) did not find any beans (OnBeanCondition) + + SpringDocConfiguration#polymorphicModelConverter matched: + - @ConditionalOnProperty (springdoc.model-converters.polymorphic-converter.enabled) matched (OnPropertyCondition) + - @ConditionalOnMissingBean (types: org.springdoc.core.converters.PolymorphicModelConverter; SearchStrategy: all) did not find any beans (OnBeanCondition) + + SpringDocConfiguration#requestBodyBuilder matched: + - @ConditionalOnMissingBean (types: org.springdoc.core.service.RequestBodyService; SearchStrategy: all) did not find any beans (OnBeanCondition) + + SpringDocConfiguration#responseSupportConverter matched: + - @ConditionalOnMissingBean (types: org.springdoc.core.converters.ResponseSupportConverter; SearchStrategy: all) did not find any beans (OnBeanCondition) + + SpringDocConfiguration#schemaPropertyDeprecatingConverter matched: + - @ConditionalOnProperty (springdoc.model-converters.deprecating-converter.enabled) matched (OnPropertyCondition) + - @ConditionalOnMissingBean (types: org.springdoc.core.converters.SchemaPropertyDeprecatingConverter; SearchStrategy: all) did not find any beans (OnBeanCondition) + + SpringDocConfiguration#securityParser matched: + - @ConditionalOnMissingBean (types: org.springdoc.core.service.SecurityService; SearchStrategy: all) did not find any beans (OnBeanCondition) + + SpringDocConfiguration#springDocCustomizers matched: + - @ConditionalOnMissingBean (types: org.springdoc.core.customizers.SpringDocCustomizers; SearchStrategy: all) did not find any beans (OnBeanCondition) + + SpringDocConfiguration#springDocProviders matched: + - @ConditionalOnMissingBean (types: org.springdoc.core.providers.SpringDocProviders; SearchStrategy: all) did not find any beans (OnBeanCondition) + + SpringDocConfiguration#springdocBeanFactoryPostProcessor matched: + - @ConditionalOnClass found required class 'org.springframework.boot.context.properties.bind.BindResult' (OnClassCondition) + - AnyNestedCondition 1 matched 1 did not; NestedCondition on CacheOrGroupedOpenApiCondition.OnCacheDisabled found non-matching nested conditions @ConditionalOnProperty (springdoc.cache.disabled) did not find property 'springdoc.cache.disabled'; NestedCondition on CacheOrGroupedOpenApiCondition.OnMultipleOpenApiSupportCondition AnyNestedCondition 1 matched 1 did not; NestedCondition on MultipleOpenApiSupportCondition.OnActuatorDifferentPort @ConditionalOnProperty (springdoc.show-actuator) did not find property 'springdoc.show-actuator'; NestedCondition on MultipleOpenApiSupportCondition.OnMultipleOpenApiSupportCondition AnyNestedCondition 1 matched 1 did not; NestedCondition on MultipleOpenApiGroupsCondition.OnGroupConfigProperty @ConditionalOnProperty (springdoc.group-configs[0].group) matched; NestedCondition on MultipleOpenApiGroupsCondition.OnGroupedOpenApiBean @ConditionalOnBean (types: org.springdoc.core.models.GroupedOpenApi; SearchStrategy: all) did not find any beans of type org.springdoc.core.models.GroupedOpenApi (CacheOrGroupedOpenApiCondition) + + SpringDocConfiguration#springdocObjectMapperProvider matched: + - @ConditionalOnMissingBean (types: org.springdoc.core.providers.ObjectMapperProvider; SearchStrategy: all) did not find any beans (OnBeanCondition) + + SpringDocConfiguration.QuerydslProvider matched: + - @ConditionalOnClass found required class 'org.springframework.data.querydsl.binding.QuerydslBindingsFactory' (OnClassCondition) + + SpringDocConfiguration.QuerydslProvider#queryDslQuerydslPredicateOperationCustomizer matched: + - @ConditionalOnMissingBean (types: org.springdoc.core.customizers.QuerydslPredicateOperationCustomizer; SearchStrategy: all) did not find any beans (OnBeanCondition) + + SpringDocConfiguration.SpringDocSpringDataWebPropertiesProvider matched: + - @ConditionalOnClass found required class 'org.springframework.boot.autoconfigure.data.web.SpringDataWebProperties' (OnClassCondition) + + SpringDocConfiguration.SpringDocSpringDataWebPropertiesProvider#springDataWebPropertiesProvider matched: + - @ConditionalOnMissingBean (types: org.springdoc.core.providers.SpringDataWebPropertiesProvider; SearchStrategy: all) did not find any beans (OnBeanCondition) + + SpringDocConfiguration.SpringDocWebFluxSupportConfiguration matched: + - @ConditionalOnClass found required class 'reactor.core.publisher.Flux' (OnClassCondition) + + SpringDocConfiguration.SpringDocWebFluxSupportConfiguration#webFluxSupportConverter matched: + - @ConditionalOnMissingBean (types: org.springdoc.core.converters.WebFluxSupportConverter; SearchStrategy: all) did not find any beans (OnBeanCondition) + + SpringDocConfiguration.WebConversionServiceConfiguration matched: + - @ConditionalOnClass found required class 'org.springframework.boot.autoconfigure.web.format.WebConversionService' (OnClassCondition) + + SpringDocPageableConfiguration matched: + - @ConditionalOnClass found required class 'org.springframework.data.domain.Pageable' (OnClassCondition) + - @ConditionalOnWebApplication (required) found 'session' scope (OnWebApplicationCondition) + - @ConditionalOnProperty (springdoc.api-docs.enabled) matched (OnPropertyCondition) + - @ConditionalOnBean (types: org.springdoc.core.configuration.SpringDocConfiguration; SearchStrategy: all) found bean 'org.springdoc.core.configuration.SpringDocConfiguration' (OnBeanCondition) + + SpringDocPageableConfiguration#delegatingMethodParameterCustomizer matched: + - @ConditionalOnMissingBean (types: org.springdoc.core.customizers.DelegatingMethodParameterCustomizer; SearchStrategy: all) did not find any beans (OnBeanCondition) + + SpringDocPageableConfiguration#pageableOpenAPIConverter matched: + - @ConditionalOnProperty (springdoc.model-converters.pageable-converter.enabled) matched (OnPropertyCondition) + - @ConditionalOnMissingBean (types: org.springdoc.core.converters.PageableOpenAPIConverter; SearchStrategy: all) did not find any beans (OnBeanCondition) + + SpringDocSortConfiguration matched: + - @ConditionalOnClass found required class 'org.springframework.data.domain.Sort' (OnClassCondition) + - @ConditionalOnWebApplication (required) found 'session' scope (OnWebApplicationCondition) + - @ConditionalOnProperty (springdoc.api-docs.enabled) matched (OnPropertyCondition) + - @ConditionalOnBean (types: org.springdoc.core.configuration.SpringDocConfiguration; SearchStrategy: all) found bean 'org.springdoc.core.configuration.SpringDocConfiguration' (OnBeanCondition) + + SpringDocSortConfiguration#sortOpenAPIConverter matched: + - @ConditionalOnProperty (springdoc.model-converters.sort-converter.enabled) matched (OnPropertyCondition) + - @ConditionalOnMissingBean (types: org.springdoc.core.converters.SortOpenAPIConverter; SearchStrategy: all) did not find any beans (OnBeanCondition) + + SpringDocUIConfiguration matched: + - @ConditionalOnWebApplication (required) found 'session' scope (OnWebApplicationCondition) + - @ConditionalOnBean (types: org.springdoc.core.configuration.SpringDocConfiguration; SearchStrategy: all) found bean 'org.springdoc.core.configuration.SpringDocConfiguration' (OnBeanCondition) + + SpringDocWebMvcConfiguration matched: + - found 'session' scope (OnWebApplicationCondition) + - @ConditionalOnProperty (springdoc.api-docs.enabled) matched (OnPropertyCondition) + - @ConditionalOnBean (types: org.springdoc.core.configuration.SpringDocConfiguration; SearchStrategy: all) found bean 'org.springdoc.core.configuration.SpringDocConfiguration' (OnBeanCondition) + + SpringDocWebMvcConfiguration#openApiResource matched: + - @ConditionalOnProperty (springdoc.use-management-port=false) matched (OnPropertyCondition) + - @ConditionalOnMissingBean (types: org.springdoc.webmvc.api.OpenApiWebMvcResource; SearchStrategy: all) did not find any beans (OnBeanCondition) + + SpringDocWebMvcConfiguration#requestBuilder matched: + - @ConditionalOnMissingBean (types: org.springdoc.webmvc.core.service.RequestService; SearchStrategy: all) did not find any beans (OnBeanCondition) + + SpringDocWebMvcConfiguration#responseBuilder matched: + - @ConditionalOnMissingBean (types: org.springdoc.core.service.GenericResponseService; SearchStrategy: all) did not find any beans (OnBeanCondition) + + SpringDocWebMvcConfiguration#springWebProvider matched: + - @ConditionalOnMissingBean (types: org.springdoc.core.providers.SpringWebProvider; SearchStrategy: all) did not find any beans (OnBeanCondition) + + SpringDocWebMvcConfiguration.SpringDocWebMvcRouterConfiguration matched: + - @ConditionalOnClass found required class 'org.springframework.web.servlet.function.RouterFunction' (OnClassCondition) + + SpringDocWebMvcConfiguration.SpringDocWebMvcRouterConfiguration#routerFunctionProvider matched: + - @ConditionalOnMissingBean (types: org.springdoc.webmvc.core.providers.RouterFunctionWebMvcProvider; SearchStrategy: all) did not find any beans (OnBeanCondition) + + SqlInitializationAutoConfiguration matched: + - @ConditionalOnProperty (spring.sql.init.enabled) matched (OnPropertyCondition) + - NoneNestedConditions 0 matched 1 did not; NestedCondition on SqlInitializationAutoConfiguration.SqlInitializationModeCondition.ModeIsNever @ConditionalOnProperty (spring.sql.init.mode=never) did not find property 'mode' (SqlInitializationAutoConfiguration.SqlInitializationModeCondition) + + SslAutoConfiguration#sslBundleRegistry matched: + - @ConditionalOnMissingBean (types: org.springframework.boot.ssl.SslBundleRegistry,org.springframework.boot.ssl.SslBundles; SearchStrategy: all) did not find any beans (OnBeanCondition) + + SwaggerConfig matched: + - found 'session' scope (OnWebApplicationCondition) + - @ConditionalOnProperty (springdoc.swagger-ui.enabled) matched (OnPropertyCondition) + - @ConditionalOnBean (types: org.springdoc.core.configuration.SpringDocConfiguration; SearchStrategy: all) found bean 'org.springdoc.core.configuration.SpringDocConfiguration' (OnBeanCondition) + + SwaggerConfig#indexPageTransformer matched: + - @ConditionalOnMissingBean (types: org.springdoc.webmvc.ui.SwaggerIndexTransformer; SearchStrategy: all) did not find any beans (OnBeanCondition) + + SwaggerConfig#swaggerConfigResource matched: + - @ConditionalOnProperty (springdoc.use-management-port=false) matched (OnPropertyCondition) + - @ConditionalOnMissingBean (types: org.springdoc.webmvc.ui.SwaggerConfigResource; SearchStrategy: all) did not find any beans (OnBeanCondition) + + SwaggerConfig#swaggerResourceResolver matched: + - @ConditionalOnMissingBean (types: org.springdoc.webmvc.ui.SwaggerResourceResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) + + SwaggerConfig#swaggerWebMvcConfigurer matched: + - @ConditionalOnMissingBean (types: org.springdoc.webmvc.ui.SwaggerWebMvcConfigurer; SearchStrategy: all) did not find any beans (OnBeanCondition) + + SwaggerConfig#swaggerWelcome matched: + - @ConditionalOnProperty (springdoc.use-management-port=false) matched (OnPropertyCondition) + - @ConditionalOnMissingBean (types: org.springdoc.webmvc.ui.SwaggerWelcomeWebMvc; SearchStrategy: all) did not find any beans (OnBeanCondition) + + SwaggerUiConfigParameters matched: + - @ConditionalOnProperty (springdoc.swagger-ui.enabled) matched (OnPropertyCondition) + - @ConditionalOnBean (types: org.springdoc.core.configuration.SpringDocConfiguration; SearchStrategy: all) found bean 'org.springdoc.core.configuration.SpringDocConfiguration' (OnBeanCondition) + + SwaggerUiConfigProperties matched: + - @ConditionalOnProperty (springdoc.swagger-ui.enabled) matched (OnPropertyCondition) + - @ConditionalOnBean (types: org.springdoc.core.configuration.SpringDocConfiguration; SearchStrategy: all) found bean 'org.springdoc.core.configuration.SpringDocConfiguration' (OnBeanCondition) + + SwaggerUiOAuthProperties matched: + - @ConditionalOnProperty (springdoc.swagger-ui.enabled) matched (OnPropertyCondition) + - @ConditionalOnBean (types: org.springdoc.core.configuration.SpringDocConfiguration; SearchStrategy: all) found bean 'org.springdoc.core.configuration.SpringDocConfiguration' (OnBeanCondition) + + TaskExecutionAutoConfiguration matched: + - @ConditionalOnClass found required class 'org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor' (OnClassCondition) + + TaskExecutorConfigurations.SimpleAsyncTaskExecutorBuilderConfiguration#simpleAsyncTaskExecutorBuilder matched: + - @ConditionalOnMissingBean (types: org.springframework.boot.task.SimpleAsyncTaskExecutorBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) + - @ConditionalOnThreading found PLATFORM (OnThreadingCondition) + + TaskExecutorConfigurations.TaskExecutorBuilderConfiguration#taskExecutorBuilder matched: + - @ConditionalOnMissingBean (types: org.springframework.boot.task.TaskExecutorBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) + + TaskExecutorConfigurations.TaskExecutorConfiguration matched: + - @ConditionalOnMissingBean (types: java.util.concurrent.Executor; SearchStrategy: all) did not find any beans (OnBeanCondition) + + TaskExecutorConfigurations.TaskExecutorConfiguration#applicationTaskExecutor matched: + - @ConditionalOnThreading found PLATFORM (OnThreadingCondition) + + TaskExecutorConfigurations.ThreadPoolTaskExecutorBuilderConfiguration#threadPoolTaskExecutorBuilder matched: + - @ConditionalOnMissingBean (types: org.springframework.boot.task.TaskExecutorBuilder,org.springframework.boot.task.ThreadPoolTaskExecutorBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) + + TaskSchedulingAutoConfiguration matched: + - @ConditionalOnClass found required class 'org.springframework.scheduling.concurrent.ThreadPoolTaskScheduler' (OnClassCondition) + + TaskSchedulingConfigurations.SimpleAsyncTaskSchedulerBuilderConfiguration#simpleAsyncTaskSchedulerBuilder matched: + - @ConditionalOnMissingBean (types: org.springframework.boot.task.SimpleAsyncTaskSchedulerBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) + - @ConditionalOnThreading found PLATFORM (OnThreadingCondition) + + TaskSchedulingConfigurations.TaskSchedulerBuilderConfiguration#taskSchedulerBuilder matched: + - @ConditionalOnMissingBean (types: org.springframework.boot.task.TaskSchedulerBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) + + TaskSchedulingConfigurations.ThreadPoolTaskSchedulerBuilderConfiguration#threadPoolTaskSchedulerBuilder matched: + - @ConditionalOnMissingBean (types: org.springframework.boot.task.TaskSchedulerBuilder,org.springframework.boot.task.ThreadPoolTaskSchedulerBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) + + TransactionAutoConfiguration matched: + - @ConditionalOnClass found required class 'org.springframework.transaction.PlatformTransactionManager' (OnClassCondition) + + TransactionAutoConfiguration.EnableTransactionManagementConfiguration matched: + - @ConditionalOnBean (types: org.springframework.transaction.TransactionManager; SearchStrategy: all) found bean 'transactionManager'; @ConditionalOnMissingBean (types: org.springframework.transaction.annotation.AbstractTransactionManagementConfiguration; SearchStrategy: all) did not find any beans (OnBeanCondition) + + TransactionAutoConfiguration.EnableTransactionManagementConfiguration.CglibAutoProxyConfiguration matched: + - @ConditionalOnProperty (spring.aop.proxy-target-class=true) matched (OnPropertyCondition) + + TransactionAutoConfiguration.TransactionTemplateConfiguration matched: + - @ConditionalOnSingleCandidate (types: org.springframework.transaction.PlatformTransactionManager; SearchStrategy: all) found a single bean 'transactionManager' (OnBeanCondition) + + TransactionAutoConfiguration.TransactionTemplateConfiguration#transactionTemplate matched: + - @ConditionalOnMissingBean (types: org.springframework.transaction.support.TransactionOperations; SearchStrategy: all) did not find any beans (OnBeanCondition) + + TransactionManagerCustomizationAutoConfiguration matched: + - @ConditionalOnClass found required class 'org.springframework.transaction.PlatformTransactionManager' (OnClassCondition) + + TransactionManagerCustomizationAutoConfiguration#platformTransactionManagerCustomizers matched: + - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.transaction.TransactionManagerCustomizers; SearchStrategy: all) did not find any beans (OnBeanCondition) + + WebMvcAutoConfiguration matched: + - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'org.springframework.web.servlet.DispatcherServlet', 'org.springframework.web.servlet.config.annotation.WebMvcConfigurer' (OnClassCondition) + - found 'session' scope (OnWebApplicationCondition) + - @ConditionalOnMissingBean (types: org.springframework.web.servlet.config.annotation.WebMvcConfigurationSupport; SearchStrategy: all) did not find any beans (OnBeanCondition) + + WebMvcAutoConfiguration#formContentFilter matched: + - @ConditionalOnProperty (spring.mvc.formcontent.filter.enabled) matched (OnPropertyCondition) + - @ConditionalOnMissingBean (types: org.springframework.web.filter.FormContentFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) + + WebMvcAutoConfiguration.EnableWebMvcConfiguration#flashMapManager matched: + - @ConditionalOnMissingBean (names: flashMapManager; SearchStrategy: all) did not find any beans (OnBeanCondition) + + WebMvcAutoConfiguration.EnableWebMvcConfiguration#localeResolver matched: + - @ConditionalOnMissingBean (names: localeResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) + + WebMvcAutoConfiguration.EnableWebMvcConfiguration#themeResolver matched: + - @ConditionalOnMissingBean (names: themeResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) + + WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#defaultViewResolver matched: + - @ConditionalOnMissingBean (types: org.springframework.web.servlet.view.InternalResourceViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) + + WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#requestContextFilter matched: + - @ConditionalOnMissingBean (types: org.springframework.web.context.request.RequestContextListener,org.springframework.web.filter.RequestContextFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) + + WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#viewResolver matched: + - @ConditionalOnBean (types: org.springframework.web.servlet.ViewResolver; SearchStrategy: all) found beans 'defaultViewResolver', 'beanNameViewResolver', 'mvcViewResolver'; @ConditionalOnMissingBean (names: viewResolver types: org.springframework.web.servlet.view.ContentNegotiatingViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) + + WebSocketServletAutoConfiguration matched: + - @ConditionalOnClass found required classes 'jakarta.servlet.Servlet', 'jakarta.websocket.server.ServerContainer' (OnClassCondition) + - found 'session' scope (OnWebApplicationCondition) + + WebSocketServletAutoConfiguration.TomcatWebSocketConfiguration matched: + - @ConditionalOnClass found required classes 'org.apache.catalina.startup.Tomcat', 'org.apache.tomcat.websocket.server.WsSci' (OnClassCondition) + + WebSocketServletAutoConfiguration.TomcatWebSocketConfiguration#websocketServletWebServerCustomizer matched: + - @ConditionalOnMissingBean (names: websocketServletWebServerCustomizer; SearchStrategy: all) did not find any beans (OnBeanCondition) + + +Negative matches: +----------------- + + ActiveMQAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'jakarta.jms.ConnectionFactory' (OnClassCondition) + + AopAutoConfiguration.AspectJAutoProxyingConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'org.aspectj.weaver.Advice' (OnClassCondition) + + ArtemisAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'jakarta.jms.ConnectionFactory' (OnClassCondition) + + BatchAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'org.springframework.batch.core.launch.JobLauncher' (OnClassCondition) + + Cache2kCacheConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'org.cache2k.Cache2kBuilder' (OnClassCondition) + + CacheAutoConfiguration: + Did not match: + - @ConditionalOnBean (types: org.springframework.cache.interceptor.CacheAspectSupport; SearchStrategy: all) did not find any beans of type org.springframework.cache.interceptor.CacheAspectSupport (OnBeanCondition) + Matched: + - @ConditionalOnClass found required class 'org.springframework.cache.CacheManager' (OnClassCondition) + + CacheAutoConfiguration.CacheManagerEntityManagerFactoryDependsOnPostProcessor: + Did not match: + - @ConditionalOnClass did not find required class 'org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean' (OnClassCondition) + - Ancestor org.springframework.boot.autoconfigure.cache.CacheAutoConfiguration did not match (ConditionEvaluationReport.AncestorsMatchedCondition) + + CaffeineCacheConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'com.github.benmanes.caffeine.cache.Caffeine' (OnClassCondition) + + CassandraAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) + + CassandraDataAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) + + CassandraReactiveDataAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) + + CassandraReactiveRepositoriesAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'org.springframework.data.cassandra.ReactiveSession' (OnClassCondition) + + CassandraRepositoriesAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) + + ClientHttpConnectorAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.function.client.WebClient' (OnClassCondition) + + CodecsAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.function.client.WebClient' (OnClassCondition) + + CouchbaseAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) + + CouchbaseCacheConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) + + CouchbaseDataAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Bucket' (OnClassCondition) + + CouchbaseReactiveDataAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) + + CouchbaseReactiveRepositoriesAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) + + CouchbaseRepositoriesAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Bucket' (OnClassCondition) + + DataSourceAutoConfiguration.EmbeddedDatabaseConfiguration: + Did not match: + - EmbeddedDataSource spring.datasource.url is set (DataSourceAutoConfiguration.EmbeddedDatabaseCondition) + + DataSourceCheckpointRestoreConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'org.crac.Resource' (OnClassCondition) + + DataSourceConfiguration.Dbcp2: + Did not match: + - @ConditionalOnClass did not find required class 'org.apache.commons.dbcp2.BasicDataSource' (OnClassCondition) + + DataSourceConfiguration.Generic: + Did not match: + - @ConditionalOnProperty (spring.datasource.type) did not find property 'spring.datasource.type' (OnPropertyCondition) + + DataSourceConfiguration.OracleUcp: + Did not match: + - @ConditionalOnClass did not find required classes 'oracle.ucp.jdbc.PoolDataSourceImpl', 'oracle.jdbc.OracleConnection' (OnClassCondition) + + DataSourceConfiguration.Tomcat: + Did not match: + - @ConditionalOnClass did not find required class 'org.apache.tomcat.jdbc.pool.DataSource' (OnClassCondition) + + DataSourceJmxConfiguration.TomcatDataSourceJmxConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'org.apache.tomcat.jdbc.pool.DataSourceProxy' (OnClassCondition) + + DataSourcePoolMetadataProvidersConfiguration.CommonsDbcp2PoolDataSourceMetadataProviderConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'org.apache.commons.dbcp2.BasicDataSource' (OnClassCondition) + + DataSourcePoolMetadataProvidersConfiguration.OracleUcpPoolDataSourceMetadataProviderConfiguration: + Did not match: + - @ConditionalOnClass did not find required classes 'oracle.ucp.jdbc.PoolDataSource', 'oracle.jdbc.OracleConnection' (OnClassCondition) + + DataSourcePoolMetadataProvidersConfiguration.TomcatDataSourcePoolMetadataProviderConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'org.apache.tomcat.jdbc.pool.DataSource' (OnClassCondition) + + DispatcherServletAutoConfiguration.DispatcherServletConfiguration#multipartResolver: + Did not match: + - @ConditionalOnBean (types: org.springframework.web.multipart.MultipartResolver; SearchStrategy: all) did not find any beans of type org.springframework.web.multipart.MultipartResolver (OnBeanCondition) + + ElasticsearchClientAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'co.elastic.clients.elasticsearch.ElasticsearchClient' (OnClassCondition) + + ElasticsearchDataAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'org.springframework.data.elasticsearch.client.elc.ElasticsearchTemplate' (OnClassCondition) + + ElasticsearchRepositoriesAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'org.springframework.data.elasticsearch.repository.ElasticsearchRepository' (OnClassCondition) + + ElasticsearchRestClientAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'org.elasticsearch.client.RestClientBuilder' (OnClassCondition) + + EmbeddedLdapAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'com.unboundid.ldap.listener.InMemoryDirectoryServer' (OnClassCondition) + + EmbeddedWebServerFactoryCustomizerAutoConfiguration.JettyWebServerFactoryCustomizerConfiguration: + Did not match: + - @ConditionalOnClass did not find required classes 'org.eclipse.jetty.server.Server', 'org.eclipse.jetty.util.Loader', 'org.eclipse.jetty.ee10.webapp.WebAppContext' (OnClassCondition) + + EmbeddedWebServerFactoryCustomizerAutoConfiguration.NettyWebServerFactoryCustomizerConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'reactor.netty.http.server.HttpServer' (OnClassCondition) + + EmbeddedWebServerFactoryCustomizerAutoConfiguration.TomcatWebServerFactoryCustomizerConfiguration#tomcatVirtualThreadsProtocolHandlerCustomizer: + Did not match: + - @ConditionalOnThreading did not find VIRTUAL (OnThreadingCondition) + + EmbeddedWebServerFactoryCustomizerAutoConfiguration.UndertowWebServerFactoryCustomizerConfiguration: + Did not match: + - @ConditionalOnClass did not find required classes 'io.undertow.Undertow', 'org.xnio.SslClientAuthMode' (OnClassCondition) + + ErrorWebFluxAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.config.WebFluxConfigurer' (OnClassCondition) + + FlywayAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'org.flywaydb.core.Flyway' (OnClassCondition) + + FreeMarkerAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'freemarker.template.Configuration' (OnClassCondition) + + GraphQlAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) + + GraphQlQueryByExampleAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) + + GraphQlQuerydslAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'com.querydsl.core.Query' (OnClassCondition) + + GraphQlRSocketAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) + + GraphQlReactiveQueryByExampleAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) + + GraphQlReactiveQuerydslAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'com.querydsl.core.Query' (OnClassCondition) + + GraphQlWebFluxAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) + + GraphQlWebFluxSecurityAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) + + GraphQlWebMvcAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) + + GraphQlWebMvcSecurityAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) + + GroovyTemplateAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'groovy.text.markup.MarkupTemplateEngine' (OnClassCondition) + + GsonAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'com.google.gson.Gson' (OnClassCondition) + + GsonHttpMessageConvertersConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'com.google.gson.Gson' (OnClassCondition) + + H2ConsoleAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'org.h2.server.web.JakartaWebServlet' (OnClassCondition) + + HazelcastAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'com.hazelcast.core.HazelcastInstance' (OnClassCondition) + + HazelcastCacheConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'com.hazelcast.core.HazelcastInstance' (OnClassCondition) + + HazelcastJpaDependencyAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'com.hazelcast.core.HazelcastInstance' (OnClassCondition) + + HazelcastSessionConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'org.springframework.session.hazelcast.HazelcastIndexedSessionRepository' (OnClassCondition) + + HibernateJpaAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'jakarta.persistence.EntityManager' (OnClassCondition) + + HttpHandlerAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.DispatcherHandler' (OnClassCondition) + + HypermediaAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'org.springframework.hateoas.EntityModel' (OnClassCondition) + + InfinispanCacheConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'org.infinispan.spring.embedded.provider.SpringEmbeddedCacheManager' (OnClassCondition) + + InfluxDbAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'org.influxdb.InfluxDB' (OnClassCondition) + + IntegrationAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'org.springframework.integration.config.EnableIntegration' (OnClassCondition) + + JCacheCacheConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'javax.cache.Caching' (OnClassCondition) + + JacksonHttpMessageConvertersConfiguration.MappingJackson2XmlHttpMessageConverterConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'com.fasterxml.jackson.dataformat.xml.XmlMapper' (OnClassCondition) + + JdbcSessionConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'org.springframework.session.jdbc.JdbcIndexedSessionRepository' (OnClassCondition) + + JedisConnectionConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'redis.clients.jedis.Jedis' (OnClassCondition) + + JerseyAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'org.glassfish.jersey.server.spring.SpringComponentProvider' (OnClassCondition) + + JmsAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'jakarta.jms.Message' (OnClassCondition) + + JndiConnectionFactoryAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'org.springframework.jms.core.JmsTemplate' (OnClassCondition) + + JndiDataSourceAutoConfiguration: + Did not match: + - @ConditionalOnProperty (spring.datasource.jndi-name) did not find property 'jndi-name' (OnPropertyCondition) + Matched: + - @ConditionalOnClass found required classes 'javax.sql.DataSource', 'org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseType' (OnClassCondition) + + JooqAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'org.jooq.DSLContext' (OnClassCondition) + + JpaRepositoriesAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'org.springframework.data.jpa.repository.JpaRepository' (OnClassCondition) + + JsonbAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'jakarta.json.bind.Jsonb' (OnClassCondition) + + JsonbHttpMessageConvertersConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'jakarta.json.bind.Jsonb' (OnClassCondition) + + JtaAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'jakarta.transaction.Transaction' (OnClassCondition) + + KafkaAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'org.springframework.kafka.core.KafkaTemplate' (OnClassCondition) + + Knife4jAutoConfiguration#corsFilter: + Did not match: + - @ConditionalOnProperty (knife4j.cors=true) did not find property 'knife4j.cors' (OnPropertyCondition) + + Knife4jAutoConfiguration#productionSecurityFilter: + Did not match: + - @ConditionalOnProperty (knife4j.production=true) did not find property 'knife4j.production' (OnPropertyCondition) + + Knife4jAutoConfiguration#securityBasicAuthFilter: + Did not match: + - @ConditionalOnProperty (knife4j.basic.enable=true) did not find property 'knife4j.basic.enable' (OnPropertyCondition) + + Knife4jInsightAutoConfiguration: + Did not match: + - @ConditionalOnProperty (knife4j.insight.enable=true) did not find property 'knife4j.insight.enable' (OnPropertyCondition) + + LdapAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'org.springframework.ldap.core.ContextSource' (OnClassCondition) + + LdapRepositoriesAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'org.springframework.data.ldap.repository.LdapRepository' (OnClassCondition) + + LettuceConnectionConfiguration#redisConnectionFactoryVirtualThreads: + Did not match: + - @ConditionalOnMissingBean (types: org.springframework.data.redis.connection.RedisConnectionFactory; SearchStrategy: all) found beans of type 'org.springframework.data.redis.connection.RedisConnectionFactory' redisConnectionFactory (OnBeanCondition) + + LiquibaseAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'liquibase.change.DatabaseChange' (OnClassCondition) + + MailSenderAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'jakarta.mail.internet.MimeMessage' (OnClassCondition) + + MailSenderValidatorAutoConfiguration: + Did not match: + - @ConditionalOnProperty (spring.mail.test-connection) did not find property 'test-connection' (OnPropertyCondition) + + MessageSourceAutoConfiguration: + Did not match: + - ResourceBundle did not find bundle with basename messages (MessageSourceAutoConfiguration.ResourceBundleCondition) + + MongoAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'com.mongodb.client.MongoClient' (OnClassCondition) + + MongoDataAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'com.mongodb.client.MongoClient' (OnClassCondition) + + MongoReactiveAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'com.mongodb.reactivestreams.client.MongoClient' (OnClassCondition) + + MongoReactiveDataAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'com.mongodb.reactivestreams.client.MongoClient' (OnClassCondition) + + MongoReactiveRepositoriesAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'com.mongodb.reactivestreams.client.MongoClient' (OnClassCondition) + + MongoRepositoriesAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'com.mongodb.client.MongoClient' (OnClassCondition) + + MongoSessionConfiguration: + Did not match: + - @ConditionalOnClass did not find required classes 'org.springframework.data.mongodb.core.MongoOperations', 'org.springframework.session.data.mongo.MongoIndexedSessionRepository' (OnClassCondition) + + MultipleOpenApiSupportConfiguration.SpringDocWebMvcActuatorDifferentConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'org.springframework.boot.actuate.endpoint.web.servlet.WebMvcEndpointHandlerMapping' (OnClassCondition) + + MustacheAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'com.samskivert.mustache.Mustache' (OnClassCondition) + + MybatisLanguageDriverAutoConfiguration.FreeMarkerConfiguration: + Did not match: + - @ConditionalOnClass did not find required classes 'org.mybatis.scripting.freemarker.FreeMarkerLanguageDriver', 'org.mybatis.scripting.freemarker.FreeMarkerLanguageDriverConfig' (OnClassCondition) + + MybatisLanguageDriverAutoConfiguration.LegacyFreeMarkerConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'org.mybatis.scripting.freemarker.FreeMarkerLanguageDriver' (OnClassCondition) + + MybatisLanguageDriverAutoConfiguration.LegacyVelocityConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'org.mybatis.scripting.velocity.Driver' (OnClassCondition) + + MybatisLanguageDriverAutoConfiguration.ThymeleafConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'org.mybatis.scripting.thymeleaf.ThymeleafLanguageDriver' (OnClassCondition) + + MybatisLanguageDriverAutoConfiguration.VelocityConfiguration: + Did not match: + - @ConditionalOnClass did not find required classes 'org.mybatis.scripting.velocity.VelocityLanguageDriver', 'org.mybatis.scripting.velocity.VelocityLanguageDriverConfig' (OnClassCondition) + + Neo4jAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) + + Neo4jDataAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) + + Neo4jReactiveDataAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) + + Neo4jReactiveRepositoriesAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) + + Neo4jRepositoriesAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) + + OAuth2AuthorizationServerAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'org.springframework.security.oauth2.server.authorization.OAuth2Authorization' (OnClassCondition) + + OAuth2AuthorizationServerJwtAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'org.springframework.security.oauth2.server.authorization.OAuth2Authorization' (OnClassCondition) + + OAuth2ClientAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'org.springframework.security.config.annotation.web.configuration.EnableWebSecurity' (OnClassCondition) + + OAuth2ResourceServerAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'org.springframework.security.oauth2.server.resource.authentication.BearerTokenAuthenticationToken' (OnClassCondition) + + ProjectInfoAutoConfiguration#buildProperties: + Did not match: + - @ConditionalOnResource did not find resource '${spring.info.build.location:classpath:META-INF/build-info.properties}' (OnResourceCondition) + + ProjectInfoAutoConfiguration#gitProperties: + Did not match: + - GitResource did not find git info at classpath:git.properties (ProjectInfoAutoConfiguration.GitResourceAvailableCondition) + + PulsarAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'org.apache.pulsar.client.api.PulsarClient' (OnClassCondition) + + PulsarReactiveAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'org.apache.pulsar.client.api.PulsarClient' (OnClassCondition) + + QuartzAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'org.quartz.Scheduler' (OnClassCondition) + + R2dbcAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'io.r2dbc.spi.ConnectionFactory' (OnClassCondition) + + R2dbcDataAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'org.springframework.data.r2dbc.core.R2dbcEntityTemplate' (OnClassCondition) + + R2dbcInitializationConfiguration: + Did not match: + - @ConditionalOnClass did not find required classes 'io.r2dbc.spi.ConnectionFactory', 'org.springframework.r2dbc.connection.init.DatabasePopulator' (OnClassCondition) + + R2dbcRepositoriesAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'io.r2dbc.spi.ConnectionFactory' (OnClassCondition) + + R2dbcTransactionManagerAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'org.springframework.r2dbc.connection.R2dbcTransactionManager' (OnClassCondition) + + RSocketGraphQlClientAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'graphql.GraphQL' (OnClassCondition) + + RSocketMessagingAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'io.rsocket.RSocket' (OnClassCondition) + + RSocketRequesterAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'io.rsocket.RSocket' (OnClassCondition) + + RSocketSecurityAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'org.springframework.security.rsocket.core.SecuritySocketAcceptorInterceptor' (OnClassCondition) + + RSocketServerAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'io.rsocket.core.RSocketServer' (OnClassCondition) + + RSocketStrategiesAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'io.rsocket.RSocket' (OnClassCondition) + + RabbitAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'com.rabbitmq.client.Channel' (OnClassCondition) + + ReactiveElasticsearchClientAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'co.elastic.clients.transport.ElasticsearchTransport' (OnClassCondition) + + ReactiveElasticsearchRepositoriesAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'org.springframework.data.elasticsearch.client.elc.ReactiveElasticsearchClient' (OnClassCondition) + + ReactiveMultipartAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.config.WebFluxConfigurer' (OnClassCondition) + + ReactiveOAuth2ClientAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'org.springframework.security.config.annotation.web.reactive.EnableWebFluxSecurity' (OnClassCondition) + + ReactiveOAuth2ResourceServerAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'org.springframework.security.config.annotation.web.reactive.EnableWebFluxSecurity' (OnClassCondition) + + ReactiveSecurityAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'org.springframework.security.config.annotation.web.reactive.EnableWebFluxSecurity' (OnClassCondition) + + ReactiveUserDetailsServiceAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'org.springframework.security.authentication.ReactiveAuthenticationManager' (OnClassCondition) + + ReactiveWebServerFactoryAutoConfiguration: + Did not match: + - @ConditionalOnWebApplication did not find reactive web application classes (OnWebApplicationCondition) + + RedisSessionConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'org.springframework.session.data.redis.RedisIndexedSessionRepository' (OnClassCondition) + + RepositoryRestMvcAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'org.springframework.data.rest.webmvc.config.RepositoryRestMvcConfiguration' (OnClassCondition) + + SaOAuth2BeanInject: + Did not match: + - @ConditionalOnClass did not find required class 'cn.dev33.satoken.oauth2.SaOAuth2Manager' (OnClassCondition) + + SaOAuth2BeanRegister: + Did not match: + - @ConditionalOnClass did not find required class 'cn.dev33.satoken.oauth2.SaOAuth2Manager' (OnClassCondition) + + SaSsoBeanInject: + Did not match: + - @ConditionalOnClass did not find required class 'cn.dev33.satoken.sso.SaSsoManager' (OnClassCondition) + + SaSsoBeanRegister: + Did not match: + - @ConditionalOnClass did not find required class 'cn.dev33.satoken.sso.SaSsoManager' (OnClassCondition) + + Saml2RelyingPartyAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'org.springframework.security.saml2.provider.service.registration.RelyingPartyRegistrationRepository' (OnClassCondition) + + SecurityAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'org.springframework.security.authentication.DefaultAuthenticationEventPublisher' (OnClassCondition) + + SecurityFilterAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'org.springframework.security.config.http.SessionCreationPolicy' (OnClassCondition) + + SendGridAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'com.sendgrid.SendGrid' (OnClassCondition) + + ServletWebServerFactoryAutoConfiguration.ForwardedHeaderFilterConfiguration: + Did not match: + - @ConditionalOnProperty (server.forward-headers-strategy=framework) did not find property 'server.forward-headers-strategy' (OnPropertyCondition) + + ServletWebServerFactoryConfiguration.EmbeddedJetty: + Did not match: + - @ConditionalOnClass did not find required classes 'org.eclipse.jetty.server.Server', 'org.eclipse.jetty.util.Loader', 'org.eclipse.jetty.ee10.webapp.WebAppContext' (OnClassCondition) + + ServletWebServerFactoryConfiguration.EmbeddedUndertow: + Did not match: + - @ConditionalOnClass did not find required classes 'io.undertow.Undertow', 'org.xnio.SslClientAuthMode' (OnClassCondition) + + SessionAutoConfiguration.ReactiveSessionConfiguration: + Did not match: + - did not find reactive web application classes (OnWebApplicationCondition) + + SessionAutoConfiguration.ServletSessionConfiguration.RememberMeServicesConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'org.springframework.security.web.authentication.RememberMeServices' (OnClassCondition) + + SessionRepositoryFilterConfiguration: + Did not match: + - @ConditionalOnBean (types: org.springframework.session.web.http.SessionRepositoryFilter; SearchStrategy: all) did not find any beans of type org.springframework.session.web.http.SessionRepositoryFilter (OnBeanCondition) + + SpringDocConfiguration#propertiesResolverForSchema: + Did not match: + - @ConditionalOnProperty (springdoc.api-docs.resolve-schema-properties) did not find property 'springdoc.api-docs.resolve-schema-properties' (OnPropertyCondition) + + SpringDocConfiguration#propertyCustomizingConverter: + Did not match: + - @ConditionalOnBean (types: org.springdoc.core.customizers.PropertyCustomizer; SearchStrategy: all) did not find any beans of type org.springdoc.core.customizers.PropertyCustomizer (OnBeanCondition) + + SpringDocConfiguration#springdocBeanFactoryPostProcessor2: + Did not match: + - @ConditionalOnMissingClass found unwanted class 'org.springframework.boot.context.properties.bind.BindResult' (OnClassCondition) + + SpringDocConfiguration.SpringDocActuatorConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' (OnClassCondition) + + SpringDocConfiguration.SpringDocRepositoryRestConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'org.springframework.data.rest.core.config.RepositoryRestConfiguration' (OnClassCondition) + + SpringDocDataRestConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'org.springframework.data.rest.core.config.RepositoryRestConfiguration' (OnClassCondition) + + SpringDocFunctionCatalogConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'org.springframework.cloud.function.web.function.FunctionEndpointInitializer' (OnClassCondition) + + SpringDocGroovyConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'groovy.lang.MetaClass' (OnClassCondition) + + SpringDocHateoasConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'org.springframework.hateoas.server.LinkRelationProvider' (OnClassCondition) + + SpringDocJacksonKotlinModuleConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'com.fasterxml.jackson.module.kotlin.KotlinModule' (OnClassCondition) + + SpringDocJavadocConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'com.github.therapi.runtimejavadoc.CommentFormatter' (OnClassCondition) + + SpringDocKotlinConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'kotlin.coroutines.Continuation' (OnClassCondition) + + SpringDocKotlinxConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'kotlinx.coroutines.flow.Flow' (OnClassCondition) + + SpringDocSecurityConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'org.springframework.security.web.SecurityFilterChain' (OnClassCondition) + + SpringDocSortConfiguration#delegatingMethodParameterCustomizer: + Did not match: + - @ConditionalOnMissingBean (types: org.springdoc.core.customizers.DelegatingMethodParameterCustomizer; SearchStrategy: all) found beans of type 'org.springdoc.core.customizers.DelegatingMethodParameterCustomizer' delegatingMethodParameterCustomizer (OnBeanCondition) + + SpringDocWebMvcConfiguration.SpringDocWebMvcActuatorConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'org.springframework.boot.actuate.endpoint.web.servlet.WebMvcEndpointHandlerMapping' (OnClassCondition) + + SwaggerConfig#springWebProvider: + Did not match: + - @ConditionalOnMissingBean (types: org.springdoc.core.providers.SpringWebProvider; SearchStrategy: all) found beans of type 'org.springdoc.core.providers.SpringWebProvider' springWebProvider (OnBeanCondition) + + SwaggerConfig#swaggerUiConfigParameters: + Did not match: + - @ConditionalOnMissingBean (types: org.springdoc.core.properties.SwaggerUiConfigParameters; SearchStrategy: all) found beans of type 'org.springdoc.core.properties.SwaggerUiConfigParameters' org.springdoc.core.properties.SwaggerUiConfigParameters (OnBeanCondition) + + SwaggerConfig#swaggerUiHome: + Did not match: + - @ConditionalOnProperty (springdoc.swagger-ui.use-root-path=true) did not find property 'springdoc.swagger-ui.use-root-path' (OnPropertyCondition) + + SwaggerConfig.SwaggerActuatorWelcomeConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'org.springframework.boot.actuate.endpoint.web.servlet.WebMvcEndpointHandlerMapping' (OnClassCondition) + + TaskExecutorConfigurations.SimpleAsyncTaskExecutorBuilderConfiguration#simpleAsyncTaskExecutorBuilderVirtualThreads: + Did not match: + - @ConditionalOnMissingBean (types: org.springframework.boot.task.SimpleAsyncTaskExecutorBuilder; SearchStrategy: all) found beans of type 'org.springframework.boot.task.SimpleAsyncTaskExecutorBuilder' simpleAsyncTaskExecutorBuilder (OnBeanCondition) + + TaskExecutorConfigurations.TaskExecutorConfiguration#applicationTaskExecutorVirtualThreads: + Did not match: + - @ConditionalOnThreading did not find VIRTUAL (OnThreadingCondition) + + TaskSchedulingAutoConfiguration#scheduledBeanLazyInitializationExcludeFilter: + Did not match: + - @ConditionalOnBean (names: org.springframework.context.annotation.internalScheduledAnnotationProcessor; SearchStrategy: all) did not find any beans named org.springframework.context.annotation.internalScheduledAnnotationProcessor (OnBeanCondition) + + TaskSchedulingConfigurations.SimpleAsyncTaskSchedulerBuilderConfiguration#simpleAsyncTaskSchedulerBuilderVirtualThreads: + Did not match: + - @ConditionalOnMissingBean (types: org.springframework.boot.task.SimpleAsyncTaskSchedulerBuilder; SearchStrategy: all) found beans of type 'org.springframework.boot.task.SimpleAsyncTaskSchedulerBuilder' simpleAsyncTaskSchedulerBuilder (OnBeanCondition) + + TaskSchedulingConfigurations.TaskSchedulerConfiguration: + Did not match: + - @ConditionalOnBean (names: org.springframework.context.annotation.internalScheduledAnnotationProcessor; SearchStrategy: all) did not find any beans named org.springframework.context.annotation.internalScheduledAnnotationProcessor (OnBeanCondition) + + ThymeleafAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'org.thymeleaf.spring6.SpringTemplateEngine' (OnClassCondition) + + TransactionAutoConfiguration#transactionalOperator: + Did not match: + - @ConditionalOnSingleCandidate (types: org.springframework.transaction.ReactiveTransactionManager; SearchStrategy: all) did not find any beans (OnBeanCondition) + + TransactionAutoConfiguration.AspectJTransactionManagementConfiguration: + Did not match: + - @ConditionalOnBean did not find required type 'org.springframework.transaction.aspectj.AbstractTransactionAspect' (OnBeanCondition) + - @ConditionalOnBean (types: org.springframework.transaction.aspectj.AbstractTransactionAspect; SearchStrategy: all) did not find any beans of type org.springframework.transaction.aspectj.AbstractTransactionAspect (OnBeanCondition) + + TransactionAutoConfiguration.EnableTransactionManagementConfiguration.JdkDynamicAutoProxyConfiguration: + Did not match: + - @ConditionalOnProperty (spring.aop.proxy-target-class=false) did not find property 'proxy-target-class' (OnPropertyCondition) + + UserDetailsServiceAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'org.springframework.security.authentication.AuthenticationManager' (OnClassCondition) + + ValidationAutoConfiguration: + Did not match: + - @ConditionalOnResource did not find resource 'classpath:META-INF/services/jakarta.validation.spi.ValidationProvider' (OnResourceCondition) + Matched: + - @ConditionalOnClass found required class 'jakarta.validation.executable.ExecutableValidator' (OnClassCondition) + + WebClientAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.function.client.WebClient' (OnClassCondition) + + WebFluxAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.config.WebFluxConfigurer' (OnClassCondition) + + WebMvcAutoConfiguration#hiddenHttpMethodFilter: + Did not match: + - @ConditionalOnProperty (spring.mvc.hiddenmethod.filter.enabled) did not find property 'enabled' (OnPropertyCondition) + + WebMvcAutoConfiguration.ProblemDetailsErrorHandlingConfiguration: + Did not match: + - @ConditionalOnProperty (spring.mvc.problemdetails.enabled=true) did not find property 'enabled' (OnPropertyCondition) + + WebMvcAutoConfiguration.ResourceChainCustomizerConfiguration: + Did not match: + - @ConditionalOnEnabledResourceChain did not find class org.webjars.WebJarAssetLocator (OnEnabledResourceChainCondition) + + WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter#beanNameViewResolver: + Did not match: + - @ConditionalOnMissingBean (types: org.springframework.web.servlet.view.BeanNameViewResolver; SearchStrategy: all) found beans of type 'org.springframework.web.servlet.view.BeanNameViewResolver' beanNameViewResolver (OnBeanCondition) + + WebServiceTemplateAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'org.springframework.ws.client.core.WebServiceTemplate' (OnClassCondition) + + WebServicesAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'org.springframework.ws.transport.http.MessageDispatcherServlet' (OnClassCondition) + + WebSessionIdResolverAutoConfiguration: + Did not match: + - @ConditionalOnWebApplication did not find reactive web application classes (OnWebApplicationCondition) + + WebSocketMessagingAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'org.springframework.web.socket.config.annotation.WebSocketMessageBrokerConfigurer' (OnClassCondition) + + WebSocketReactiveAutoConfiguration: + Did not match: + - @ConditionalOnWebApplication did not find reactive web application classes (OnWebApplicationCondition) + + WebSocketServletAutoConfiguration.JettyWebSocketConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'org.eclipse.jetty.ee10.websocket.jakarta.server.config.JakartaWebSocketServletContainerInitializer' (OnClassCondition) + + WebSocketServletAutoConfiguration.UndertowWebSocketConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'io.undertow.websockets.jsr.Bootstrap' (OnClassCondition) + + XADataSourceAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'jakarta.transaction.TransactionManager' (OnClassCondition) + + +Exclusions: +----------- + + None + + +Unconditional classes: +---------------------- + + cn.dev33.satoken.spring.SaTokenContextRegister + + org.springframework.boot.autoconfigure.context.ConfigurationPropertiesAutoConfiguration + + cn.dev33.satoken.spring.SaBeanRegister + + cn.dev33.satoken.dao.SaTokenDaoRedisJackson + + org.springframework.boot.autoconfigure.ssl.SslAutoConfiguration + + org.springframework.boot.autoconfigure.context.PropertyPlaceholderAutoConfiguration + + org.springframework.boot.autoconfigure.context.LifecycleAutoConfiguration + + cn.dev33.satoken.spring.SaBeanInject + + org.springframework.boot.autoconfigure.availability.ApplicationAvailabilityAutoConfiguration + + org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration + + + +2024-09-23 20:16:50.859 [main] INFO c.g.h.HarmonyLifeServerApplication - Started HarmonyLifeServerApplication in 3.373 seconds (process running for 3.783) +2024-09-23 20:16:50.860 [main] DEBUG o.s.b.a.ApplicationAvailabilityBean - Application availability state LivenessState changed to CORRECT +2024-09-23 20:16:50.862 [main] DEBUG o.s.b.a.ApplicationAvailabilityBean - Application availability state ReadinessState changed to ACCEPTING_TRAFFIC +2024-09-23 20:16:50.862 [main] DEBUG o.s.b.c.p.s.ConfigurationPropertySourcesPropertyResolver$DefaultResolver - Found key 'Unique_Worker_Id' in PropertySource 'Config resource 'class path resource [application.properties]' via location 'optional:classpath:/'' with value of type String +2024-09-23 20:16:50.863 [HikariPool-1 connection adder] DEBUG com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - After adding stats (total=2, active=0, idle=2, waiting=0) +2024-09-23 20:16:50.867 [HikariPool-1 connection adder] DEBUG com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - Added connection com.mysql.cj.jdbc.ConnectionImpl@590d03a +2024-09-23 20:16:50.897 [RMI TCP Connection(3)-172.17.0.1] DEBUG sun.rmi.transport.tcp - RMI TCP Connection(3)-172.17.0.1: (port 49599) op = 82 +2024-09-23 20:16:50.898 [RMI TCP Connection(3)-172.17.0.1] DEBUG sun.rmi.transport.tcp - RMI TCP Connection(3)-172.17.0.1: (port 49599) op = 80 +2024-09-23 20:16:50.899 [RMI TCP Connection(3)-172.17.0.1] DEBUG sun.rmi.transport.tcp - RMI TCP Connection(3)-172.17.0.1: (port 49599) op = 80 +2024-09-23 20:16:50.899 [RMI TCP Connection(3)-172.17.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(3)-172.17.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@2fc3f829 +2024-09-23 20:16:50.899 [RMI TCP Connection(3)-172.17.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(3)-172.17.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@2fc3f829 +2024-09-23 20:16:50.899 [RMI TCP Connection(3)-172.17.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(3)-172.17.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@2fc3f829 +2024-09-23 20:16:50.899 [RMI TCP Connection(3)-172.17.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(3)-172.17.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@2fc3f829 +2024-09-23 20:16:50.899 [RMI TCP Connection(3)-172.17.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(3)-172.17.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@2fc3f829 +2024-09-23 20:16:50.899 [RMI TCP Connection(3)-172.17.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(3)-172.17.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@2fc3f829 +2024-09-23 20:16:50.900 [RMI TCP Connection(3)-172.17.0.1] DEBUG sun.rmi.transport.tcp - RMI TCP Connection(3)-172.17.0.1: (port 49599) op = 84 +2024-09-23 20:16:50.900 [RMI TCP Connection(3)-172.17.0.1] DEBUG sun.rmi.transport.tcp - RMI TCP Connection(3)-172.17.0.1: (port 49599) op = 80 +2024-09-23 20:16:50.900 [RMI TCP Connection(3)-172.17.0.1] DEBUG sun.rmi.transport.tcp - RMI TCP Connection(3)-172.17.0.1: (port 49599) op = 80 +2024-09-23 20:16:50.900 [RMI TCP Connection(3)-172.17.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(3)-172.17.0.1: name = "javax.management.ObjectName", codebase = "" +2024-09-23 20:16:50.901 [RMI TCP Connection(3)-172.17.0.1] DEBUG javax.management.remote.rmi - connectionId=rmi://172.17.0.1 5, name=org.springframework.boot:type=Admin,name=SpringApplication, attribute=Ready +2024-09-23 20:16:50.903 [RMI TCP Connection(3)-172.17.0.1] DEBUG sun.rmi.transport.tcp - RMI TCP Connection(3)-172.17.0.1: (port 49599) op = 80 +2024-09-23 20:16:50.903 [RMI TCP Connection(3)-172.17.0.1] DEBUG javax.management.remote.rmi - [javax.management.remote.rmi.RMIConnectionImpl@7fba5d16: connectionId=rmi://172.17.0.1 5] closing. +2024-09-23 20:16:50.903 [RMI TCP Connection(3)-172.17.0.1] DEBUG javax.management.remote.rmi - [javax.management.remote.rmi.RMIConnectionImpl@7fba5d16: connectionId=rmi://172.17.0.1 5] closed. +2024-09-23 20:16:50.910 [HikariPool-1 connection adder] DEBUG com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - After adding stats (total=3, active=0, idle=3, waiting=0) +2024-09-23 20:16:50.914 [HikariPool-1 connection adder] DEBUG com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - Added connection com.mysql.cj.jdbc.ConnectionImpl@34df326b +2024-09-23 20:16:50.921 [RMI TCP Connection(4)-172.17.0.1] DEBUG sun.rmi.transport.tcp - RMI TCP Connection(4)-172.17.0.1: accepted socket from [172.17.0.1:49613] +2024-09-23 20:16:50.921 [RMI TCP Connection(4)-172.17.0.1] DEBUG sun.rmi.transport.tcp - RMI TCP Connection(4)-172.17.0.1: (port 49599) op = 80 +2024-09-23 20:16:50.922 [RMI TCP Connection(4)-172.17.0.1] DEBUG sun.rmi.transport.tcp - RMI TCP Connection(4)-172.17.0.1: (port 49599) op = 80 +2024-09-23 20:16:50.922 [RMI TCP Connection(4)-172.17.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(4)-172.17.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@2fc3f829 +2024-09-23 20:16:50.922 [RMI TCP Connection(4)-172.17.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(4)-172.17.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@2fc3f829 +2024-09-23 20:16:50.922 [RMI TCP Connection(4)-172.17.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(4)-172.17.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@2fc3f829 +2024-09-23 20:16:50.922 [RMI TCP Connection(4)-172.17.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(4)-172.17.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@2fc3f829 +2024-09-23 20:16:50.922 [RMI TCP Connection(4)-172.17.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(4)-172.17.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@2fc3f829 +2024-09-23 20:16:50.922 [RMI TCP Connection(4)-172.17.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(4)-172.17.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@2fc3f829 +2024-09-23 20:16:50.923 [RMI TCP Connection(4)-172.17.0.1] DEBUG sun.rmi.transport.tcp - RMI TCP Connection(4)-172.17.0.1: (port 49599) op = 84 +2024-09-23 20:16:50.923 [RMI TCP Connection(4)-172.17.0.1] DEBUG sun.rmi.transport.tcp - RMI TCP Connection(4)-172.17.0.1: (port 49599) op = 80 +2024-09-23 20:16:50.924 [RMI TCP Connection(4)-172.17.0.1] DEBUG sun.rmi.transport.tcp - RMI TCP Connection(4)-172.17.0.1: (port 49599) op = 80 +2024-09-23 20:16:50.924 [RMI TCP Connection(4)-172.17.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(4)-172.17.0.1: name = "javax.management.ObjectName", codebase = "" +2024-09-23 20:16:50.924 [RMI TCP Connection(4)-172.17.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(4)-172.17.0.1: name = "java.rmi.MarshalledObject", codebase = "" +2024-09-23 20:16:50.925 [RMI TCP Connection(4)-172.17.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(4)-172.17.0.1: name = "[B", codebase = "" +2024-09-23 20:16:50.925 [RMI TCP Connection(4)-172.17.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(4)-172.17.0.1: name = "[Ljava.lang.String;", codebase = "" +2024-09-23 20:16:50.925 [RMI TCP Connection(4)-172.17.0.1] DEBUG javax.management.remote.rmi - connectionId=rmi://172.17.0.1 6 unwrapping params with MBean extended ClassLoader. +2024-09-23 20:16:50.925 [RMI TCP Connection(4)-172.17.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(4)-172.17.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@2fc3f829 +2024-09-23 20:16:50.926 [RMI TCP Connection(4)-172.17.0.1] DEBUG javax.management.remote.rmi - connectionId=rmi://172.17.0.1 6, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] +2024-09-23 20:16:50.926 [RMI TCP Connection(4)-172.17.0.1] DEBUG sun.rmi.transport.tcp - RMI TCP Connection(4)-172.17.0.1: (port 49599) op = 80 +2024-09-23 20:16:50.926 [RMI TCP Connection(4)-172.17.0.1] DEBUG javax.management.remote.rmi - [javax.management.remote.rmi.RMIConnectionImpl@816e1dd: connectionId=rmi://172.17.0.1 6] closing. +2024-09-23 20:16:50.926 [RMI TCP Connection(4)-172.17.0.1] DEBUG javax.management.remote.rmi - [javax.management.remote.rmi.RMIConnectionImpl@816e1dd: connectionId=rmi://172.17.0.1 6] closed. +2024-09-23 20:16:50.927 [RMI TCP Connection(4)-172.17.0.1] DEBUG sun.rmi.transport.tcp - RMI TCP Connection(4)-172.17.0.1: (port 49599) op = 80 +2024-09-23 20:16:50.928 [RMI TCP Connection(4)-172.17.0.1] DEBUG sun.rmi.transport.tcp - RMI TCP Connection(4)-172.17.0.1: (port 49599) op = 80 +2024-09-23 20:16:50.928 [RMI TCP Connection(4)-172.17.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(4)-172.17.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@2fc3f829 +2024-09-23 20:16:50.928 [RMI TCP Connection(4)-172.17.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(4)-172.17.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@2fc3f829 +2024-09-23 20:16:50.928 [RMI TCP Connection(4)-172.17.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(4)-172.17.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@2fc3f829 +2024-09-23 20:16:50.928 [RMI TCP Connection(4)-172.17.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(4)-172.17.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@2fc3f829 +2024-09-23 20:16:50.929 [RMI TCP Connection(4)-172.17.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(4)-172.17.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@2fc3f829 +2024-09-23 20:16:50.929 [RMI TCP Connection(4)-172.17.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(4)-172.17.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@2fc3f829 +2024-09-23 20:16:50.929 [RMI TCP Connection(4)-172.17.0.1] DEBUG sun.rmi.transport.tcp - RMI TCP Connection(4)-172.17.0.1: (port 49599) op = 84 +2024-09-23 20:16:50.929 [RMI TCP Connection(4)-172.17.0.1] DEBUG sun.rmi.transport.tcp - RMI TCP Connection(4)-172.17.0.1: (port 49599) op = 80 +2024-09-23 20:16:50.930 [RMI TCP Connection(4)-172.17.0.1] DEBUG sun.rmi.transport.tcp - RMI TCP Connection(4)-172.17.0.1: (port 49599) op = 80 +2024-09-23 20:16:50.930 [RMI TCP Connection(4)-172.17.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(4)-172.17.0.1: name = "javax.management.ObjectName", codebase = "" +2024-09-23 20:16:50.930 [RMI TCP Connection(4)-172.17.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(4)-172.17.0.1: name = "java.rmi.MarshalledObject", codebase = "" +2024-09-23 20:16:50.930 [RMI TCP Connection(4)-172.17.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(4)-172.17.0.1: name = "[B", codebase = "" +2024-09-23 20:16:50.930 [RMI TCP Connection(4)-172.17.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(4)-172.17.0.1: name = "[Ljava.lang.String;", codebase = "" +2024-09-23 20:16:50.930 [RMI TCP Connection(4)-172.17.0.1] DEBUG javax.management.remote.rmi - connectionId=rmi://172.17.0.1 7 unwrapping params with MBean extended ClassLoader. +2024-09-23 20:16:50.930 [RMI TCP Connection(4)-172.17.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(4)-172.17.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@2fc3f829 +2024-09-23 20:16:50.930 [RMI TCP Connection(4)-172.17.0.1] DEBUG javax.management.remote.rmi - connectionId=rmi://172.17.0.1 7, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] +2024-09-23 20:16:50.931 [RMI TCP Connection(4)-172.17.0.1] DEBUG sun.rmi.transport.tcp - RMI TCP Connection(4)-172.17.0.1: (port 49599) op = 80 +2024-09-23 20:16:50.931 [RMI TCP Connection(4)-172.17.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(4)-172.17.0.1: name = "javax.management.ObjectName", codebase = "" +2024-09-23 20:16:50.931 [RMI TCP Connection(4)-172.17.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(4)-172.17.0.1: name = "java.rmi.MarshalledObject", codebase = "" +2024-09-23 20:16:50.931 [RMI TCP Connection(4)-172.17.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(4)-172.17.0.1: name = "[B", codebase = "" +2024-09-23 20:16:50.931 [RMI TCP Connection(4)-172.17.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(4)-172.17.0.1: name = "[Ljava.lang.String;", codebase = "" +2024-09-23 20:16:50.931 [RMI TCP Connection(4)-172.17.0.1] DEBUG javax.management.remote.rmi - connectionId=rmi://172.17.0.1 7 unwrapping params with MBean extended ClassLoader. +2024-09-23 20:16:50.931 [RMI TCP Connection(4)-172.17.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(4)-172.17.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@2fc3f829 +2024-09-23 20:16:50.931 [RMI TCP Connection(4)-172.17.0.1] DEBUG javax.management.remote.rmi - connectionId=rmi://172.17.0.1 7, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] +2024-09-23 20:16:50.932 [RMI TCP Connection(4)-172.17.0.1] DEBUG sun.rmi.transport.tcp - RMI TCP Connection(4)-172.17.0.1: (port 49599) op = 80 +2024-09-23 20:16:50.932 [RMI TCP Connection(4)-172.17.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(4)-172.17.0.1: name = "javax.management.ObjectName", codebase = "" +2024-09-23 20:16:50.932 [RMI TCP Connection(4)-172.17.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(4)-172.17.0.1: name = "java.rmi.MarshalledObject", codebase = "" +2024-09-23 20:16:50.932 [RMI TCP Connection(4)-172.17.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(4)-172.17.0.1: name = "[B", codebase = "" +2024-09-23 20:16:50.932 [RMI TCP Connection(4)-172.17.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(4)-172.17.0.1: name = "[Ljava.lang.String;", codebase = "" +2024-09-23 20:16:50.932 [RMI TCP Connection(4)-172.17.0.1] DEBUG javax.management.remote.rmi - connectionId=rmi://172.17.0.1 7 unwrapping params with MBean extended ClassLoader. +2024-09-23 20:16:50.932 [RMI TCP Connection(4)-172.17.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(4)-172.17.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@2fc3f829 +2024-09-23 20:16:50.932 [RMI TCP Connection(4)-172.17.0.1] DEBUG javax.management.remote.rmi - connectionId=rmi://172.17.0.1 7, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] +2024-09-23 20:16:50.933 [RMI TCP Connection(4)-172.17.0.1] DEBUG sun.rmi.transport.tcp - RMI TCP Connection(4)-172.17.0.1: (port 49599) op = 80 +2024-09-23 20:16:50.933 [RMI TCP Connection(4)-172.17.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(4)-172.17.0.1: name = "javax.management.ObjectName", codebase = "" +2024-09-23 20:16:50.933 [RMI TCP Connection(4)-172.17.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(4)-172.17.0.1: name = "java.rmi.MarshalledObject", codebase = "" +2024-09-23 20:16:50.933 [RMI TCP Connection(4)-172.17.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(4)-172.17.0.1: name = "[B", codebase = "" +2024-09-23 20:16:50.933 [RMI TCP Connection(4)-172.17.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(4)-172.17.0.1: name = "[Ljava.lang.String;", codebase = "" +2024-09-23 20:16:50.933 [RMI TCP Connection(4)-172.17.0.1] DEBUG javax.management.remote.rmi - connectionId=rmi://172.17.0.1 7 unwrapping params with MBean extended ClassLoader. +2024-09-23 20:16:50.933 [RMI TCP Connection(4)-172.17.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(4)-172.17.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@2fc3f829 +2024-09-23 20:16:50.933 [RMI TCP Connection(4)-172.17.0.1] DEBUG javax.management.remote.rmi - connectionId=rmi://172.17.0.1 7, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] +2024-09-23 20:16:50.934 [RMI TCP Connection(4)-172.17.0.1] DEBUG sun.rmi.transport.tcp - RMI TCP Connection(4)-172.17.0.1: (port 49599) op = 80 +2024-09-23 20:16:50.934 [RMI TCP Connection(4)-172.17.0.1] DEBUG javax.management.remote.rmi - [javax.management.remote.rmi.RMIConnectionImpl@6418a4a5: connectionId=rmi://172.17.0.1 7] closing. +2024-09-23 20:16:50.934 [RMI TCP Connection(4)-172.17.0.1] DEBUG javax.management.remote.rmi - [javax.management.remote.rmi.RMIConnectionImpl@6418a4a5: connectionId=rmi://172.17.0.1 7] closed. +2024-09-23 20:16:50.958 [HikariPool-1 connection adder] DEBUG com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - After adding stats (total=4, active=0, idle=4, waiting=0) +2024-09-23 20:16:50.964 [HikariPool-1 connection adder] DEBUG com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - Added connection com.mysql.cj.jdbc.ConnectionImpl@65bf2f75 +2024-09-23 20:16:51.006 [HikariPool-1 connection adder] DEBUG com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - After adding stats (total=5, active=0, idle=5, waiting=0) +2024-09-23 20:16:51.009 [HikariPool-1 connection adder] DEBUG com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - Added connection com.mysql.cj.jdbc.ConnectionImpl@729f2f9f +2024-09-23 20:16:51.053 [HikariPool-1 connection adder] DEBUG com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - After adding stats (total=6, active=0, idle=6, waiting=0) +2024-09-23 20:16:51.057 [HikariPool-1 connection adder] DEBUG com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - Added connection com.mysql.cj.jdbc.ConnectionImpl@61f1b673 +2024-09-23 20:16:51.099 [HikariPool-1 connection adder] DEBUG com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - After adding stats (total=7, active=0, idle=7, waiting=0) +2024-09-23 20:16:51.103 [HikariPool-1 connection adder] DEBUG com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - Added connection com.mysql.cj.jdbc.ConnectionImpl@25bb10d4 +2024-09-23 20:16:51.146 [HikariPool-1 connection adder] DEBUG com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - After adding stats (total=8, active=0, idle=8, waiting=0) +2024-09-23 20:16:51.150 [HikariPool-1 connection adder] DEBUG com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - Added connection com.mysql.cj.jdbc.ConnectionImpl@7bdf582e +2024-09-23 20:16:51.193 [HikariPool-1 connection adder] DEBUG com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - After adding stats (total=9, active=0, idle=9, waiting=0) +2024-09-23 20:16:51.196 [HikariPool-1 connection adder] DEBUG com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - Added connection com.mysql.cj.jdbc.ConnectionImpl@31718be0 +2024-09-23 20:16:51.240 [HikariPool-1 connection adder] DEBUG com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - After adding stats (total=10, active=0, idle=10, waiting=0) +2024-09-23 20:17:11.581 [RMI TCP Connection(3)-172.17.0.1] DEBUG sun.rmi.transport.tcp - RMI TCP Connection(3)-172.17.0.1: (port 49599) connection closed +2024-09-23 20:17:11.581 [RMI TCP Connection(4)-172.17.0.1] DEBUG sun.rmi.transport.tcp - RMI TCP Connection(4)-172.17.0.1: (port 49599) connection closed +2024-09-23 20:17:11.581 [RMI TCP Connection(3)-172.17.0.1] DEBUG sun.rmi.transport.tcp - RMI TCP Connection(3)-172.17.0.1: close connection, socket: Socket[addr=/172.17.0.1,port=49606,localport=49599] +2024-09-23 20:17:11.581 [RMI TCP Connection(4)-172.17.0.1] DEBUG sun.rmi.transport.tcp - RMI TCP Connection(4)-172.17.0.1: close connection, socket: Socket[addr=/172.17.0.1,port=49613,localport=49599] +2024-09-23 20:17:11.581 [RMI TCP Connection(3)-172.17.0.1] DEBUG sun.rmi.transport.tcp - RMI TCP Connection(3)-172.17.0.1: socket close: Socket[addr=/172.17.0.1,port=49606,localport=49599] +2024-09-23 20:17:11.581 [RMI TCP Connection(4)-172.17.0.1] DEBUG sun.rmi.transport.tcp - RMI TCP Connection(4)-172.17.0.1: socket close: Socket[addr=/172.17.0.1,port=49613,localport=49599] +2024-09-23 20:17:11.598 [RMI TCP Connection(5)-172.17.0.1] DEBUG sun.rmi.transport.tcp - RMI TCP Connection(5)-172.17.0.1: accepted socket from [172.17.0.1:49646] +2024-09-23 20:17:11.598 [RMI TCP Connection(5)-172.17.0.1] DEBUG sun.rmi.transport.tcp - RMI TCP Connection(5)-172.17.0.1: (port 49599) op = 80 +2024-09-23 20:17:11.598 [RMI TCP Connection(5)-172.17.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(5)-172.17.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@2fc3f829 +2024-09-23 20:17:11.599 [RMI TCP Connection(5)-172.17.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(5)-172.17.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@2fc3f829 +2024-09-23 20:17:11.599 [RMI TCP Connection(5)-172.17.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(5)-172.17.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@2fc3f829 +2024-09-23 20:17:11.599 [RMI TCP Connection(5)-172.17.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(5)-172.17.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@2fc3f829 +2024-09-23 20:17:11.599 [RMI TCP Connection(5)-172.17.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(5)-172.17.0.1: name = "[B", codebase = "", defaultLoader = jdk.internal.loader.ClassLoaders$PlatformClassLoader@2fc3f829 +2024-09-23 20:17:18.170 [RMI TCP Connection(2)-172.17.0.1] DEBUG sun.rmi.transport.tcp - RMI TCP Connection(2)-172.17.0.1: (port 49599) connection closed +2024-09-23 20:17:18.170 [RMI TCP Connection(2)-172.17.0.1] DEBUG sun.rmi.transport.tcp - RMI TCP Connection(2)-172.17.0.1: close connection, socket: Socket[addr=/172.17.0.1,port=49602,localport=49599] +2024-09-23 20:17:18.170 [RMI TCP Connection(2)-172.17.0.1] DEBUG sun.rmi.transport.tcp - RMI TCP Connection(2)-172.17.0.1: socket close: Socket[addr=/172.17.0.1,port=49602,localport=49599] +2024-09-23 20:17:20.828 [HikariPool-1 housekeeper] DEBUG com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) +2024-09-23 20:17:20.828 [HikariPool-1 housekeeper] DEBUG com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - Fill pool skipped, pool has sufficient level or currently being filled. +2024-09-23 20:17:21.919 [SpringApplicationShutdownHook] DEBUG o.s.b.a.ApplicationAvailabilityBean - Application availability state ReadinessState changed from ACCEPTING_TRAFFIC to REFUSING_TRAFFIC +2024-09-23 20:17:21.919 [SpringApplicationShutdownHook] DEBUG o.s.b.w.s.c.AnnotationConfigServletWebServerApplicationContext - Closing org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@77602954, started on Mon Sep 23 20:16:47 CST 2024 +2024-09-23 20:17:21.920 [SpringApplicationShutdownHook] DEBUG o.s.c.s.DefaultLifecycleProcessor - Stopping beans in phase 2147483647 +2024-09-23 20:17:21.921 [SpringApplicationShutdownHook] DEBUG o.s.c.s.DefaultLifecycleProcessor - Bean 'applicationTaskExecutor' completed its stop procedure +2024-09-23 20:17:21.921 [SpringApplicationShutdownHook] DEBUG o.s.c.s.DefaultLifecycleProcessor - Stopping beans in phase 2147482623 +2024-09-23 20:17:21.921 [SpringApplicationShutdownHook] DEBUG o.s.c.s.DefaultLifecycleProcessor - Bean 'webServerGracefulShutdown' completed its stop procedure +2024-09-23 20:17:21.921 [SpringApplicationShutdownHook] DEBUG o.s.c.s.DefaultLifecycleProcessor - Stopping beans in phase 2147481599 +2024-09-23 20:17:22.490 [SpringApplicationShutdownHook] DEBUG o.s.c.s.DefaultLifecycleProcessor - Bean 'webServerStartStop' completed its stop procedure +2024-09-23 20:17:22.490 [SpringApplicationShutdownHook] DEBUG o.s.c.s.DefaultLifecycleProcessor - Stopping beans in phase 0 +2024-09-23 20:17:22.491 [SpringApplicationShutdownHook] DEBUG io.lettuce.core.AbstractRedisClient - Initiate shutdown (0, 100, MILLISECONDS) +2024-09-23 20:17:22.494 [SpringApplicationShutdownHook] DEBUG o.s.c.s.DefaultLifecycleProcessor - Bean 'redisConnectionFactory' completed its stop procedure +2024-09-23 20:17:22.494 [SpringApplicationShutdownHook] DEBUG o.s.c.s.DefaultLifecycleProcessor - Stopping beans in phase -2147483647 +2024-09-23 20:17:22.494 [SpringApplicationShutdownHook] DEBUG o.s.c.s.DefaultLifecycleProcessor - Bean 'springBootLoggingLifecycle' completed its stop procedure +2024-09-23 20:17:22.494 [SpringApplicationShutdownHook] DEBUG o.s.d.r.l.RedisMessageListenerContainer - Stopped RedisMessageListenerContainer +2024-09-23 20:17:22.495 [SpringApplicationShutdownHook] DEBUG o.s.j.e.a.AnnotationMBeanExporter - Unregistering JMX-exposed beans on shutdown +2024-09-23 20:17:22.495 [SpringApplicationShutdownHook] DEBUG o.s.j.e.a.AnnotationMBeanExporter - Unregistering JMX-exposed beans +2024-09-23 20:17:22.495 [SpringApplicationShutdownHook] DEBUG i.l.c.r.DefaultClientResources - Initiate shutdown (0, 2, SECONDS) +2024-09-23 20:17:22.496 [SpringApplicationShutdownHook] DEBUG i.l.c.r.DefaultEventLoopGroupProvider - Initiate shutdown (0, 2, SECONDS) +2024-09-23 20:17:22.499 [SpringApplicationShutdownHook] DEBUG o.s.b.f.s.DisposableBeanAdapter - Custom destroy method 'shutdown' on bean with name 'lettuceClientResources' completed asynchronously +2024-09-23 20:17:22.499 [SpringApplicationShutdownHook] DEBUG o.s.s.c.ThreadPoolTaskExecutor - Shutting down ExecutorService 'applicationTaskExecutor' +2024-09-23 20:17:22.500 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown initiated... +2024-09-23 20:17:22.500 [SpringApplicationShutdownHook] DEBUG com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - Before shutdown stats (total=10, active=0, idle=10, waiting=0) +2024-09-23 20:17:22.501 [HikariPool-1 connection closer] DEBUG com.zaxxer.hikari.pool.PoolBase - HikariPool-1 - Closing connection com.mysql.cj.jdbc.ConnectionImpl@3134b261: (connection evicted) +2024-09-23 20:17:22.504 [HikariPool-1 connection closer] DEBUG com.zaxxer.hikari.pool.PoolBase - HikariPool-1 - Closing connection com.mysql.cj.jdbc.ConnectionImpl@44adda01: (connection evicted) +2024-09-23 20:17:22.504 [HikariPool-1 connection closer] DEBUG com.zaxxer.hikari.pool.PoolBase - HikariPool-1 - Closing connection com.mysql.cj.jdbc.ConnectionImpl@590d03a: (connection evicted) +2024-09-23 20:17:22.505 [HikariPool-1 connection closer] DEBUG com.zaxxer.hikari.pool.PoolBase - HikariPool-1 - Closing connection com.mysql.cj.jdbc.ConnectionImpl@34df326b: (connection evicted) +2024-09-23 20:17:22.505 [HikariPool-1 connection closer] DEBUG com.zaxxer.hikari.pool.PoolBase - HikariPool-1 - Closing connection com.mysql.cj.jdbc.ConnectionImpl@65bf2f75: (connection evicted) +2024-09-23 20:17:22.505 [HikariPool-1 connection closer] DEBUG com.zaxxer.hikari.pool.PoolBase - HikariPool-1 - Closing connection com.mysql.cj.jdbc.ConnectionImpl@729f2f9f: (connection evicted) +2024-09-23 20:17:22.505 [HikariPool-1 connection closer] DEBUG com.zaxxer.hikari.pool.PoolBase - HikariPool-1 - Closing connection com.mysql.cj.jdbc.ConnectionImpl@61f1b673: (connection evicted) +2024-09-23 20:17:22.505 [HikariPool-1 connection closer] DEBUG com.zaxxer.hikari.pool.PoolBase - HikariPool-1 - Closing connection com.mysql.cj.jdbc.ConnectionImpl@25bb10d4: (connection evicted) +2024-09-23 20:17:22.505 [HikariPool-1 connection closer] DEBUG com.zaxxer.hikari.pool.PoolBase - HikariPool-1 - Closing connection com.mysql.cj.jdbc.ConnectionImpl@7bdf582e: (connection evicted) +2024-09-23 20:17:22.505 [HikariPool-1 connection closer] DEBUG com.zaxxer.hikari.pool.PoolBase - HikariPool-1 - Closing connection com.mysql.cj.jdbc.ConnectionImpl@31718be0: (connection evicted) +2024-09-23 20:17:22.505 [SpringApplicationShutdownHook] DEBUG com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - After shutdown stats (total=0, active=0, idle=0, waiting=0) +2024-09-23 20:17:22.505 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown completed. +2024-09-23 20:17:24.736 [main] INFO o.s.boot.SpringApplication - +██╗ ██╗██████╗ ██╗██╗ █████╗ ███╗ ██╗ ██████╗ +╚██╗██╔╝██╔══██╗██║██║ ██╔══██╗████╗ ██║██╔════╝ + ╚███╔╝ ██████╔╝██║██║ ███████║██╔██╗ ██║██║ ███╗ + ██╔██╗ ██╔══██╗██║██║ ██╔══██║██║╚██╗██║██║ ██║ +██╔╝ ██╗██║ ██║██║███████╗██║ ██║██║ ╚████║╚██████╔╝ +╚═╝ ╚═╝╚═╝ ╚═╝╚═╝╚══════╝╚═╝ ╚═╝╚═╝ ╚═══╝ ╚═════╝ + +^_^ 服务启动成功 He Sheng +# 项目名称:harmony-life-server +# 项目版本:1.0.0 +# 框架版本:3.3.4 +# 最后更新于 2024年 9月 25日 + + +2024-09-23 20:17:24.776 [main] INFO c.g.h.HarmonyLifeServerApplication - Starting HarmonyLifeServerApplication using Java 17.0.8 with PID 22424 (C:\Users\xrilang\Desktop\harmony-life\harmony-life-server\harmony-life-server\target\classes started by xrilang in C:\Users\xrilang\Desktop\harmony-life\harmony-life-server\harmony-life-server) +2024-09-23 20:17:24.776 [main] DEBUG c.g.h.HarmonyLifeServerApplication - Running with Spring Boot v3.3.4, Spring v6.1.13 +2024-09-23 20:17:24.777 [main] INFO c.g.h.HarmonyLifeServerApplication - No active profile set, falling back to 1 default profile: "default" +2024-09-23 20:17:25.317 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode +2024-09-23 20:17:25.318 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data JDBC repositories in DEFAULT mode. +2024-09-23 20:17:25.329 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 7 ms. Found 0 JDBC repository interfaces. +2024-09-23 20:17:25.339 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode +2024-09-23 20:17:25.340 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2024-09-23 20:17:25.351 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 5 ms. Found 0 Redis repository interfaces. +2024-09-23 20:17:25.758 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat initialized with port 8080 (http) +2024-09-23 20:17:25.771 [main] INFO o.a.catalina.core.StandardService - Starting service [Tomcat] +2024-09-23 20:17:25.772 [main] INFO o.a.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/10.1.30] +2024-09-23 20:17:25.825 [main] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring embedded WebApplicationContext +2024-09-23 20:17:25.825 [main] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 1022 ms +2024-09-23 20:17:26.523 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Starting... +2024-09-23 20:17:26.616 [main] INFO com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - Added connection com.mysql.cj.jdbc.ConnectionImpl@16c0be3b +2024-09-23 20:17:26.621 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Start completed. +2024-09-23 20:17:26.753 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat started on port 8080 (http) with context path '/' +2024-09-23 20:17:26.759 [main] INFO c.g.h.HarmonyLifeServerApplication - Started HarmonyLifeServerApplication in 2.331 seconds (process running for 2.751) +2024-09-23 20:17:40.870 [http-nio-8080-exec-1] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring DispatcherServlet 'dispatcherServlet' +2024-09-23 20:17:40.871 [http-nio-8080-exec-1] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet' +2024-09-23 20:17:40.872 [http-nio-8080-exec-1] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 1 ms +2024-09-23 20:17:41.222 [http-nio-8080-exec-1] DEBUG c.g.h.m.SystemMapper.getAllMenus - ==> Preparing: SELECT id, title, `key`, name, component, redirect, icon, status, parent, `order` FROM system_menu ORDER BY `order` +2024-09-23 20:17:41.236 [http-nio-8080-exec-1] DEBUG c.g.h.m.SystemMapper.getAllMenus - ==> Parameters: +2024-09-23 20:17:41.258 [http-nio-8080-exec-1] DEBUG c.g.h.m.SystemMapper.getAllMenus - <== Total: 6 +2024-09-23 20:17:41.260 [http-nio-8080-exec-1] ERROR c.g.h.config.GlobalExceptionHandler - For input string: "index" +2024-09-23 20:19:18.041 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown initiated... +2024-09-23 20:19:18.045 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown completed. +2024-09-23 20:19:21.607 [main] INFO o.s.boot.SpringApplication - +██╗ ██╗██████╗ ██╗██╗ █████╗ ███╗ ██╗ ██████╗ +╚██╗██╔╝██╔══██╗██║██║ ██╔══██╗████╗ ██║██╔════╝ + ╚███╔╝ ██████╔╝██║██║ ███████║██╔██╗ ██║██║ ███╗ + ██╔██╗ ██╔══██╗██║██║ ██╔══██║██║╚██╗██║██║ ██║ +██╔╝ ██╗██║ ██║██║███████╗██║ ██║██║ ╚████║╚██████╔╝ +╚═╝ ╚═╝╚═╝ ╚═╝╚═╝╚══════╝╚═╝ ╚═╝╚═╝ ╚═══╝ ╚═════╝ + +^_^ 服务启动成功 He Sheng +# 项目名称:harmony-life-server +# 项目版本:1.0.0 +# 框架版本:3.3.4 +# 最后更新于 2024年 9月 25日 + + +2024-09-23 20:19:21.648 [main] INFO c.g.h.HarmonyLifeServerApplication - Starting HarmonyLifeServerApplication using Java 17.0.8 with PID 33072 (C:\Users\xrilang\Desktop\harmony-life\harmony-life-server\harmony-life-server\target\classes started by xrilang in C:\Users\xrilang\Desktop\harmony-life\harmony-life-server\harmony-life-server) +2024-09-23 20:19:21.649 [main] DEBUG c.g.h.HarmonyLifeServerApplication - Running with Spring Boot v3.3.4, Spring v6.1.13 +2024-09-23 20:19:21.649 [main] INFO c.g.h.HarmonyLifeServerApplication - No active profile set, falling back to 1 default profile: "default" +2024-09-23 20:19:22.183 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode +2024-09-23 20:19:22.184 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data JDBC repositories in DEFAULT mode. +2024-09-23 20:19:22.195 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 7 ms. Found 0 JDBC repository interfaces. +2024-09-23 20:19:22.206 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode +2024-09-23 20:19:22.206 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2024-09-23 20:19:22.218 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 5 ms. Found 0 Redis repository interfaces. +2024-09-23 20:19:22.647 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat initialized with port 8080 (http) +2024-09-23 20:19:22.658 [main] INFO o.a.catalina.core.StandardService - Starting service [Tomcat] +2024-09-23 20:19:22.659 [main] INFO o.a.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/10.1.30] +2024-09-23 20:19:22.715 [main] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring embedded WebApplicationContext +2024-09-23 20:19:22.715 [main] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 1039 ms +2024-09-23 20:19:23.429 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Starting... +2024-09-23 20:19:23.528 [main] INFO com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - Added connection com.mysql.cj.jdbc.ConnectionImpl@74a1d60e +2024-09-23 20:19:23.529 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Start completed. +2024-09-23 20:19:23.659 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat started on port 8080 (http) with context path '/' +2024-09-23 20:19:23.665 [main] INFO c.g.h.HarmonyLifeServerApplication - Started HarmonyLifeServerApplication in 2.358 seconds (process running for 2.759) +2024-09-23 20:19:24.087 [http-nio-8080-exec-1] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring DispatcherServlet 'dispatcherServlet' +2024-09-23 20:19:24.087 [http-nio-8080-exec-1] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet' +2024-09-23 20:19:24.088 [http-nio-8080-exec-1] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 1 ms +2024-09-23 20:19:24.450 [http-nio-8080-exec-1] DEBUG c.g.h.m.SystemMapper.getAllMenus - ==> Preparing: SELECT id, title, `key`, name, component, redirect, icon, status, parent, `order` FROM system_menu ORDER BY `order` +2024-09-23 20:19:24.465 [http-nio-8080-exec-1] DEBUG c.g.h.m.SystemMapper.getAllMenus - ==> Parameters: +2024-09-23 20:19:24.484 [http-nio-8080-exec-1] DEBUG c.g.h.m.SystemMapper.getAllMenus - <== Total: 6 +2024-09-23 20:19:24.488 [http-nio-8080-exec-1] ERROR c.g.h.config.GlobalExceptionHandler - java.lang.NumberFormatException: For input string: "index" +2024-09-23 20:20:37.793 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown initiated... +2024-09-23 20:20:37.797 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown completed. +2024-09-23 20:20:40.096 [main] INFO o.s.boot.SpringApplication - +██╗ ██╗██████╗ ██╗██╗ █████╗ ███╗ ██╗ ██████╗ +╚██╗██╔╝██╔══██╗██║██║ ██╔══██╗████╗ ██║██╔════╝ + ╚███╔╝ ██████╔╝██║██║ ███████║██╔██╗ ██║██║ ███╗ + ██╔██╗ ██╔══██╗██║██║ ██╔══██║██║╚██╗██║██║ ██║ +██╔╝ ██╗██║ ██║██║███████╗██║ ██║██║ ╚████║╚██████╔╝ +╚═╝ ╚═╝╚═╝ ╚═╝╚═╝╚══════╝╚═╝ ╚═╝╚═╝ ╚═══╝ ╚═════╝ + +^_^ 服务启动成功 He Sheng +# 项目名称:harmony-life-server +# 项目版本:1.0.0 +# 框架版本:3.3.4 +# 最后更新于 2024年 9月 25日 + + +2024-09-23 20:20:40.137 [main] INFO c.g.h.HarmonyLifeServerApplication - Starting HarmonyLifeServerApplication using Java 17.0.8 with PID 36656 (C:\Users\xrilang\Desktop\harmony-life\harmony-life-server\harmony-life-server\target\classes started by xrilang in C:\Users\xrilang\Desktop\harmony-life\harmony-life-server\harmony-life-server) +2024-09-23 20:20:40.138 [main] DEBUG c.g.h.HarmonyLifeServerApplication - Running with Spring Boot v3.3.4, Spring v6.1.13 +2024-09-23 20:20:40.138 [main] INFO c.g.h.HarmonyLifeServerApplication - No active profile set, falling back to 1 default profile: "default" +2024-09-23 20:20:40.656 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode +2024-09-23 20:20:40.657 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data JDBC repositories in DEFAULT mode. +2024-09-23 20:20:40.669 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 8 ms. Found 0 JDBC repository interfaces. +2024-09-23 20:20:40.680 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode +2024-09-23 20:20:40.681 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2024-09-23 20:20:40.692 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 5 ms. Found 0 Redis repository interfaces. +2024-09-23 20:20:41.103 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat initialized with port 8080 (http) +2024-09-23 20:20:41.117 [main] INFO o.a.catalina.core.StandardService - Starting service [Tomcat] +2024-09-23 20:20:41.118 [main] INFO o.a.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/10.1.30] +2024-09-23 20:20:41.171 [main] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring embedded WebApplicationContext +2024-09-23 20:20:41.172 [main] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 1006 ms +2024-09-23 20:20:41.869 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Starting... +2024-09-23 20:20:41.959 [main] INFO com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - Added connection com.mysql.cj.jdbc.ConnectionImpl@16c0be3b +2024-09-23 20:20:41.964 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Start completed. +2024-09-23 20:20:42.089 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat started on port 8080 (http) with context path '/' +2024-09-23 20:20:42.095 [main] INFO c.g.h.HarmonyLifeServerApplication - Started HarmonyLifeServerApplication in 2.312 seconds (process running for 2.724) +2024-09-23 20:40:24.468 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown initiated... +2024-09-23 20:40:24.474 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown completed. +2024-09-23 20:40:26.731 [main] INFO o.s.boot.SpringApplication - +██╗ ██╗██████╗ ██╗██╗ █████╗ ███╗ ██╗ ██████╗ +╚██╗██╔╝██╔══██╗██║██║ ██╔══██╗████╗ ██║██╔════╝ + ╚███╔╝ ██████╔╝██║██║ ███████║██╔██╗ ██║██║ ███╗ + ██╔██╗ ██╔══██╗██║██║ ██╔══██║██║╚██╗██║██║ ██║ +██╔╝ ██╗██║ ██║██║███████╗██║ ██║██║ ╚████║╚██████╔╝ +╚═╝ ╚═╝╚═╝ ╚═╝╚═╝╚══════╝╚═╝ ╚═╝╚═╝ ╚═══╝ ╚═════╝ + +^_^ 服务启动成功 He Sheng +# 项目名称:harmony-life-server +# 项目版本:1.0.0 +# 框架版本:3.3.4 +# 最后更新于 2024年 9月 25日 + + +2024-09-23 20:40:26.774 [main] INFO c.g.h.HarmonyLifeServerApplication - Starting HarmonyLifeServerApplication using Java 17.0.8 with PID 9344 (C:\Users\xrilang\Desktop\harmony-life\harmony-life-server\harmony-life-server\target\classes started by xrilang in C:\Users\xrilang\Desktop\harmony-life\harmony-life-server\harmony-life-server) +2024-09-23 20:40:26.774 [main] DEBUG c.g.h.HarmonyLifeServerApplication - Running with Spring Boot v3.3.4, Spring v6.1.13 +2024-09-23 20:40:26.775 [main] INFO c.g.h.HarmonyLifeServerApplication - No active profile set, falling back to 1 default profile: "default" +2024-09-23 20:40:27.309 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode +2024-09-23 20:40:27.310 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data JDBC repositories in DEFAULT mode. +2024-09-23 20:40:27.320 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 7 ms. Found 0 JDBC repository interfaces. +2024-09-23 20:40:27.329 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode +2024-09-23 20:40:27.330 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2024-09-23 20:40:27.342 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 5 ms. Found 0 Redis repository interfaces. +2024-09-23 20:40:27.754 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat initialized with port 8080 (http) +2024-09-23 20:40:27.763 [main] INFO o.a.catalina.core.StandardService - Starting service [Tomcat] +2024-09-23 20:40:27.764 [main] INFO o.a.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/10.1.30] +2024-09-23 20:40:27.817 [main] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring embedded WebApplicationContext +2024-09-23 20:40:27.817 [main] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 1016 ms +2024-09-23 20:40:28.507 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Starting... +2024-09-23 20:40:28.604 [main] INFO com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - Added connection com.mysql.cj.jdbc.ConnectionImpl@5d8e4fa8 +2024-09-23 20:40:28.605 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Start completed. +2024-09-23 20:40:28.727 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat started on port 8080 (http) with context path '/' +2024-09-23 20:40:28.733 [main] INFO c.g.h.HarmonyLifeServerApplication - Started HarmonyLifeServerApplication in 2.305 seconds (process running for 2.725) +2024-09-23 20:40:34.261 [http-nio-8080-exec-1] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring DispatcherServlet 'dispatcherServlet' +2024-09-23 20:40:34.261 [http-nio-8080-exec-1] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet' +2024-09-23 20:40:34.262 [http-nio-8080-exec-1] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 1 ms +2024-09-23 20:40:34.625 [http-nio-8080-exec-1] DEBUG c.g.h.m.SystemMapper.getAllMenus - ==> Preparing: SELECT id, title, `key`, name, component, redirect, icon, status, parent, `order` FROM system_menu ORDER BY `order` +2024-09-23 20:40:34.643 [http-nio-8080-exec-1] DEBUG c.g.h.m.SystemMapper.getAllMenus - ==> Parameters: +2024-09-23 20:40:34.663 [http-nio-8080-exec-1] DEBUG c.g.h.m.SystemMapper.getAllMenus - <== Total: 6 +2024-09-23 20:40:34.665 [http-nio-8080-exec-1] ERROR c.g.h.config.GlobalExceptionHandler - java.lang.NumberFormatException: For input string: "index" +2024-09-23 20:44:12.973 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown initiated... +2024-09-23 20:44:12.977 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown completed. +2024-09-23 20:44:16.848 [main] INFO o.s.boot.SpringApplication - +██╗ ██╗██████╗ ██╗██╗ █████╗ ███╗ ██╗ ██████╗ +╚██╗██╔╝██╔══██╗██║██║ ██╔══██╗████╗ ██║██╔════╝ + ╚███╔╝ ██████╔╝██║██║ ███████║██╔██╗ ██║██║ ███╗ + ██╔██╗ ██╔══██╗██║██║ ██╔══██║██║╚██╗██║██║ ██║ +██╔╝ ██╗██║ ██║██║███████╗██║ ██║██║ ╚████║╚██████╔╝ +╚═╝ ╚═╝╚═╝ ╚═╝╚═╝╚══════╝╚═╝ ╚═╝╚═╝ ╚═══╝ ╚═════╝ + +^_^ 服务启动成功 He Sheng +# 项目名称:harmony-life-server +# 项目版本:1.0.0 +# 框架版本:3.3.4 +# 最后更新于 2024年 9月 25日 + + +2024-09-23 20:44:16.888 [main] INFO c.g.h.HarmonyLifeServerApplication - Starting HarmonyLifeServerApplication using Java 17.0.8 with PID 19032 (C:\Users\xrilang\Desktop\harmony-life\harmony-life-server\harmony-life-server\target\classes started by xrilang in C:\Users\xrilang\Desktop\harmony-life\harmony-life-server\harmony-life-server) +2024-09-23 20:44:16.889 [main] DEBUG c.g.h.HarmonyLifeServerApplication - Running with Spring Boot v3.3.4, Spring v6.1.13 +2024-09-23 20:44:16.889 [main] INFO c.g.h.HarmonyLifeServerApplication - No active profile set, falling back to 1 default profile: "default" +2024-09-23 20:44:17.413 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode +2024-09-23 20:44:17.414 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data JDBC repositories in DEFAULT mode. +2024-09-23 20:44:17.424 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 8 ms. Found 0 JDBC repository interfaces. +2024-09-23 20:44:17.435 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode +2024-09-23 20:44:17.436 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2024-09-23 20:44:17.448 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 4 ms. Found 0 Redis repository interfaces. +2024-09-23 20:44:17.849 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat initialized with port 8080 (http) +2024-09-23 20:44:17.860 [main] INFO o.a.catalina.core.StandardService - Starting service [Tomcat] +2024-09-23 20:44:17.860 [main] INFO o.a.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/10.1.30] +2024-09-23 20:44:17.914 [main] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring embedded WebApplicationContext +2024-09-23 20:44:17.915 [main] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 1000 ms +2024-09-23 20:44:18.609 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Starting... +2024-09-23 20:44:18.707 [main] INFO com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - Added connection com.mysql.cj.jdbc.ConnectionImpl@74a1d60e +2024-09-23 20:44:18.708 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Start completed. +2024-09-23 20:44:18.831 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat started on port 8080 (http) with context path '/' +2024-09-23 20:44:18.836 [main] INFO c.g.h.HarmonyLifeServerApplication - Started HarmonyLifeServerApplication in 2.293 seconds (process running for 2.698) +2024-09-23 20:44:26.684 [http-nio-8080-exec-1] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring DispatcherServlet 'dispatcherServlet' +2024-09-23 20:44:26.684 [http-nio-8080-exec-1] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet' +2024-09-23 20:44:26.685 [http-nio-8080-exec-1] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 1 ms +2024-09-23 20:44:27.043 [http-nio-8080-exec-1] DEBUG c.g.h.m.SystemMapper.getAllMenus - ==> Preparing: SELECT id, title, `key`, name, component, redirect, icon, status, parent, `order` FROM system_menu ORDER BY `order` +2024-09-23 20:44:27.061 [http-nio-8080-exec-1] DEBUG c.g.h.m.SystemMapper.getAllMenus - ==> Parameters: +2024-09-23 20:44:27.082 [http-nio-8080-exec-1] DEBUG c.g.h.m.SystemMapper.getAllMenus - <== Total: 6 +2024-09-23 20:44:27.084 [http-nio-8080-exec-1] ERROR c.g.h.config.GlobalExceptionHandler - ==========ERROR==========START========== +2024-09-23 20:44:27.085 [http-nio-8080-exec-1] ERROR c.g.h.config.GlobalExceptionHandler - For input string: "index" +2024-09-23 20:44:27.085 [http-nio-8080-exec-1] ERROR c.g.h.config.GlobalExceptionHandler - [java.base/java.lang.NumberFormatException.forInputString(NumberFormatException.java:67), java.base/java.lang.Long.parseLong(Long.java:711), java.base/java.lang.Long.parseLong(Long.java:836), com.guaiguailang.harmony.service.impl.SystemServiceImpl.getMenu(SystemServiceImpl.java:46), com.guaiguailang.harmony.controller.SystemController.getMenu(SystemController.java:32), java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method), java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77), java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43), java.base/java.lang.reflect.Method.invoke(Method.java:568), org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:255), org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:188), org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:118), org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:926), org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:831), org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87), org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1089), org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979), org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014), org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:903), jakarta.servlet.http.HttpServlet.service(HttpServlet.java:564), org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885), jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658), org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195), org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140), org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51), org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164), org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140), org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100), org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116), org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164), org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140), cn.dev33.satoken.filter.SaPathCheckFilterForJakartaServlet.doFilter(SaPathCheckFilterForJakartaServlet.java:55), org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164), org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140), org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93), org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116), org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164), org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140), org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201), org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116), org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164), org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140), org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167), org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90), org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:483), org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:115), org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93), org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74), org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:344), org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:384), org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63), org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:905), org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741), org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52), org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190), org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659), org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63), java.base/java.lang.Thread.run(Thread.java:833)] +2024-09-23 20:44:27.085 [http-nio-8080-exec-1] ERROR c.g.h.config.GlobalExceptionHandler - For input string: "index" +2024-09-23 20:44:27.085 [http-nio-8080-exec-1] ERROR c.g.h.config.GlobalExceptionHandler - java.lang.NumberFormatException +2024-09-23 20:44:27.086 [http-nio-8080-exec-1] WARN o.s.w.s.m.m.a.ExceptionHandlerExceptionResolver - Failure in @ExceptionHandler com.guaiguailang.harmony.config.GlobalExceptionHandler#handlerException(Exception) +java.lang.NullPointerException: Cannot invoke "java.lang.Throwable.toString()" because the return value of "java.lang.Exception.getCause()" is null + at com.guaiguailang.harmony.config.GlobalExceptionHandler.handlerException(GlobalExceptionHandler.java:22) + at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) + at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.base/java.lang.reflect.Method.invoke(Method.java:568) + at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:255) + at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:188) + at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:118) + at org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver.doResolveHandlerMethodException(ExceptionHandlerExceptionResolver.java:432) + at org.springframework.web.servlet.handler.AbstractHandlerMethodExceptionResolver.doResolveException(AbstractHandlerMethodExceptionResolver.java:74) + at org.springframework.web.servlet.handler.AbstractHandlerExceptionResolver.resolveException(AbstractHandlerExceptionResolver.java:175) + at org.springframework.web.servlet.handler.HandlerExceptionResolverComposite.resolveException(HandlerExceptionResolverComposite.java:80) + at org.springframework.web.servlet.DispatcherServlet.processHandlerException(DispatcherServlet.java:1358) + at org.springframework.web.servlet.DispatcherServlet.processDispatchResult(DispatcherServlet.java:1161) + at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1106) + at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979) + at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014) + at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:903) + at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:564) + at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885) + at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) + at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) + at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) + at cn.dev33.satoken.filter.SaPathCheckFilterForJakartaServlet.doFilter(SaPathCheckFilterForJakartaServlet.java:55) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) + at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) + at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90) + at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:483) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:115) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:344) + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:384) + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:905) + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) + at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) + at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) + at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) + at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) + at java.base/java.lang.Thread.run(Thread.java:833) +2024-09-23 20:44:27.089 [http-nio-8080-exec-1] ERROR o.a.c.c.C.[.[.[.[dispatcherServlet] - Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed: java.lang.NumberFormatException: For input string: "index"] with root cause +java.lang.NumberFormatException: For input string: "index" + at java.base/java.lang.NumberFormatException.forInputString(NumberFormatException.java:67) + at java.base/java.lang.Long.parseLong(Long.java:711) + at java.base/java.lang.Long.parseLong(Long.java:836) + at com.guaiguailang.harmony.service.impl.SystemServiceImpl.getMenu(SystemServiceImpl.java:46) + at com.guaiguailang.harmony.controller.SystemController.getMenu(SystemController.java:32) + at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) + at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.base/java.lang.reflect.Method.invoke(Method.java:568) + at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:255) + at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:188) + at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:118) + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:926) + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:831) + at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) + at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1089) + at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979) + at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014) + at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:903) + at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:564) + at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885) + at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) + at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) + at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) + at cn.dev33.satoken.filter.SaPathCheckFilterForJakartaServlet.doFilter(SaPathCheckFilterForJakartaServlet.java:55) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) + at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) + at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90) + at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:483) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:115) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:344) + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:384) + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:905) + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) + at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) + at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) + at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) + at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) + at java.base/java.lang.Thread.run(Thread.java:833) +2024-09-23 20:47:08.258 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown initiated... +2024-09-23 20:47:08.263 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown completed. +2024-09-23 20:47:11.925 [main] INFO o.s.boot.SpringApplication - +██╗ ██╗██████╗ ██╗██╗ █████╗ ███╗ ██╗ ██████╗ +╚██╗██╔╝██╔══██╗██║██║ ██╔══██╗████╗ ██║██╔════╝ + ╚███╔╝ ██████╔╝██║██║ ███████║██╔██╗ ██║██║ ███╗ + ██╔██╗ ██╔══██╗██║██║ ██╔══██║██║╚██╗██║██║ ██║ +██╔╝ ██╗██║ ██║██║███████╗██║ ██║██║ ╚████║╚██████╔╝ +╚═╝ ╚═╝╚═╝ ╚═╝╚═╝╚══════╝╚═╝ ╚═╝╚═╝ ╚═══╝ ╚═════╝ + +^_^ 服务启动成功 He Sheng +# 项目名称:harmony-life-server +# 项目版本:1.0.0 +# 框架版本:3.3.4 +# 最后更新于 2024年 9月 25日 + + +2024-09-23 20:47:11.968 [main] INFO c.g.h.HarmonyLifeServerApplication - Starting HarmonyLifeServerApplication using Java 17.0.8 with PID 23844 (C:\Users\xrilang\Desktop\harmony-life\harmony-life-server\harmony-life-server\target\classes started by xrilang in C:\Users\xrilang\Desktop\harmony-life\harmony-life-server\harmony-life-server) +2024-09-23 20:47:11.969 [main] DEBUG c.g.h.HarmonyLifeServerApplication - Running with Spring Boot v3.3.4, Spring v6.1.13 +2024-09-23 20:47:11.969 [main] INFO c.g.h.HarmonyLifeServerApplication - No active profile set, falling back to 1 default profile: "default" +2024-09-23 20:47:12.496 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode +2024-09-23 20:47:12.497 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data JDBC repositories in DEFAULT mode. +2024-09-23 20:47:12.508 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 8 ms. Found 0 JDBC repository interfaces. +2024-09-23 20:47:12.518 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode +2024-09-23 20:47:12.520 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2024-09-23 20:47:12.531 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 5 ms. Found 0 Redis repository interfaces. +2024-09-23 20:47:12.936 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat initialized with port 8080 (http) +2024-09-23 20:47:12.945 [main] INFO o.a.catalina.core.StandardService - Starting service [Tomcat] +2024-09-23 20:47:12.945 [main] INFO o.a.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/10.1.30] +2024-09-23 20:47:12.999 [main] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring embedded WebApplicationContext +2024-09-23 20:47:12.999 [main] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 1002 ms +2024-09-23 20:47:13.698 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Starting... +2024-09-23 20:47:13.801 [main] INFO com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - Added connection com.mysql.cj.jdbc.ConnectionImpl@74a1d60e +2024-09-23 20:47:13.802 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Start completed. +2024-09-23 20:47:13.928 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat started on port 8080 (http) with context path '/' +2024-09-23 20:47:13.935 [main] INFO c.g.h.HarmonyLifeServerApplication - Started HarmonyLifeServerApplication in 2.314 seconds (process running for 2.729) +2024-09-23 20:47:18.646 [http-nio-8080-exec-1] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring DispatcherServlet 'dispatcherServlet' +2024-09-23 20:47:18.647 [http-nio-8080-exec-1] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet' +2024-09-23 20:47:18.648 [http-nio-8080-exec-1] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 1 ms +2024-09-23 20:47:19.001 [http-nio-8080-exec-1] DEBUG c.g.h.m.SystemMapper.getAllMenus - ==> Preparing: SELECT id, title, `key`, name, component, redirect, icon, status, parent, `order` FROM system_menu ORDER BY `order` +2024-09-23 20:47:19.016 [http-nio-8080-exec-1] DEBUG c.g.h.m.SystemMapper.getAllMenus - ==> Parameters: +2024-09-23 20:47:19.036 [http-nio-8080-exec-1] DEBUG c.g.h.m.SystemMapper.getAllMenus - <== Total: 6 +2024-09-23 20:47:19.039 [http-nio-8080-exec-1] ERROR c.g.h.config.GlobalExceptionHandler - ==========ERROR==========START========== +2024-09-23 20:47:19.039 [http-nio-8080-exec-1] ERROR c.g.h.config.GlobalExceptionHandler - 错误消息: +2024-09-23 20:47:19.039 [http-nio-8080-exec-1] ERROR c.g.h.config.GlobalExceptionHandler - 错误类型:For input string: "index" +2024-09-23 20:47:19.040 [http-nio-8080-exec-1] WARN o.s.w.s.m.m.a.ExceptionHandlerExceptionResolver - Failure in @ExceptionHandler com.guaiguailang.harmony.config.GlobalExceptionHandler#handlerException(Exception) +java.lang.NullPointerException: Cannot invoke "java.lang.Throwable.toString()" because the return value of "java.lang.Exception.getCause()" is null + at com.guaiguailang.harmony.config.GlobalExceptionHandler.handlerException(GlobalExceptionHandler.java:20) + at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) + at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.base/java.lang.reflect.Method.invoke(Method.java:568) + at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:255) + at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:188) + at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:118) + at org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver.doResolveHandlerMethodException(ExceptionHandlerExceptionResolver.java:432) + at org.springframework.web.servlet.handler.AbstractHandlerMethodExceptionResolver.doResolveException(AbstractHandlerMethodExceptionResolver.java:74) + at org.springframework.web.servlet.handler.AbstractHandlerExceptionResolver.resolveException(AbstractHandlerExceptionResolver.java:175) + at org.springframework.web.servlet.handler.HandlerExceptionResolverComposite.resolveException(HandlerExceptionResolverComposite.java:80) + at org.springframework.web.servlet.DispatcherServlet.processHandlerException(DispatcherServlet.java:1358) + at org.springframework.web.servlet.DispatcherServlet.processDispatchResult(DispatcherServlet.java:1161) + at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1106) + at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979) + at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014) + at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:903) + at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:564) + at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885) + at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) + at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) + at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) + at cn.dev33.satoken.filter.SaPathCheckFilterForJakartaServlet.doFilter(SaPathCheckFilterForJakartaServlet.java:55) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) + at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) + at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90) + at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:483) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:115) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:344) + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:384) + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:905) + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) + at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) + at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) + at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) + at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) + at java.base/java.lang.Thread.run(Thread.java:833) +2024-09-23 20:47:19.042 [http-nio-8080-exec-1] ERROR o.a.c.c.C.[.[.[.[dispatcherServlet] - Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed: java.lang.NumberFormatException: For input string: "index"] with root cause +java.lang.NumberFormatException: For input string: "index" + at java.base/java.lang.NumberFormatException.forInputString(NumberFormatException.java:67) + at java.base/java.lang.Long.parseLong(Long.java:711) + at java.base/java.lang.Long.parseLong(Long.java:836) + at com.guaiguailang.harmony.service.impl.SystemServiceImpl.getMenu(SystemServiceImpl.java:46) + at com.guaiguailang.harmony.controller.SystemController.getMenu(SystemController.java:32) + at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) + at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.base/java.lang.reflect.Method.invoke(Method.java:568) + at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:255) + at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:188) + at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:118) + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:926) + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:831) + at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) + at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1089) + at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979) + at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014) + at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:903) + at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:564) + at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885) + at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) + at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) + at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) + at cn.dev33.satoken.filter.SaPathCheckFilterForJakartaServlet.doFilter(SaPathCheckFilterForJakartaServlet.java:55) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) + at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) + at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90) + at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:483) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:115) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:344) + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:384) + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:905) + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) + at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) + at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) + at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) + at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) + at java.base/java.lang.Thread.run(Thread.java:833) +2024-09-23 20:50:44.918 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown initiated... +2024-09-23 20:50:44.923 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown completed. +2024-09-23 20:50:48.656 [main] INFO o.s.boot.SpringApplication - +██╗ ██╗██████╗ ██╗██╗ █████╗ ███╗ ██╗ ██████╗ +╚██╗██╔╝██╔══██╗██║██║ ██╔══██╗████╗ ██║██╔════╝ + ╚███╔╝ ██████╔╝██║██║ ███████║██╔██╗ ██║██║ ███╗ + ██╔██╗ ██╔══██╗██║██║ ██╔══██║██║╚██╗██║██║ ██║ +██╔╝ ██╗██║ ██║██║███████╗██║ ██║██║ ╚████║╚██████╔╝ +╚═╝ ╚═╝╚═╝ ╚═╝╚═╝╚══════╝╚═╝ ╚═╝╚═╝ ╚═══╝ ╚═════╝ + +^_^ 服务启动成功 He Sheng +# 项目名称:harmony-life-server +# 项目版本:1.0.0 +# 框架版本:3.3.4 +# 最后更新于 2024年 9月 25日 + + +2024-09-23 20:50:48.696 [main] INFO c.g.h.HarmonyLifeServerApplication - Starting HarmonyLifeServerApplication using Java 17.0.8 with PID 7636 (C:\Users\xrilang\Desktop\harmony-life\harmony-life-server\harmony-life-server\target\classes started by xrilang in C:\Users\xrilang\Desktop\harmony-life\harmony-life-server\harmony-life-server) +2024-09-23 20:50:48.697 [main] DEBUG c.g.h.HarmonyLifeServerApplication - Running with Spring Boot v3.3.4, Spring v6.1.13 +2024-09-23 20:50:48.697 [main] INFO c.g.h.HarmonyLifeServerApplication - No active profile set, falling back to 1 default profile: "default" +2024-09-23 20:50:49.214 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode +2024-09-23 20:50:49.215 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data JDBC repositories in DEFAULT mode. +2024-09-23 20:50:49.226 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 7 ms. Found 0 JDBC repository interfaces. +2024-09-23 20:50:49.236 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode +2024-09-23 20:50:49.237 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2024-09-23 20:50:49.249 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 6 ms. Found 0 Redis repository interfaces. +2024-09-23 20:50:49.660 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat initialized with port 8080 (http) +2024-09-23 20:50:49.673 [main] INFO o.a.catalina.core.StandardService - Starting service [Tomcat] +2024-09-23 20:50:49.674 [main] INFO o.a.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/10.1.30] +2024-09-23 20:50:49.729 [main] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring embedded WebApplicationContext +2024-09-23 20:50:49.729 [main] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 1005 ms +2024-09-23 20:50:50.435 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Starting... +2024-09-23 20:50:50.529 [main] INFO com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - Added connection com.mysql.cj.jdbc.ConnectionImpl@645c9f0f +2024-09-23 20:50:50.530 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Start completed. +2024-09-23 20:50:50.657 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat started on port 8080 (http) with context path '/' +2024-09-23 20:50:50.662 [main] INFO c.g.h.HarmonyLifeServerApplication - Started HarmonyLifeServerApplication in 2.316 seconds (process running for 2.721) +2024-09-23 20:50:56.497 [http-nio-8080-exec-1] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring DispatcherServlet 'dispatcherServlet' +2024-09-23 20:50:56.497 [http-nio-8080-exec-1] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet' +2024-09-23 20:50:56.498 [http-nio-8080-exec-1] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 1 ms +2024-09-23 20:50:56.843 [http-nio-8080-exec-1] DEBUG c.g.h.m.SystemMapper.getAllMenus - ==> Preparing: SELECT id, title, `key`, name, component, redirect, icon, status, parent, `order` FROM system_menu ORDER BY `order` +2024-09-23 20:50:56.862 [http-nio-8080-exec-1] DEBUG c.g.h.m.SystemMapper.getAllMenus - ==> Parameters: +2024-09-23 20:50:56.881 [http-nio-8080-exec-1] DEBUG c.g.h.m.SystemMapper.getAllMenus - <== Total: 6 +2024-09-23 20:53:08.121 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown initiated... +2024-09-23 20:53:08.125 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown completed. +2024-09-23 20:53:10.392 [main] INFO o.s.boot.SpringApplication - +██╗ ██╗██████╗ ██╗██╗ █████╗ ███╗ ██╗ ██████╗ +╚██╗██╔╝██╔══██╗██║██║ ██╔══██╗████╗ ██║██╔════╝ + ╚███╔╝ ██████╔╝██║██║ ███████║██╔██╗ ██║██║ ███╗ + ██╔██╗ ██╔══██╗██║██║ ██╔══██║██║╚██╗██║██║ ██║ +██╔╝ ██╗██║ ██║██║███████╗██║ ██║██║ ╚████║╚██████╔╝ +╚═╝ ╚═╝╚═╝ ╚═╝╚═╝╚══════╝╚═╝ ╚═╝╚═╝ ╚═══╝ ╚═════╝ + +^_^ 服务启动成功 He Sheng +# 项目名称:harmony-life-server +# 项目版本:1.0.0 +# 框架版本:3.3.4 +# 最后更新于 2024年 9月 25日 + + +2024-09-23 20:53:10.432 [main] INFO c.g.h.HarmonyLifeServerApplication - Starting HarmonyLifeServerApplication using Java 17.0.8 with PID 33992 (C:\Users\xrilang\Desktop\harmony-life\harmony-life-server\harmony-life-server\target\classes started by xrilang in C:\Users\xrilang\Desktop\harmony-life\harmony-life-server\harmony-life-server) +2024-09-23 20:53:10.433 [main] DEBUG c.g.h.HarmonyLifeServerApplication - Running with Spring Boot v3.3.4, Spring v6.1.13 +2024-09-23 20:53:10.433 [main] INFO c.g.h.HarmonyLifeServerApplication - No active profile set, falling back to 1 default profile: "default" +2024-09-23 20:53:10.967 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode +2024-09-23 20:53:10.968 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data JDBC repositories in DEFAULT mode. +2024-09-23 20:53:10.979 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 8 ms. Found 0 JDBC repository interfaces. +2024-09-23 20:53:10.989 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode +2024-09-23 20:53:10.990 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2024-09-23 20:53:11.001 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 5 ms. Found 0 Redis repository interfaces. +2024-09-23 20:53:11.416 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat initialized with port 8080 (http) +2024-09-23 20:53:11.427 [main] INFO o.a.catalina.core.StandardService - Starting service [Tomcat] +2024-09-23 20:53:11.427 [main] INFO o.a.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/10.1.30] +2024-09-23 20:53:11.482 [main] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring embedded WebApplicationContext +2024-09-23 20:53:11.483 [main] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 1023 ms +2024-09-23 20:53:12.170 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Starting... +2024-09-23 20:53:12.266 [main] INFO com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - Added connection com.mysql.cj.jdbc.ConnectionImpl@df432ec +2024-09-23 20:53:12.267 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Start completed. +2024-09-23 20:53:12.391 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat started on port 8080 (http) with context path '/' +2024-09-23 20:53:12.397 [main] INFO c.g.h.HarmonyLifeServerApplication - Started HarmonyLifeServerApplication in 2.308 seconds (process running for 2.733) +2024-09-23 20:53:42.841 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown initiated... +2024-09-23 20:53:42.846 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown completed. +2024-09-23 20:53:45.020 [main] INFO o.s.boot.SpringApplication - +██╗ ██╗██████╗ ██╗██╗ █████╗ ███╗ ██╗ ██████╗ +╚██╗██╔╝██╔══██╗██║██║ ██╔══██╗████╗ ██║██╔════╝ + ╚███╔╝ ██████╔╝██║██║ ███████║██╔██╗ ██║██║ ███╗ + ██╔██╗ ██╔══██╗██║██║ ██╔══██║██║╚██╗██║██║ ██║ +██╔╝ ██╗██║ ██║██║███████╗██║ ██║██║ ╚████║╚██████╔╝ +╚═╝ ╚═╝╚═╝ ╚═╝╚═╝╚══════╝╚═╝ ╚═╝╚═╝ ╚═══╝ ╚═════╝ + +^_^ 服务启动成功 He Sheng +# 项目名称:harmony-life-server +# 项目版本:1.0.0 +# 框架版本:3.3.4 +# 最后更新于 2024年 9月 25日 + + +2024-09-23 20:53:45.063 [main] INFO c.g.h.HarmonyLifeServerApplication - Starting HarmonyLifeServerApplication using Java 17.0.8 with PID 21640 (C:\Users\xrilang\Desktop\harmony-life\harmony-life-server\harmony-life-server\target\classes started by xrilang in C:\Users\xrilang\Desktop\harmony-life\harmony-life-server\harmony-life-server) +2024-09-23 20:53:45.064 [main] DEBUG c.g.h.HarmonyLifeServerApplication - Running with Spring Boot v3.3.4, Spring v6.1.13 +2024-09-23 20:53:45.065 [main] INFO c.g.h.HarmonyLifeServerApplication - No active profile set, falling back to 1 default profile: "default" +2024-09-23 20:53:45.612 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode +2024-09-23 20:53:45.613 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data JDBC repositories in DEFAULT mode. +2024-09-23 20:53:45.625 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 8 ms. Found 0 JDBC repository interfaces. +2024-09-23 20:53:45.635 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode +2024-09-23 20:53:45.636 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2024-09-23 20:53:45.649 [main] INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 5 ms. Found 0 Redis repository interfaces. +2024-09-23 20:53:46.055 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat initialized with port 8080 (http) +2024-09-23 20:53:46.064 [main] INFO o.a.catalina.core.StandardService - Starting service [Tomcat] +2024-09-23 20:53:46.064 [main] INFO o.a.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/10.1.30] +2024-09-23 20:53:46.119 [main] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring embedded WebApplicationContext +2024-09-23 20:53:46.119 [main] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 1024 ms +2024-09-23 20:53:46.819 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Starting... +2024-09-23 20:53:46.921 [main] INFO com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - Added connection com.mysql.cj.jdbc.ConnectionImpl@dd060be +2024-09-23 20:53:46.922 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Start completed. +2024-09-23 20:53:47.053 [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat started on port 8080 (http) with context path '/' +2024-09-23 20:53:47.059 [main] INFO c.g.h.HarmonyLifeServerApplication - Started HarmonyLifeServerApplication in 2.356 seconds (process running for 2.761) +2024-09-23 20:54:50.600 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown initiated... +2024-09-23 20:54:50.604 [SpringApplicationShutdownHook] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown completed. +2024-09-23 20:54:52.849 [main] ERROR o.s.boot.SpringApplication - Application run failed +%PARSER_ERROR[if] {java.lang.IllegalStateException: java.lang.IllegalStateException: Logback configuration error detected: +ERROR in ch.qos.logback.core.pattern.parser.Compiler@556d0826 - There is no conversion class registered for composite conversion word [if] +ERROR in ch.qos.logback.core.pattern.parser.Compiler@556d0826 - Failed to create converter for [%if] keyword +ERROR in ch.qos.logback.core.pattern.parser.Compiler@66ce957f - There is no conversion class registered for composite conversion word [if] +ERROR in ch.qos.logback.core.pattern.parser.Compiler@66ce957f - Failed to create converter for [%if] keyword + at org.springframework.boot.context.logging.LoggingApplicationListener.initializeSystem(LoggingApplicationListener.java:347) + at org.springframework.boot.context.logging.LoggingApplicationListener.initialize(LoggingApplicationListener.java:298) + at org.springframework.boot.context.logging.LoggingApplicationListener.onApplicationEnvironmentPreparedEvent(LoggingApplicationListener.java:246) + at org.springframework.boot.context.logging.LoggingApplicationListener.onApplicationEvent(LoggingApplicationListener.java:223) + at org.springframework.context.event.SimpleApplicationEventMulticaster.doInvokeListener(SimpleApplicationEventMulticaster.java:185) + at org.springframework.context.event.SimpleApplicationEventMulticaster.invokeListener(SimpleApplicationEventMulticaster.java:178) + at org.springframework.context.event.SimpleApplicationEventMulticaster.multicastEvent(SimpleApplicationEventMulticaster.java:156) + at org.springframework.context.event.SimpleApplicationEventMulticaster.multicastEvent(SimpleApplicationEventMulticaster.java:138) + at org.springframework.boot.context.event.EventPublishingRunListener.multicastInitialEvent(EventPublishingRunListener.java:136) + at org.springframework.boot.context.event.EventPublishingRunListener.environmentPrepared(EventPublishingRunListener.java:81) + at org.springframework.boot.SpringApplicationRunListeners.lambda$environmentPrepared$2(SpringApplicationRunListeners.java:64) + at java.base/java.lang.Iterable.forEach(Iterable.java:75) + at org.springframework.boot.SpringApplicationRunListeners.doWithListeners(SpringApplicationRunListeners.java:118) + at org.springframework.boot.SpringApplicationRunListeners.doWithListeners(SpringApplicationRunListeners.java:112) + at org.springframework.boot.SpringApplicationRunListeners.environmentPrepared(SpringApplicationRunListeners.java:63) + at org.springframework.boot.SpringApplication.prepareEnvironment(SpringApplication.java:370) + at org.springframework.boot.SpringApplication.run(SpringApplication.java:330) + at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) + at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) + at com.guaiguailang.harmony.HarmonyLifeServerApplication.main(HarmonyLifeServerApplication.java:16) +Caused by: java.lang.IllegalStateException: Logback configuration error detected: +ERROR in ch.qos.logback.core.pattern.parser.Compiler@556d0826 - There is no conversion class registered for composite conversion word [if] +ERROR in ch.qos.logback.core.pattern.parser.Compiler@556d0826 - Failed to create converter for [%if] keyword +ERROR in ch.qos.logback.core.pattern.parser.Compiler@66ce957f - There is no conversion class registered for composite conversion word [if] +ERROR in ch.qos.logback.core.pattern.parser.Compiler@66ce957f - Failed to create converter for [%if] keyword + at org.springframework.boot.logging.logback.LogbackLoggingSystem.reportConfigurationErrorsIfNecessary(LogbackLoggingSystem.java:284) + at org.springframework.boot.logging.logback.LogbackLoggingSystem.loadConfiguration(LogbackLoggingSystem.java:262) + at org.springframework.boot.logging.AbstractLoggingSystem.initializeWithSpecificConfig(AbstractLoggingSystem.java:67) + at org.springframework.boot.logging.AbstractLoggingSystem.initialize(AbstractLoggingSystem.java:58) + at org.springframework.boot.logging.logback.LogbackLoggingSystem.initialize(LogbackLoggingSystem.java:193) + at org.springframework.boot.context.logging.LoggingApplicationListener.initializeSystem(LoggingApplicationListener.java:335) + ... 19 common frames omitted +}2024-09-23 20:58:57.034 [main] ERROR o.s.boot.SpringApplication - Application run failed +%PARSER_ERROR[if] {java.lang.IllegalStateException: java.lang.IllegalStateException: Logback configuration error detected: +ERROR in ch.qos.logback.core.pattern.parser.Compiler@556d0826 - There is no conversion class registered for composite conversion word [if] +ERROR in ch.qos.logback.core.pattern.parser.Compiler@556d0826 - Failed to create converter for [%if] keyword +ERROR in ch.qos.logback.core.pattern.parser.Compiler@556d0826 - There is no conversion class registered for conversion word [ansi] +ERROR in ch.qos.logback.core.pattern.parser.Compiler@556d0826 - [ansi] is not a valid conversion word +ERROR in ch.qos.logback.core.pattern.parser.Compiler@556d0826 - There is no conversion class registered for conversion word [ansi] +ERROR in ch.qos.logback.core.pattern.parser.Compiler@556d0826 - [ansi] is not a valid conversion word +ERROR in ch.qos.logback.core.pattern.parser.Compiler@66ce957f - There is no conversion class registered for composite conversion word [if] +ERROR in ch.qos.logback.core.pattern.parser.Compiler@66ce957f - Failed to create converter for [%if] keyword + at org.springframework.boot.context.logging.LoggingApplicationListener.initializeSystem(LoggingApplicationListener.java:347) + at org.springframework.boot.context.logging.LoggingApplicationListener.initialize(LoggingApplicationListener.java:298) + at org.springframework.boot.context.logging.LoggingApplicationListener.onApplicationEnvironmentPreparedEvent(LoggingApplicationListener.java:246) + at org.springframework.boot.context.logging.LoggingApplicationListener.onApplicationEvent(LoggingApplicationListener.java:223) + at org.springframework.context.event.SimpleApplicationEventMulticaster.doInvokeListener(SimpleApplicationEventMulticaster.java:185) + at org.springframework.context.event.SimpleApplicationEventMulticaster.invokeListener(SimpleApplicationEventMulticaster.java:178) + at org.springframework.context.event.SimpleApplicationEventMulticaster.multicastEvent(SimpleApplicationEventMulticaster.java:156) + at org.springframework.context.event.SimpleApplicationEventMulticaster.multicastEvent(SimpleApplicationEventMulticaster.java:138) + at org.springframework.boot.context.event.EventPublishingRunListener.multicastInitialEvent(EventPublishingRunListener.java:136) + at org.springframework.boot.context.event.EventPublishingRunListener.environmentPrepared(EventPublishingRunListener.java:81) + at org.springframework.boot.SpringApplicationRunListeners.lambda$environmentPrepared$2(SpringApplicationRunListeners.java:64) + at java.base/java.lang.Iterable.forEach(Iterable.java:75) + at org.springframework.boot.SpringApplicationRunListeners.doWithListeners(SpringApplicationRunListeners.java:118) + at org.springframework.boot.SpringApplicationRunListeners.doWithListeners(SpringApplicationRunListeners.java:112) + at org.springframework.boot.SpringApplicationRunListeners.environmentPrepared(SpringApplicationRunListeners.java:63) + at org.springframework.boot.SpringApplication.prepareEnvironment(SpringApplication.java:370) + at org.springframework.boot.SpringApplication.run(SpringApplication.java:330) + at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) + at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) + at com.guaiguailang.harmony.HarmonyLifeServerApplication.main(HarmonyLifeServerApplication.java:16) +Caused by: java.lang.IllegalStateException: Logback configuration error detected: +ERROR in ch.qos.logback.core.pattern.parser.Compiler@556d0826 - There is no conversion class registered for composite conversion word [if] +ERROR in ch.qos.logback.core.pattern.parser.Compiler@556d0826 - Failed to create converter for [%if] keyword +ERROR in ch.qos.logback.core.pattern.parser.Compiler@556d0826 - There is no conversion class registered for conversion word [ansi] +ERROR in ch.qos.logback.core.pattern.parser.Compiler@556d0826 - [ansi] is not a valid conversion word +ERROR in ch.qos.logback.core.pattern.parser.Compiler@556d0826 - There is no conversion class registered for conversion word [ansi] +ERROR in ch.qos.logback.core.pattern.parser.Compiler@556d0826 - [ansi] is not a valid conversion word +ERROR in ch.qos.logback.core.pattern.parser.Compiler@66ce957f - There is no conversion class registered for composite conversion word [if] +ERROR in ch.qos.logback.core.pattern.parser.Compiler@66ce957f - Failed to create converter for [%if] keyword + at org.springframework.boot.logging.logback.LogbackLoggingSystem.reportConfigurationErrorsIfNecessary(LogbackLoggingSystem.java:284) + at org.springframework.boot.logging.logback.LogbackLoggingSystem.loadConfiguration(LogbackLoggingSystem.java:262) + at org.springframework.boot.logging.AbstractLoggingSystem.initializeWithSpecificConfig(AbstractLoggingSystem.java:67) + at org.springframework.boot.logging.AbstractLoggingSystem.initialize(AbstractLoggingSystem.java:58) + at org.springframework.boot.logging.logback.LogbackLoggingSystem.initialize(LogbackLoggingSystem.java:193) + at org.springframework.boot.context.logging.LoggingApplicationListener.initializeSystem(LoggingApplicationListener.java:335) + ... 19 common frames omitted +}2024-09-24 11:05:02.259 INFO o.s.boot.SpringApplication - +██╗ ██╗██████╗ ██╗██╗ █████╗ ███╗ ██╗ ██████╗ +╚██╗██╔╝██╔══██╗██║██║ ██╔══██╗████╗ ██║██╔════╝ + ╚███╔╝ ██████╔╝██║██║ ███████║██╔██╗ ██║██║ ███╗ + ██╔██╗ ██╔══██╗██║██║ ██╔══██║██║╚██╗██║██║ ██║ +██╔╝ ██╗██║ ██║██║███████╗██║ ██║██║ ╚████║╚██████╔╝ +╚═╝ ╚═╝╚═╝ ╚═╝╚═╝╚══════╝╚═╝ ╚═╝╚═╝ ╚═══╝ ╚═════╝ + +^_^ 服务启动成功 He Sheng +# 项目名称:harmony-life-server +# 项目版本:1.0.0 +# 框架版本:3.3.4 +# 最后更新于 2024年 9月 25日 + + +2024-09-24 11:05:02.304 INFO c.g.h.HarmonyLifeServerApplication - Starting HarmonyLifeServerApplication using Java 17.0.8 with PID 25956 (C:\Users\xrilang\Desktop\harmony-life\harmony-life-server\harmony-life-server\target\classes started by xrilang in C:\Users\xrilang\Desktop\harmony-life\harmony-life-server\harmony-life-server) +2024-09-24 11:05:02.304 DEBUG c.g.h.HarmonyLifeServerApplication - Running with Spring Boot v3.3.4, Spring v6.1.13 +2024-09-24 11:05:02.305 INFO c.g.h.HarmonyLifeServerApplication - No active profile set, falling back to 1 default profile: "default" +2024-09-24 11:05:02.834 INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode +2024-09-24 11:05:02.835 INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data JDBC repositories in DEFAULT mode. +2024-09-24 11:05:02.845 INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 7 ms. Found 0 JDBC repository interfaces. +2024-09-24 11:05:02.855 INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode +2024-09-24 11:05:02.856 INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2024-09-24 11:05:02.868 INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 5 ms. Found 0 Redis repository interfaces. +2024-09-24 11:05:03.268 INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat initialized with port 8080 (http) +2024-09-24 11:05:03.277 INFO o.a.catalina.core.StandardService - Starting service [Tomcat] +2024-09-24 11:05:03.277 INFO o.a.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/10.1.30] +2024-09-24 11:05:03.330 INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring embedded WebApplicationContext +2024-09-24 11:05:03.331 INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 999 ms +2024-09-24 11:05:04.025 INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Starting... +2024-09-24 11:05:04.118 INFO com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - Added connection com.mysql.cj.jdbc.ConnectionImpl@e67d3b7 +2024-09-24 11:05:04.119 INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Start completed. +2024-09-24 11:05:04.243 INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat started on port 8080 (http) with context path '/' +2024-09-24 11:05:04.249 INFO c.g.h.HarmonyLifeServerApplication - Started HarmonyLifeServerApplication in 2.296 seconds (process running for 2.684) +2024-09-24 11:05:09.428 INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring DispatcherServlet 'dispatcherServlet' +2024-09-24 11:05:09.428 INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet' +2024-09-24 11:05:09.429 INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 1 ms +2024-09-24 11:05:09.759 INFO c.g.h.service.impl.UserServiceImpl - 查询用户1的用户信息 +2024-09-24 11:05:09.771 DEBUG c.g.h.mapper.UserMapper.getUserById - ==> Preparing: SELECT * from user_info where id=? AND status=1 +2024-09-24 11:05:09.786 DEBUG c.g.h.mapper.UserMapper.getUserById - ==> Parameters: 1(Long) +2024-09-24 11:05:09.805 DEBUG c.g.h.mapper.UserMapper.getUserById - <== Total: 1 +2024-09-24 11:05:09.806 DEBUG c.g.h.m.AuthMapper.getUserRoleById - ==> Preparing: SELECT * from system_role where role_id=? AND status=1 +2024-09-24 11:05:09.807 DEBUG c.g.h.m.AuthMapper.getUserRoleById - ==> Parameters: root(String) +2024-09-24 11:05:09.810 DEBUG c.g.h.m.AuthMapper.getUserRoleById - <== Total: 1 +2024-09-24 11:05:09.811 DEBUG c.g.h.m.A.getUserPermissionListByRoleId - ==> Preparing: select * from system_role_permission where role_id=? AND status=1 +2024-09-24 11:05:09.811 DEBUG c.g.h.m.A.getUserPermissionListByRoleId - ==> Parameters: root(String) +2024-09-24 11:05:09.816 DEBUG c.g.h.m.A.getUserPermissionListByRoleId - <== Total: 16 +2024-09-24 11:05:09.817 INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:SystemPermission(id=1, permissionId=dashboard, permissionName=null, status=1) +2024-09-24 11:05:09.818 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-24 11:05:09.818 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: dashboard(String), 1(Long) +2024-09-24 11:05:09.822 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 0 +2024-09-24 11:05:09.822 INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:SystemPermission(id=2, permissionId=exception, permissionName=null, status=1) +2024-09-24 11:05:09.822 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-24 11:05:09.822 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: exception(String), 1(Long) +2024-09-24 11:05:09.823 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 0 +2024-09-24 11:05:09.823 INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:SystemPermission(id=3, permissionId=result, permissionName=null, status=1) +2024-09-24 11:05:09.823 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-24 11:05:09.823 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: result(String), 1(Long) +2024-09-24 11:05:09.824 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 0 +2024-09-24 11:05:09.824 INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:SystemPermission(id=4, permissionId=profile, permissionName=null, status=1) +2024-09-24 11:05:09.824 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-24 11:05:09.824 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: profile(String), 1(Long) +2024-09-24 11:05:09.825 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 0 +2024-09-24 11:05:09.825 INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:SystemPermission(id=5, permissionId=table, permissionName=null, status=1) +2024-09-24 11:05:09.825 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-24 11:05:09.825 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: table(String), 1(Long) +2024-09-24 11:05:09.826 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 0 +2024-09-24 11:05:09.826 INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:SystemPermission(id=6, permissionId=form, permissionName=null, status=1) +2024-09-24 11:05:09.826 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-24 11:05:09.826 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: form(String), 1(Long) +2024-09-24 11:05:09.827 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 0 +2024-09-24 11:05:09.827 INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:SystemPermission(id=7, permissionId=order, permissionName=null, status=1) +2024-09-24 11:05:09.827 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-24 11:05:09.827 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: order(String), 1(Long) +2024-09-24 11:05:09.827 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 0 +2024-09-24 11:05:09.827 INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:SystemPermission(id=8, permissionId=permission, permissionName=null, status=1) +2024-09-24 11:05:09.829 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-24 11:05:09.829 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: permission(String), 1(Long) +2024-09-24 11:05:09.830 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 6 +2024-09-24 11:05:09.830 INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:SystemPermission(id=9, permissionId=role, permissionName=null, status=1) +2024-09-24 11:05:09.830 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-24 11:05:09.830 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: role(String), 1(Long) +2024-09-24 11:05:09.832 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 6 +2024-09-24 11:05:09.832 INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:SystemPermission(id=10, permissionId=user, permissionName=null, status=1) +2024-09-24 11:05:09.833 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-24 11:05:09.833 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: user(String), 1(Long) +2024-09-24 11:05:09.833 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 0 +2024-09-24 11:05:09.833 INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:SystemPermission(id=11, permissionId=system, permissionName=null, status=1) +2024-09-24 11:05:09.833 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-24 11:05:09.833 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: system(String), 1(Long) +2024-09-24 11:05:09.833 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 0 +2024-09-24 11:05:09.833 INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:SystemPermission(id=12, permissionId=otherPage, permissionName=null, status=1) +2024-09-24 11:05:09.834 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-24 11:05:09.834 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: otherPage(String), 1(Long) +2024-09-24 11:05:09.834 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 0 +2024-09-24 11:05:09.834 INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:SystemPermission(id=13, permissionId=UserList, permissionName=null, status=1) +2024-09-24 11:05:09.835 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-24 11:05:09.835 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: UserList(String), 1(Long) +2024-09-24 11:05:09.836 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 0 +2024-09-24 11:05:09.837 INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:SystemPermission(id=14, permissionId=RoleList, permissionName=null, status=1) +2024-09-24 11:05:09.837 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-24 11:05:09.837 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: RoleList(String), 1(Long) +2024-09-24 11:05:09.838 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 0 +2024-09-24 11:05:09.838 INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:SystemPermission(id=15, permissionId=support, permissionName=null, status=1) +2024-09-24 11:05:09.838 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-24 11:05:09.838 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: support(String), 1(Long) +2024-09-24 11:05:09.839 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 0 +2024-09-24 11:05:09.839 INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:SystemPermission(id=16, permissionId=userManage, permissionName=null, status=1) +2024-09-24 11:05:09.839 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-24 11:05:09.839 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: userManage(String), 1(Long) +2024-09-24 11:05:09.840 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 0 +2024-09-24 11:05:09.847 INFO c.g.h.service.impl.UserServiceImpl - UserInfoLogin(id=1, name=萌狼蓝天, username=xrilang, avatar=https://q1.qlogo.cn/g?b=qq&nk=3447902411&s=640, email=null, telephone=null, status=0, lastLoginIp=null, lastLoginTime=null, createTime=null, creator=null, merchantCode=null, roleId=root, role=RoleInfo(id=root, name=超级管理员, description=最高权限, status=0, creatorId=null, createTime=null, deleted=0, permissions=[PermissionInfo(roleId=root, permissionId=dashboard, permissionName=null, actionEntitySet=[], actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=exception, permissionName=null, actionEntitySet=[], actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=result, permissionName=null, actionEntitySet=[], actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=profile, permissionName=null, actionEntitySet=[], actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=table, permissionName=null, actionEntitySet=[], actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=form, permissionName=null, actionEntitySet=[], actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=order, permissionName=null, actionEntitySet=[], actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=permission, permissionName=null, actionEntitySet=[ActionEntitySet(action=add, describe=新增, defaultCheck=false), ActionEntitySet(action=import, describe=导入, defaultCheck=false), ActionEntitySet(action=get, describe=详情, defaultCheck=false), ActionEntitySet(action=update, describe=更新, defaultCheck=false), ActionEntitySet(action=delete, describe=删除, defaultCheck=false), ActionEntitySet(action=export, describe=导出, defaultCheck=false)], actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=role, permissionName=null, actionEntitySet=[ActionEntitySet(action=add, describe=新增, defaultCheck=false), ActionEntitySet(action=import, describe=导入, defaultCheck=false), ActionEntitySet(action=get, describe=详情, defaultCheck=false), ActionEntitySet(action=update, describe=更新, defaultCheck=false), ActionEntitySet(action=delete, describe=删除, defaultCheck=false), ActionEntitySet(action=export, describe=导出, defaultCheck=false)], actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=user, permissionName=null, actionEntitySet=[], actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=system, permissionName=null, actionEntitySet=[], actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=otherPage, permissionName=null, actionEntitySet=[], actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=UserList, permissionName=null, actionEntitySet=[], actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=RoleList, permissionName=null, actionEntitySet=[], actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=support, permissionName=null, actionEntitySet=[], actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=userManage, permissionName=null, actionEntitySet=[], actionList=null, dataAccess=null)]), token=null, expireTime=null) +2024-09-24 11:08:37.269 INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown initiated... +2024-09-24 11:08:37.273 INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown completed. +2024-09-24 11:08:39.412 INFO o.s.boot.SpringApplication - +██╗ ██╗██████╗ ██╗██╗ █████╗ ███╗ ██╗ ██████╗ +╚██╗██╔╝██╔══██╗██║██║ ██╔══██╗████╗ ██║██╔════╝ + ╚███╔╝ ██████╔╝██║██║ ███████║██╔██╗ ██║██║ ███╗ + ██╔██╗ ██╔══██╗██║██║ ██╔══██║██║╚██╗██║██║ ██║ +██╔╝ ██╗██║ ██║██║███████╗██║ ██║██║ ╚████║╚██████╔╝ +╚═╝ ╚═╝╚═╝ ╚═╝╚═╝╚══════╝╚═╝ ╚═╝╚═╝ ╚═══╝ ╚═════╝ + +^_^ 服务启动成功 He Sheng +# 项目名称:harmony-life-server +# 项目版本:1.0.0 +# 框架版本:3.3.4 +# 最后更新于 2024年 9月 25日 + + +2024-09-24 11:08:39.451 INFO c.g.h.HarmonyLifeServerApplication - Starting HarmonyLifeServerApplication using Java 17.0.8 with PID 27028 (C:\Users\xrilang\Desktop\harmony-life\harmony-life-server\harmony-life-server\target\classes started by xrilang in C:\Users\xrilang\Desktop\harmony-life\harmony-life-server\harmony-life-server) +2024-09-24 11:08:39.451 DEBUG c.g.h.HarmonyLifeServerApplication - Running with Spring Boot v3.3.4, Spring v6.1.13 +2024-09-24 11:08:39.452 INFO c.g.h.HarmonyLifeServerApplication - No active profile set, falling back to 1 default profile: "default" +2024-09-24 11:08:39.980 INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode +2024-09-24 11:08:39.981 INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data JDBC repositories in DEFAULT mode. +2024-09-24 11:08:39.991 INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 8 ms. Found 0 JDBC repository interfaces. +2024-09-24 11:08:40.002 INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode +2024-09-24 11:08:40.003 INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2024-09-24 11:08:40.015 INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 5 ms. Found 0 Redis repository interfaces. +2024-09-24 11:08:40.407 INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat initialized with port 8080 (http) +2024-09-24 11:08:40.416 INFO o.a.catalina.core.StandardService - Starting service [Tomcat] +2024-09-24 11:08:40.416 INFO o.a.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/10.1.30] +2024-09-24 11:08:40.475 INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring embedded WebApplicationContext +2024-09-24 11:08:40.476 INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 996 ms +2024-09-24 11:08:41.166 INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Starting... +2024-09-24 11:08:41.257 INFO com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - Added connection com.mysql.cj.jdbc.ConnectionImpl@3aeb267 +2024-09-24 11:08:41.258 INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Start completed. +2024-09-24 11:08:41.383 INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat started on port 8080 (http) with context path '/' +2024-09-24 11:08:41.389 INFO c.g.h.HarmonyLifeServerApplication - Started HarmonyLifeServerApplication in 2.287 seconds (process running for 2.694) +2024-09-24 11:08:51.417 INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring DispatcherServlet 'dispatcherServlet' +2024-09-24 11:08:51.417 INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet' +2024-09-24 11:08:51.418 INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 1 ms +2024-09-24 11:08:51.756 INFO c.g.h.service.impl.UserServiceImpl - 查询用户1的用户信息 +2024-09-24 11:08:51.767 DEBUG c.g.h.mapper.UserMapper.getUserById - ==> Preparing: SELECT * from user_info where id=? AND status=1 +2024-09-24 11:08:51.780 DEBUG c.g.h.mapper.UserMapper.getUserById - ==> Parameters: 1(Long) +2024-09-24 11:08:51.797 DEBUG c.g.h.mapper.UserMapper.getUserById - <== Total: 1 +2024-09-24 11:08:51.799 DEBUG c.g.h.m.AuthMapper.getUserRoleById - ==> Preparing: SELECT * from system_role where role_id=? AND status=1 +2024-09-24 11:08:51.799 DEBUG c.g.h.m.AuthMapper.getUserRoleById - ==> Parameters: root(String) +2024-09-24 11:08:51.802 DEBUG c.g.h.m.AuthMapper.getUserRoleById - <== Total: 1 +2024-09-24 11:08:51.803 DEBUG c.g.h.m.A.getUserPermissionListByRoleId - ==> Preparing: select * from system_role_permission where role_id=? AND status=1 +2024-09-24 11:08:51.803 DEBUG c.g.h.m.A.getUserPermissionListByRoleId - ==> Parameters: root(String) +2024-09-24 11:08:51.807 DEBUG c.g.h.m.A.getUserPermissionListByRoleId - <== Total: 16 +2024-09-24 11:08:51.808 INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:SystemPermission(id=1, permissionId=dashboard, permissionName=null, status=1) +2024-09-24 11:08:51.809 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-24 11:08:51.809 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: dashboard(String), 1(Long) +2024-09-24 11:08:51.814 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 0 +2024-09-24 11:08:51.814 INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:SystemPermission(id=2, permissionId=exception, permissionName=null, status=1) +2024-09-24 11:08:51.814 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-24 11:08:51.815 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: exception(String), 1(Long) +2024-09-24 11:08:51.815 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 0 +2024-09-24 11:08:51.816 INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:SystemPermission(id=3, permissionId=result, permissionName=null, status=1) +2024-09-24 11:08:51.816 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-24 11:08:51.816 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: result(String), 1(Long) +2024-09-24 11:08:51.817 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 0 +2024-09-24 11:08:51.817 INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:SystemPermission(id=4, permissionId=profile, permissionName=null, status=1) +2024-09-24 11:08:51.817 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-24 11:08:51.817 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: profile(String), 1(Long) +2024-09-24 11:08:51.817 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 0 +2024-09-24 11:08:51.818 INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:SystemPermission(id=5, permissionId=table, permissionName=null, status=1) +2024-09-24 11:08:51.818 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-24 11:08:51.818 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: table(String), 1(Long) +2024-09-24 11:08:51.818 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 0 +2024-09-24 11:08:51.818 INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:SystemPermission(id=6, permissionId=form, permissionName=null, status=1) +2024-09-24 11:08:51.819 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-24 11:08:51.819 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: form(String), 1(Long) +2024-09-24 11:08:51.819 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 0 +2024-09-24 11:08:51.819 INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:SystemPermission(id=7, permissionId=order, permissionName=null, status=1) +2024-09-24 11:08:51.819 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-24 11:08:51.820 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: order(String), 1(Long) +2024-09-24 11:08:51.820 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 0 +2024-09-24 11:08:51.820 INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:SystemPermission(id=8, permissionId=permission, permissionName=null, status=1) +2024-09-24 11:08:51.820 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-24 11:08:51.821 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: permission(String), 1(Long) +2024-09-24 11:08:51.822 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 6 +2024-09-24 11:08:51.822 INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:SystemPermission(id=9, permissionId=role, permissionName=null, status=1) +2024-09-24 11:08:51.822 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-24 11:08:51.822 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: role(String), 1(Long) +2024-09-24 11:08:51.823 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 6 +2024-09-24 11:08:51.823 INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:SystemPermission(id=10, permissionId=user, permissionName=null, status=1) +2024-09-24 11:08:51.824 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-24 11:08:51.824 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: user(String), 1(Long) +2024-09-24 11:08:51.824 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 0 +2024-09-24 11:08:51.824 INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:SystemPermission(id=11, permissionId=system, permissionName=null, status=1) +2024-09-24 11:08:51.824 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-24 11:08:51.826 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: system(String), 1(Long) +2024-09-24 11:08:51.826 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 0 +2024-09-24 11:08:51.826 INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:SystemPermission(id=12, permissionId=otherPage, permissionName=null, status=1) +2024-09-24 11:08:51.826 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-24 11:08:51.826 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: otherPage(String), 1(Long) +2024-09-24 11:08:51.826 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 0 +2024-09-24 11:08:51.826 INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:SystemPermission(id=13, permissionId=UserList, permissionName=null, status=1) +2024-09-24 11:08:51.826 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-24 11:08:51.827 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: UserList(String), 1(Long) +2024-09-24 11:08:51.829 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 0 +2024-09-24 11:08:51.829 INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:SystemPermission(id=14, permissionId=RoleList, permissionName=null, status=1) +2024-09-24 11:08:51.829 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-24 11:08:51.829 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: RoleList(String), 1(Long) +2024-09-24 11:08:51.829 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 0 +2024-09-24 11:08:51.829 INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:SystemPermission(id=15, permissionId=support, permissionName=null, status=1) +2024-09-24 11:08:51.830 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-24 11:08:51.830 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: support(String), 1(Long) +2024-09-24 11:08:51.830 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 0 +2024-09-24 11:08:51.830 INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:SystemPermission(id=16, permissionId=userManage, permissionName=null, status=1) +2024-09-24 11:08:51.830 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-24 11:08:51.831 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: userManage(String), 1(Long) +2024-09-24 11:08:51.831 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 0 +2024-09-24 11:08:51.837 INFO c.g.h.service.impl.UserServiceImpl - UserInfoLogin(id=1, name=萌狼蓝天, username=xrilang, avatar=https://q1.qlogo.cn/g?b=qq&nk=3447902411&s=640, email=null, telephone=null, status=0, lastLoginIp=null, lastLoginTime=null, createTime=null, creator=null, merchantCode=null, roleId=root, role=RoleInfo(id=root, name=超级管理员, description=最高权限, status=0, creatorId=null, createTime=null, deleted=0, permissions=[PermissionInfo(roleId=root, permissionId=dashboard, permissionName=null, actionEntitySet=[], actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=exception, permissionName=null, actionEntitySet=[], actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=result, permissionName=null, actionEntitySet=[], actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=profile, permissionName=null, actionEntitySet=[], actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=table, permissionName=null, actionEntitySet=[], actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=form, permissionName=null, actionEntitySet=[], actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=order, permissionName=null, actionEntitySet=[], actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=permission, permissionName=null, actionEntitySet=[ActionEntitySet(action=add, describe=新增, defaultCheck=false), ActionEntitySet(action=import, describe=导入, defaultCheck=false), ActionEntitySet(action=get, describe=详情, defaultCheck=false), ActionEntitySet(action=update, describe=更新, defaultCheck=false), ActionEntitySet(action=delete, describe=删除, defaultCheck=false), ActionEntitySet(action=export, describe=导出, defaultCheck=false)], actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=role, permissionName=null, actionEntitySet=[ActionEntitySet(action=add, describe=新增, defaultCheck=false), ActionEntitySet(action=import, describe=导入, defaultCheck=false), ActionEntitySet(action=get, describe=详情, defaultCheck=false), ActionEntitySet(action=update, describe=更新, defaultCheck=false), ActionEntitySet(action=delete, describe=删除, defaultCheck=false), ActionEntitySet(action=export, describe=导出, defaultCheck=false)], actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=user, permissionName=null, actionEntitySet=[], actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=system, permissionName=null, actionEntitySet=[], actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=otherPage, permissionName=null, actionEntitySet=[], actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=UserList, permissionName=null, actionEntitySet=[], actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=RoleList, permissionName=null, actionEntitySet=[], actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=support, permissionName=null, actionEntitySet=[], actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=userManage, permissionName=null, actionEntitySet=[], actionList=null, dataAccess=null)]), token=null, expireTime=null) +2024-09-24 11:09:19.942 INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown initiated... +2024-09-24 11:09:19.946 INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown completed. +2024-09-24 11:09:22.080 INFO o.s.boot.SpringApplication - +██╗ ██╗██████╗ ██╗██╗ █████╗ ███╗ ██╗ ██████╗ +╚██╗██╔╝██╔══██╗██║██║ ██╔══██╗████╗ ██║██╔════╝ + ╚███╔╝ ██████╔╝██║██║ ███████║██╔██╗ ██║██║ ███╗ + ██╔██╗ ██╔══██╗██║██║ ██╔══██║██║╚██╗██║██║ ██║ +██╔╝ ██╗██║ ██║██║███████╗██║ ██║██║ ╚████║╚██████╔╝ +╚═╝ ╚═╝╚═╝ ╚═╝╚═╝╚══════╝╚═╝ ╚═╝╚═╝ ╚═══╝ ╚═════╝ + +^_^ 服务启动成功 He Sheng +# 项目名称:harmony-life-server +# 项目版本:1.0.0 +# 框架版本:3.3.4 +# 最后更新于 2024年 9月 25日 + + +2024-09-24 11:09:22.120 INFO c.g.h.HarmonyLifeServerApplication - Starting HarmonyLifeServerApplication using Java 17.0.8 with PID 6572 (C:\Users\xrilang\Desktop\harmony-life\harmony-life-server\harmony-life-server\target\classes started by xrilang in C:\Users\xrilang\Desktop\harmony-life\harmony-life-server\harmony-life-server) +2024-09-24 11:09:22.121 DEBUG c.g.h.HarmonyLifeServerApplication - Running with Spring Boot v3.3.4, Spring v6.1.13 +2024-09-24 11:09:22.122 INFO c.g.h.HarmonyLifeServerApplication - No active profile set, falling back to 1 default profile: "default" +2024-09-24 11:09:22.651 INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode +2024-09-24 11:09:22.652 INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data JDBC repositories in DEFAULT mode. +2024-09-24 11:09:22.663 INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 8 ms. Found 0 JDBC repository interfaces. +2024-09-24 11:09:22.672 INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode +2024-09-24 11:09:22.673 INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2024-09-24 11:09:22.684 INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 4 ms. Found 0 Redis repository interfaces. +2024-09-24 11:09:23.077 INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat initialized with port 8080 (http) +2024-09-24 11:09:23.087 INFO o.a.catalina.core.StandardService - Starting service [Tomcat] +2024-09-24 11:09:23.088 INFO o.a.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/10.1.30] +2024-09-24 11:09:23.138 INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring embedded WebApplicationContext +2024-09-24 11:09:23.138 INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 991 ms +2024-09-24 11:09:23.833 INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Starting... +2024-09-24 11:09:23.925 INFO com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - Added connection com.mysql.cj.jdbc.ConnectionImpl@70e1aa20 +2024-09-24 11:09:23.926 INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Start completed. +2024-09-24 11:09:24.050 INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat started on port 8080 (http) with context path '/' +2024-09-24 11:09:24.056 INFO c.g.h.HarmonyLifeServerApplication - Started HarmonyLifeServerApplication in 2.272 seconds (process running for 2.72) +2024-09-24 11:09:29.298 INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring DispatcherServlet 'dispatcherServlet' +2024-09-24 11:09:29.298 INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet' +2024-09-24 11:09:29.299 INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 1 ms +2024-09-24 11:09:29.628 INFO c.g.h.service.impl.UserServiceImpl - 查询用户1的用户信息 +2024-09-24 11:09:29.639 DEBUG c.g.h.mapper.UserMapper.getUserById - ==> Preparing: SELECT * from user_info where id=? AND status=1 +2024-09-24 11:09:29.652 DEBUG c.g.h.mapper.UserMapper.getUserById - ==> Parameters: 1(Long) +2024-09-24 11:09:29.667 DEBUG c.g.h.mapper.UserMapper.getUserById - <== Total: 1 +2024-09-24 11:09:29.669 DEBUG c.g.h.m.AuthMapper.getUserRoleById - ==> Preparing: SELECT * from system_role where role_id=? AND status=1 +2024-09-24 11:09:29.670 DEBUG c.g.h.m.AuthMapper.getUserRoleById - ==> Parameters: root(String) +2024-09-24 11:09:29.671 DEBUG c.g.h.m.AuthMapper.getUserRoleById - <== Total: 1 +2024-09-24 11:09:29.672 DEBUG c.g.h.m.A.getUserPermissionListByRoleId - ==> Preparing: select * from system_role_permission where role_id=? AND status=1 +2024-09-24 11:09:29.673 DEBUG c.g.h.m.A.getUserPermissionListByRoleId - ==> Parameters: root(String) +2024-09-24 11:09:29.676 DEBUG c.g.h.m.A.getUserPermissionListByRoleId - <== Total: 16 +2024-09-24 11:09:29.678 INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:SystemPermission(id=1, permissionId=dashboard, permissionName=null, status=1) +2024-09-24 11:09:29.678 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-24 11:09:29.678 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: dashboard(String), 1(Long) +2024-09-24 11:09:29.679 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 0 +2024-09-24 11:09:29.679 INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:SystemPermission(id=2, permissionId=exception, permissionName=null, status=1) +2024-09-24 11:09:29.679 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-24 11:09:29.680 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: exception(String), 1(Long) +2024-09-24 11:09:29.680 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 0 +2024-09-24 11:09:29.680 INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:SystemPermission(id=3, permissionId=result, permissionName=null, status=1) +2024-09-24 11:09:29.680 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-24 11:09:29.681 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: result(String), 1(Long) +2024-09-24 11:09:29.681 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 0 +2024-09-24 11:09:29.681 INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:SystemPermission(id=4, permissionId=profile, permissionName=null, status=1) +2024-09-24 11:09:29.681 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-24 11:09:29.681 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: profile(String), 1(Long) +2024-09-24 11:09:29.682 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 0 +2024-09-24 11:09:29.682 INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:SystemPermission(id=5, permissionId=table, permissionName=null, status=1) +2024-09-24 11:09:29.682 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-24 11:09:29.682 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: table(String), 1(Long) +2024-09-24 11:09:29.683 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 0 +2024-09-24 11:09:29.683 INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:SystemPermission(id=6, permissionId=form, permissionName=null, status=1) +2024-09-24 11:09:29.683 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-24 11:09:29.683 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: form(String), 1(Long) +2024-09-24 11:09:29.683 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 0 +2024-09-24 11:09:29.684 INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:SystemPermission(id=7, permissionId=order, permissionName=null, status=1) +2024-09-24 11:09:29.684 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-24 11:09:29.684 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: order(String), 1(Long) +2024-09-24 11:09:29.684 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 0 +2024-09-24 11:09:29.685 INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:SystemPermission(id=8, permissionId=permission, permissionName=null, status=1) +2024-09-24 11:09:29.685 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-24 11:09:29.685 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: permission(String), 1(Long) +2024-09-24 11:09:29.687 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 6 +2024-09-24 11:09:29.688 INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:SystemPermission(id=9, permissionId=role, permissionName=null, status=1) +2024-09-24 11:09:29.688 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-24 11:09:29.688 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: role(String), 1(Long) +2024-09-24 11:09:29.689 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 6 +2024-09-24 11:09:29.689 INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:SystemPermission(id=10, permissionId=user, permissionName=null, status=1) +2024-09-24 11:09:29.689 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-24 11:09:29.690 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: user(String), 1(Long) +2024-09-24 11:09:29.690 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 0 +2024-09-24 11:09:29.690 INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:SystemPermission(id=11, permissionId=system, permissionName=null, status=1) +2024-09-24 11:09:29.690 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-24 11:09:29.690 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: system(String), 1(Long) +2024-09-24 11:09:29.691 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 0 +2024-09-24 11:09:29.691 INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:SystemPermission(id=12, permissionId=otherPage, permissionName=null, status=1) +2024-09-24 11:09:29.691 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-24 11:09:29.691 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: otherPage(String), 1(Long) +2024-09-24 11:09:29.692 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 0 +2024-09-24 11:09:29.692 INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:SystemPermission(id=13, permissionId=UserList, permissionName=null, status=1) +2024-09-24 11:09:29.692 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-24 11:09:29.692 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: UserList(String), 1(Long) +2024-09-24 11:09:29.693 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 0 +2024-09-24 11:09:29.694 INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:SystemPermission(id=14, permissionId=RoleList, permissionName=null, status=1) +2024-09-24 11:09:29.694 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-24 11:09:29.694 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: RoleList(String), 1(Long) +2024-09-24 11:09:29.695 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 0 +2024-09-24 11:09:29.695 INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:SystemPermission(id=15, permissionId=support, permissionName=null, status=1) +2024-09-24 11:09:29.695 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-24 11:09:29.695 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: support(String), 1(Long) +2024-09-24 11:09:29.696 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 0 +2024-09-24 11:09:29.696 INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:SystemPermission(id=16, permissionId=userManage, permissionName=null, status=1) +2024-09-24 11:09:29.696 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-24 11:09:29.696 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: userManage(String), 1(Long) +2024-09-24 11:09:29.696 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 0 +2024-09-24 11:09:29.702 INFO c.g.h.service.impl.UserServiceImpl - UserInfoLogin(id=1, name=萌狼蓝天, username=xrilang, avatar=https://q1.qlogo.cn/g?b=qq&nk=3447902411&s=640, email=null, telephone=null, status=0, lastLoginIp=null, lastLoginTime=null, createTime=null, creator=null, merchantCode=null, roleId=root, role=RoleInfo(id=root, name=超级管理员, description=最高权限, status=0, creatorId=null, createTime=null, deleted=0, permissions=[PermissionInfo(roleId=root, permissionId=dashboard, permissionName=null, actionEntitySet=[], actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=exception, permissionName=null, actionEntitySet=[], actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=result, permissionName=null, actionEntitySet=[], actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=profile, permissionName=null, actionEntitySet=[], actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=table, permissionName=null, actionEntitySet=[], actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=form, permissionName=null, actionEntitySet=[], actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=order, permissionName=null, actionEntitySet=[], actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=permission, permissionName=null, actionEntitySet=[ActionEntitySet(action=add, describe=新增, defaultCheck=false), ActionEntitySet(action=import, describe=导入, defaultCheck=false), ActionEntitySet(action=get, describe=详情, defaultCheck=false), ActionEntitySet(action=update, describe=更新, defaultCheck=false), ActionEntitySet(action=delete, describe=删除, defaultCheck=false), ActionEntitySet(action=export, describe=导出, defaultCheck=false)], actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=role, permissionName=null, actionEntitySet=[ActionEntitySet(action=add, describe=新增, defaultCheck=false), ActionEntitySet(action=import, describe=导入, defaultCheck=false), ActionEntitySet(action=get, describe=详情, defaultCheck=false), ActionEntitySet(action=update, describe=更新, defaultCheck=false), ActionEntitySet(action=delete, describe=删除, defaultCheck=false), ActionEntitySet(action=export, describe=导出, defaultCheck=false)], actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=user, permissionName=null, actionEntitySet=[], actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=system, permissionName=null, actionEntitySet=[], actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=otherPage, permissionName=null, actionEntitySet=[], actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=UserList, permissionName=null, actionEntitySet=[], actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=RoleList, permissionName=null, actionEntitySet=[], actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=support, permissionName=null, actionEntitySet=[], actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=userManage, permissionName=null, actionEntitySet=[], actionList=null, dataAccess=null)]), token=null, expireTime=null) +2024-09-24 11:11:07.600 INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown initiated... +2024-09-24 11:11:07.604 INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown completed. +2024-09-24 11:11:11.054 INFO o.s.boot.SpringApplication - +██╗ ██╗██████╗ ██╗██╗ █████╗ ███╗ ██╗ ██████╗ +╚██╗██╔╝██╔══██╗██║██║ ██╔══██╗████╗ ██║██╔════╝ + ╚███╔╝ ██████╔╝██║██║ ███████║██╔██╗ ██║██║ ███╗ + ██╔██╗ ██╔══██╗██║██║ ██╔══██║██║╚██╗██║██║ ██║ +██╔╝ ██╗██║ ██║██║███████╗██║ ██║██║ ╚████║╚██████╔╝ +╚═╝ ╚═╝╚═╝ ╚═╝╚═╝╚══════╝╚═╝ ╚═╝╚═╝ ╚═══╝ ╚═════╝ + +^_^ 服务启动成功 He Sheng +# 项目名称:harmony-life-server +# 项目版本:1.0.0 +# 框架版本:3.3.4 +# 最后更新于 2024年 9月 25日 + + +2024-09-24 11:11:11.093 INFO c.g.h.HarmonyLifeServerApplication - Starting HarmonyLifeServerApplication using Java 17.0.8 with PID 26948 (C:\Users\xrilang\Desktop\harmony-life\harmony-life-server\harmony-life-server\target\classes started by xrilang in C:\Users\xrilang\Desktop\harmony-life\harmony-life-server\harmony-life-server) +2024-09-24 11:11:11.094 DEBUG c.g.h.HarmonyLifeServerApplication - Running with Spring Boot v3.3.4, Spring v6.1.13 +2024-09-24 11:11:11.095 INFO c.g.h.HarmonyLifeServerApplication - No active profile set, falling back to 1 default profile: "default" +2024-09-24 11:11:11.632 INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode +2024-09-24 11:11:11.633 INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data JDBC repositories in DEFAULT mode. +2024-09-24 11:11:11.644 INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 8 ms. Found 0 JDBC repository interfaces. +2024-09-24 11:11:11.655 INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode +2024-09-24 11:11:11.656 INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2024-09-24 11:11:11.668 INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 5 ms. Found 0 Redis repository interfaces. +2024-09-24 11:11:12.077 INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat initialized with port 8080 (http) +2024-09-24 11:11:12.087 INFO o.a.catalina.core.StandardService - Starting service [Tomcat] +2024-09-24 11:11:12.088 INFO o.a.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/10.1.30] +2024-09-24 11:11:12.144 INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring embedded WebApplicationContext +2024-09-24 11:11:12.144 INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 1022 ms +2024-09-24 11:11:12.847 INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Starting... +2024-09-24 11:11:12.939 INFO com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - Added connection com.mysql.cj.jdbc.ConnectionImpl@5c930fc3 +2024-09-24 11:11:12.940 INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Start completed. +2024-09-24 11:11:13.070 INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat started on port 8080 (http) with context path '/' +2024-09-24 11:11:13.076 INFO c.g.h.HarmonyLifeServerApplication - Started HarmonyLifeServerApplication in 2.332 seconds (process running for 2.731) +2024-09-24 11:11:18.740 INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring DispatcherServlet 'dispatcherServlet' +2024-09-24 11:11:18.740 INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet' +2024-09-24 11:11:18.741 INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 1 ms +2024-09-24 11:11:19.068 INFO c.g.h.service.impl.UserServiceImpl - 查询用户1的用户信息 +2024-09-24 11:11:19.083 DEBUG c.g.h.mapper.UserMapper.getUserById - ==> Preparing: SELECT * from user_info where id=? AND status=1 +2024-09-24 11:11:19.097 DEBUG c.g.h.mapper.UserMapper.getUserById - ==> Parameters: 1(Long) +2024-09-24 11:11:19.114 DEBUG c.g.h.mapper.UserMapper.getUserById - <== Total: 1 +2024-09-24 11:11:19.116 DEBUG c.g.h.m.AuthMapper.getUserRoleById - ==> Preparing: SELECT * from system_role where role_id=? AND status=1 +2024-09-24 11:11:19.117 DEBUG c.g.h.m.AuthMapper.getUserRoleById - ==> Parameters: root(String) +2024-09-24 11:11:19.118 DEBUG c.g.h.m.AuthMapper.getUserRoleById - <== Total: 1 +2024-09-24 11:11:19.119 DEBUG c.g.h.m.A.getUserPermissionListByRoleId - ==> Preparing: select * from system_role_permission where role_id=? AND status=1 +2024-09-24 11:11:19.120 DEBUG c.g.h.m.A.getUserPermissionListByRoleId - ==> Parameters: root(String) +2024-09-24 11:11:19.122 DEBUG c.g.h.m.A.getUserPermissionListByRoleId - <== Total: 16 +2024-09-24 11:11:19.124 INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:SystemPermission(id=1, permissionId=dashboard, permissionName=null, status=1) +2024-09-24 11:11:19.124 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-24 11:11:19.125 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: dashboard(String), 1(Long) +2024-09-24 11:11:19.126 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 0 +2024-09-24 11:11:19.126 INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:SystemPermission(id=2, permissionId=exception, permissionName=null, status=1) +2024-09-24 11:11:19.126 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-24 11:11:19.126 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: exception(String), 1(Long) +2024-09-24 11:11:19.127 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 0 +2024-09-24 11:11:19.127 INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:SystemPermission(id=3, permissionId=result, permissionName=null, status=1) +2024-09-24 11:11:19.127 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-24 11:11:19.128 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: result(String), 1(Long) +2024-09-24 11:11:19.128 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 0 +2024-09-24 11:11:19.128 INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:SystemPermission(id=4, permissionId=profile, permissionName=null, status=1) +2024-09-24 11:11:19.129 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-24 11:11:19.129 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: profile(String), 1(Long) +2024-09-24 11:11:19.129 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 0 +2024-09-24 11:11:19.129 INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:SystemPermission(id=5, permissionId=table, permissionName=null, status=1) +2024-09-24 11:11:19.130 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-24 11:11:19.130 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: table(String), 1(Long) +2024-09-24 11:11:19.130 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 0 +2024-09-24 11:11:19.130 INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:SystemPermission(id=6, permissionId=form, permissionName=null, status=1) +2024-09-24 11:11:19.131 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-24 11:11:19.131 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: form(String), 1(Long) +2024-09-24 11:11:19.131 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 0 +2024-09-24 11:11:19.131 INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:SystemPermission(id=7, permissionId=order, permissionName=null, status=1) +2024-09-24 11:11:19.131 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-24 11:11:19.132 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: order(String), 1(Long) +2024-09-24 11:11:19.132 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 0 +2024-09-24 11:11:19.132 INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:SystemPermission(id=8, permissionId=permission, permissionName=null, status=1) +2024-09-24 11:11:19.132 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-24 11:11:19.133 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: permission(String), 1(Long) +2024-09-24 11:11:19.134 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 6 +2024-09-24 11:11:19.134 INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:SystemPermission(id=9, permissionId=role, permissionName=null, status=1) +2024-09-24 11:11:19.135 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-24 11:11:19.135 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: role(String), 1(Long) +2024-09-24 11:11:19.136 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 6 +2024-09-24 11:11:19.136 INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:SystemPermission(id=10, permissionId=user, permissionName=null, status=1) +2024-09-24 11:11:19.137 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-24 11:11:19.137 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: user(String), 1(Long) +2024-09-24 11:11:19.137 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 0 +2024-09-24 11:11:19.137 INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:SystemPermission(id=11, permissionId=system, permissionName=null, status=1) +2024-09-24 11:11:19.137 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-24 11:11:19.138 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: system(String), 1(Long) +2024-09-24 11:11:19.138 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 0 +2024-09-24 11:11:19.138 INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:SystemPermission(id=12, permissionId=otherPage, permissionName=null, status=1) +2024-09-24 11:11:19.139 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-24 11:11:19.139 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: otherPage(String), 1(Long) +2024-09-24 11:11:19.139 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 0 +2024-09-24 11:11:19.139 INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:SystemPermission(id=13, permissionId=UserList, permissionName=null, status=1) +2024-09-24 11:11:19.140 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-24 11:11:19.140 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: UserList(String), 1(Long) +2024-09-24 11:11:19.141 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 0 +2024-09-24 11:11:19.141 INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:SystemPermission(id=14, permissionId=RoleList, permissionName=null, status=1) +2024-09-24 11:11:19.142 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-24 11:11:19.142 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: RoleList(String), 1(Long) +2024-09-24 11:11:19.142 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 0 +2024-09-24 11:11:19.142 INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:SystemPermission(id=15, permissionId=support, permissionName=null, status=1) +2024-09-24 11:11:19.143 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-24 11:11:19.143 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: support(String), 1(Long) +2024-09-24 11:11:19.143 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 0 +2024-09-24 11:11:19.143 INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:SystemPermission(id=16, permissionId=userManage, permissionName=null, status=1) +2024-09-24 11:11:19.144 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-24 11:11:19.144 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: userManage(String), 1(Long) +2024-09-24 11:11:19.144 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 0 +2024-09-24 11:11:19.150 INFO c.g.h.service.impl.UserServiceImpl - UserInfoLogin(id=1, name=萌狼蓝天, username=xrilang, avatar=https://q1.qlogo.cn/g?b=qq&nk=3447902411&s=640, email=null, telephone=null, status=0, lastLoginIp=null, lastLoginTime=null, createTime=null, creator=null, merchantCode=null, roleId=root, role=RoleInfo(id=root, name=超级管理员, description=最高权限, status=0, creatorId=null, createTime=null, deleted=0, permissions=[PermissionInfo(roleId=root, permissionId=dashboard, permissionName=null, actionEntitySet=[], actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=exception, permissionName=null, actionEntitySet=[], actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=result, permissionName=null, actionEntitySet=[], actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=profile, permissionName=null, actionEntitySet=[], actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=table, permissionName=null, actionEntitySet=[], actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=form, permissionName=null, actionEntitySet=[], actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=order, permissionName=null, actionEntitySet=[], actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=permission, permissionName=null, actionEntitySet=[ActionEntitySet(action=add, describe=新增, defaultCheck=false), ActionEntitySet(action=import, describe=导入, defaultCheck=false), ActionEntitySet(action=get, describe=详情, defaultCheck=false), ActionEntitySet(action=update, describe=更新, defaultCheck=false), ActionEntitySet(action=delete, describe=删除, defaultCheck=false), ActionEntitySet(action=export, describe=导出, defaultCheck=false)], actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=role, permissionName=null, actionEntitySet=[ActionEntitySet(action=add, describe=新增, defaultCheck=false), ActionEntitySet(action=import, describe=导入, defaultCheck=false), ActionEntitySet(action=get, describe=详情, defaultCheck=false), ActionEntitySet(action=update, describe=更新, defaultCheck=false), ActionEntitySet(action=delete, describe=删除, defaultCheck=false), ActionEntitySet(action=export, describe=导出, defaultCheck=false)], actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=user, permissionName=null, actionEntitySet=[], actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=system, permissionName=null, actionEntitySet=[], actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=otherPage, permissionName=null, actionEntitySet=[], actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=UserList, permissionName=null, actionEntitySet=[], actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=RoleList, permissionName=null, actionEntitySet=[], actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=support, permissionName=null, actionEntitySet=[], actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=userManage, permissionName=null, actionEntitySet=[], actionList=null, dataAccess=null)]), token=null, expireTime=null) +2024-09-24 11:13:19.547 INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown initiated... +2024-09-24 11:13:19.551 INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown completed. +2024-09-24 11:13:23.254 INFO o.s.boot.SpringApplication - +██╗ ██╗██████╗ ██╗██╗ █████╗ ███╗ ██╗ ██████╗ +╚██╗██╔╝██╔══██╗██║██║ ██╔══██╗████╗ ██║██╔════╝ + ╚███╔╝ ██████╔╝██║██║ ███████║██╔██╗ ██║██║ ███╗ + ██╔██╗ ██╔══██╗██║██║ ██╔══██║██║╚██╗██║██║ ██║ +██╔╝ ██╗██║ ██║██║███████╗██║ ██║██║ ╚████║╚██████╔╝ +╚═╝ ╚═╝╚═╝ ╚═╝╚═╝╚══════╝╚═╝ ╚═╝╚═╝ ╚═══╝ ╚═════╝ + +^_^ 服务启动成功 He Sheng +# 项目名称:harmony-life-server +# 项目版本:1.0.0 +# 框架版本:3.3.4 +# 最后更新于 2024年 9月 25日 + + +2024-09-24 11:13:23.292 INFO c.g.h.HarmonyLifeServerApplication - Starting HarmonyLifeServerApplication using Java 17.0.8 with PID 20704 (C:\Users\xrilang\Desktop\harmony-life\harmony-life-server\harmony-life-server\target\classes started by xrilang in C:\Users\xrilang\Desktop\harmony-life\harmony-life-server\harmony-life-server) +2024-09-24 11:13:23.293 DEBUG c.g.h.HarmonyLifeServerApplication - Running with Spring Boot v3.3.4, Spring v6.1.13 +2024-09-24 11:13:23.293 INFO c.g.h.HarmonyLifeServerApplication - No active profile set, falling back to 1 default profile: "default" +2024-09-24 11:13:23.866 INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode +2024-09-24 11:13:23.867 INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data JDBC repositories in DEFAULT mode. +2024-09-24 11:13:23.878 INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 8 ms. Found 0 JDBC repository interfaces. +2024-09-24 11:13:23.889 INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode +2024-09-24 11:13:23.890 INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2024-09-24 11:13:23.902 INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 4 ms. Found 0 Redis repository interfaces. +2024-09-24 11:13:24.332 INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat initialized with port 8080 (http) +2024-09-24 11:13:24.342 INFO o.a.catalina.core.StandardService - Starting service [Tomcat] +2024-09-24 11:13:24.343 INFO o.a.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/10.1.30] +2024-09-24 11:13:24.397 INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring embedded WebApplicationContext +2024-09-24 11:13:24.398 INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 1077 ms +2024-09-24 11:13:25.158 INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Starting... +2024-09-24 11:13:25.260 INFO com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - Added connection com.mysql.cj.jdbc.ConnectionImpl@62f37bfd +2024-09-24 11:13:25.261 INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Start completed. +2024-09-24 11:13:25.385 INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat started on port 8080 (http) with context path '/' +2024-09-24 11:13:25.391 INFO c.g.h.HarmonyLifeServerApplication - Started HarmonyLifeServerApplication in 2.441 seconds (process running for 2.854) +2024-09-24 11:14:24.926 INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown initiated... +2024-09-24 11:14:24.930 INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown completed. +2024-09-24 11:14:28.373 INFO o.s.boot.SpringApplication - +██╗ ██╗██████╗ ██╗██╗ █████╗ ███╗ ██╗ ██████╗ +╚██╗██╔╝██╔══██╗██║██║ ██╔══██╗████╗ ██║██╔════╝ + ╚███╔╝ ██████╔╝██║██║ ███████║██╔██╗ ██║██║ ███╗ + ██╔██╗ ██╔══██╗██║██║ ██╔══██║██║╚██╗██║██║ ██║ +██╔╝ ██╗██║ ██║██║███████╗██║ ██║██║ ╚████║╚██████╔╝ +╚═╝ ╚═╝╚═╝ ╚═╝╚═╝╚══════╝╚═╝ ╚═╝╚═╝ ╚═══╝ ╚═════╝ + +^_^ 服务启动成功 He Sheng +# 项目名称:harmony-life-server +# 项目版本:1.0.0 +# 框架版本:3.3.4 +# 最后更新于 2024年 9月 25日 + + +2024-09-24 11:14:28.413 INFO c.g.h.HarmonyLifeServerApplication - Starting HarmonyLifeServerApplication using Java 17.0.8 with PID 4000 (C:\Users\xrilang\Desktop\harmony-life\harmony-life-server\harmony-life-server\target\classes started by xrilang in C:\Users\xrilang\Desktop\harmony-life\harmony-life-server\harmony-life-server) +2024-09-24 11:14:28.413 DEBUG c.g.h.HarmonyLifeServerApplication - Running with Spring Boot v3.3.4, Spring v6.1.13 +2024-09-24 11:14:28.414 INFO c.g.h.HarmonyLifeServerApplication - No active profile set, falling back to 1 default profile: "default" +2024-09-24 11:14:28.961 INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode +2024-09-24 11:14:28.962 INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data JDBC repositories in DEFAULT mode. +2024-09-24 11:14:28.973 INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 8 ms. Found 0 JDBC repository interfaces. +2024-09-24 11:14:28.984 INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode +2024-09-24 11:14:28.985 INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2024-09-24 11:14:28.997 INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 5 ms. Found 0 Redis repository interfaces. +2024-09-24 11:14:29.407 INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat initialized with port 8080 (http) +2024-09-24 11:14:29.420 INFO o.a.catalina.core.StandardService - Starting service [Tomcat] +2024-09-24 11:14:29.421 INFO o.a.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/10.1.30] +2024-09-24 11:14:29.477 INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring embedded WebApplicationContext +2024-09-24 11:14:29.478 INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 1036 ms +2024-09-24 11:14:30.178 INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Starting... +2024-09-24 11:14:30.271 INFO com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - Added connection com.mysql.cj.jdbc.ConnectionImpl@48b09105 +2024-09-24 11:14:30.272 INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Start completed. +2024-09-24 11:14:30.385 INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat started on port 8080 (http) with context path '/' +2024-09-24 11:14:30.393 INFO c.g.h.HarmonyLifeServerApplication - Started HarmonyLifeServerApplication in 2.322 seconds (process running for 2.73) +2024-09-24 11:14:35.911 INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring DispatcherServlet 'dispatcherServlet' +2024-09-24 11:14:35.911 INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet' +2024-09-24 11:14:35.913 INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 2 ms +2024-09-24 11:14:36.231 INFO c.g.h.service.impl.UserServiceImpl - 查询用户1的用户信息 +2024-09-24 11:14:36.247 DEBUG c.g.h.mapper.UserMapper.getUserById - ==> Preparing: SELECT * from user_info where id=? AND status=1 +2024-09-24 11:14:36.259 DEBUG c.g.h.mapper.UserMapper.getUserById - ==> Parameters: 1(Long) +2024-09-24 11:14:36.277 DEBUG c.g.h.mapper.UserMapper.getUserById - <== Total: 1 +2024-09-24 11:14:36.279 DEBUG c.g.h.m.AuthMapper.getUserRoleById - ==> Preparing: SELECT * from system_role where role_id=? AND status=1 +2024-09-24 11:14:36.279 DEBUG c.g.h.m.AuthMapper.getUserRoleById - ==> Parameters: root(String) +2024-09-24 11:14:36.280 DEBUG c.g.h.m.AuthMapper.getUserRoleById - <== Total: 1 +2024-09-24 11:14:36.281 DEBUG c.g.h.m.A.getUserPermissionListByRoleId - ==> Preparing: select * from system_role_permission where role_id=? AND status=1 +2024-09-24 11:14:36.282 DEBUG c.g.h.m.A.getUserPermissionListByRoleId - ==> Parameters: root(String) +2024-09-24 11:14:36.284 DEBUG c.g.h.m.A.getUserPermissionListByRoleId - <== Total: 16 +2024-09-24 11:14:36.286 INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:SystemPermission(id=1, permissionId=dashboard, permissionName=null, status=1) +2024-09-24 11:14:36.286 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-24 11:14:36.287 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: dashboard(String), 1(Long) +2024-09-24 11:14:36.287 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 0 +2024-09-24 11:14:36.288 INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:SystemPermission(id=2, permissionId=exception, permissionName=null, status=1) +2024-09-24 11:14:36.288 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-24 11:14:36.288 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: exception(String), 1(Long) +2024-09-24 11:14:36.289 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 0 +2024-09-24 11:14:36.290 INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:SystemPermission(id=3, permissionId=result, permissionName=null, status=1) +2024-09-24 11:14:36.290 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-24 11:14:36.290 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: result(String), 1(Long) +2024-09-24 11:14:36.290 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 0 +2024-09-24 11:14:36.291 INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:SystemPermission(id=4, permissionId=profile, permissionName=null, status=1) +2024-09-24 11:14:36.291 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-24 11:14:36.291 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: profile(String), 1(Long) +2024-09-24 11:14:36.291 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 0 +2024-09-24 11:14:36.291 INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:SystemPermission(id=5, permissionId=table, permissionName=null, status=1) +2024-09-24 11:14:36.291 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-24 11:14:36.292 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: table(String), 1(Long) +2024-09-24 11:14:36.292 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 0 +2024-09-24 11:14:36.292 INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:SystemPermission(id=6, permissionId=form, permissionName=null, status=1) +2024-09-24 11:14:36.292 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-24 11:14:36.292 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: form(String), 1(Long) +2024-09-24 11:14:36.293 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 0 +2024-09-24 11:14:36.293 INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:SystemPermission(id=7, permissionId=order, permissionName=null, status=1) +2024-09-24 11:14:36.293 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-24 11:14:36.293 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: order(String), 1(Long) +2024-09-24 11:14:36.293 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 0 +2024-09-24 11:14:36.294 INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:SystemPermission(id=8, permissionId=permission, permissionName=null, status=1) +2024-09-24 11:14:36.294 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-24 11:14:36.294 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: permission(String), 1(Long) +2024-09-24 11:14:36.295 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 6 +2024-09-24 11:14:36.295 INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:SystemPermission(id=9, permissionId=role, permissionName=null, status=1) +2024-09-24 11:14:36.296 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-24 11:14:36.296 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: role(String), 1(Long) +2024-09-24 11:14:36.297 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 6 +2024-09-24 11:14:36.297 INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:SystemPermission(id=10, permissionId=user, permissionName=null, status=1) +2024-09-24 11:14:36.297 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-24 11:14:36.297 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: user(String), 1(Long) +2024-09-24 11:14:36.298 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 0 +2024-09-24 11:14:36.298 INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:SystemPermission(id=11, permissionId=system, permissionName=null, status=1) +2024-09-24 11:14:36.298 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-24 11:14:36.298 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: system(String), 1(Long) +2024-09-24 11:14:36.298 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 0 +2024-09-24 11:14:36.298 INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:SystemPermission(id=12, permissionId=otherPage, permissionName=null, status=1) +2024-09-24 11:14:36.299 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-24 11:14:36.299 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: otherPage(String), 1(Long) +2024-09-24 11:14:36.299 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 0 +2024-09-24 11:14:36.299 INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:SystemPermission(id=13, permissionId=UserList, permissionName=null, status=1) +2024-09-24 11:14:36.300 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-24 11:14:36.300 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: UserList(String), 1(Long) +2024-09-24 11:14:36.301 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 0 +2024-09-24 11:14:36.301 INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:SystemPermission(id=14, permissionId=RoleList, permissionName=null, status=1) +2024-09-24 11:14:36.302 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-24 11:14:36.302 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: RoleList(String), 1(Long) +2024-09-24 11:14:36.302 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 0 +2024-09-24 11:14:36.303 INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:SystemPermission(id=15, permissionId=support, permissionName=null, status=1) +2024-09-24 11:14:36.303 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-24 11:14:36.303 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: support(String), 1(Long) +2024-09-24 11:14:36.303 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 0 +2024-09-24 11:14:36.304 INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:SystemPermission(id=16, permissionId=userManage, permissionName=null, status=1) +2024-09-24 11:14:36.304 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-24 11:14:36.304 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: userManage(String), 1(Long) +2024-09-24 11:14:36.304 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 0 +2024-09-24 11:14:36.310 INFO c.g.h.service.impl.UserServiceImpl - UserInfoLogin(id=1, name=萌狼蓝天, username=xrilang, avatar=https://q1.qlogo.cn/g?b=qq&nk=3447902411&s=640, email=null, telephone=null, status=0, lastLoginIp=null, lastLoginTime=null, createTime=null, creator=null, merchantCode=null, roleId=root, role=RoleInfo(id=root, name=超级管理员, description=最高权限, status=0, creatorId=null, createTime=null, deleted=0, permissions=[PermissionInfo(roleId=root, permissionId=dashboard, permissionName=null, actionEntitySet=[], actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=exception, permissionName=null, actionEntitySet=[], actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=result, permissionName=null, actionEntitySet=[], actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=profile, permissionName=null, actionEntitySet=[], actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=table, permissionName=null, actionEntitySet=[], actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=form, permissionName=null, actionEntitySet=[], actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=order, permissionName=null, actionEntitySet=[], actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=permission, permissionName=null, actionEntitySet=[ActionEntitySet(action=add, describe=新增, defaultCheck=false), ActionEntitySet(action=import, describe=导入, defaultCheck=false), ActionEntitySet(action=get, describe=详情, defaultCheck=false), ActionEntitySet(action=update, describe=更新, defaultCheck=false), ActionEntitySet(action=delete, describe=删除, defaultCheck=false), ActionEntitySet(action=export, describe=导出, defaultCheck=false)], actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=role, permissionName=null, actionEntitySet=[ActionEntitySet(action=add, describe=新增, defaultCheck=false), ActionEntitySet(action=import, describe=导入, defaultCheck=false), ActionEntitySet(action=get, describe=详情, defaultCheck=false), ActionEntitySet(action=update, describe=更新, defaultCheck=false), ActionEntitySet(action=delete, describe=删除, defaultCheck=false), ActionEntitySet(action=export, describe=导出, defaultCheck=false)], actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=user, permissionName=null, actionEntitySet=[], actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=system, permissionName=null, actionEntitySet=[], actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=otherPage, permissionName=null, actionEntitySet=[], actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=UserList, permissionName=null, actionEntitySet=[], actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=RoleList, permissionName=null, actionEntitySet=[], actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=support, permissionName=null, actionEntitySet=[], actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=userManage, permissionName=null, actionEntitySet=[], actionList=null, dataAccess=null)]), token=null, expireTime=null) +2024-09-24 11:14:36.605 ERROR c.g.h.config.GlobalExceptionHandler - Error occurred in com.guaiguailang.harmony.service.impl.UserServiceImpl at line 109 in file UserServiceImpl.java +2024-09-24 11:14:36.611 ERROR c.g.h.config.GlobalExceptionHandler - Error occurred in com.guaiguailang.harmony.service.impl.UserServiceImpl at line 89 in file UserServiceImpl.java +2024-09-24 11:15:11.200 INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown initiated... +2024-09-24 11:15:11.204 INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown completed. +2024-09-24 11:15:13.224 INFO o.s.boot.SpringApplication - +██╗ ██╗██████╗ ██╗██╗ █████╗ ███╗ ██╗ ██████╗ +╚██╗██╔╝██╔══██╗██║██║ ██╔══██╗████╗ ██║██╔════╝ + ╚███╔╝ ██████╔╝██║██║ ███████║██╔██╗ ██║██║ ███╗ + ██╔██╗ ██╔══██╗██║██║ ██╔══██║██║╚██╗██║██║ ██║ +██╔╝ ██╗██║ ██║██║███████╗██║ ██║██║ ╚████║╚██████╔╝ +╚═╝ ╚═╝╚═╝ ╚═╝╚═╝╚══════╝╚═╝ ╚═╝╚═╝ ╚═══╝ ╚═════╝ + +^_^ 服务启动成功 He Sheng +# 项目名称:harmony-life-server +# 项目版本:1.0.0 +# 框架版本:3.3.4 +# 最后更新于 2024年 9月 25日 + + +2024-09-24 11:15:13.266 INFO c.g.h.HarmonyLifeServerApplication - Starting HarmonyLifeServerApplication using Java 17.0.8 with PID 26576 (C:\Users\xrilang\Desktop\harmony-life\harmony-life-server\harmony-life-server\target\classes started by xrilang in C:\Users\xrilang\Desktop\harmony-life\harmony-life-server\harmony-life-server) +2024-09-24 11:15:13.267 DEBUG c.g.h.HarmonyLifeServerApplication - Running with Spring Boot v3.3.4, Spring v6.1.13 +2024-09-24 11:15:13.267 INFO c.g.h.HarmonyLifeServerApplication - No active profile set, falling back to 1 default profile: "default" +2024-09-24 11:15:13.798 INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode +2024-09-24 11:15:13.799 INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data JDBC repositories in DEFAULT mode. +2024-09-24 11:15:13.810 INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 8 ms. Found 0 JDBC repository interfaces. +2024-09-24 11:15:13.821 INFO o.s.d.r.c.RepositoryConfigurationDelegate - Multiple Spring Data modules found, entering strict repository configuration mode +2024-09-24 11:15:13.822 INFO o.s.d.r.c.RepositoryConfigurationDelegate - Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2024-09-24 11:15:13.833 INFO o.s.d.r.c.RepositoryConfigurationDelegate - Finished Spring Data repository scanning in 5 ms. Found 0 Redis repository interfaces. +2024-09-24 11:15:14.229 INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat initialized with port 8080 (http) +2024-09-24 11:15:14.237 INFO o.a.catalina.core.StandardService - Starting service [Tomcat] +2024-09-24 11:15:14.237 INFO o.a.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/10.1.30] +2024-09-24 11:15:14.290 INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring embedded WebApplicationContext +2024-09-24 11:15:14.290 INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 996 ms +2024-09-24 11:15:14.979 INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Starting... +2024-09-24 11:15:15.071 INFO com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - Added connection com.mysql.cj.jdbc.ConnectionImpl@13a9cdae +2024-09-24 11:15:15.072 INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Start completed. +2024-09-24 11:15:15.199 INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat started on port 8080 (http) with context path '/' +2024-09-24 11:15:15.205 INFO c.g.h.HarmonyLifeServerApplication - Started HarmonyLifeServerApplication in 2.283 seconds (process running for 2.677) +2024-09-24 11:15:22.295 INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring DispatcherServlet 'dispatcherServlet' +2024-09-24 11:15:22.296 INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet' +2024-09-24 11:15:22.297 INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 1 ms +2024-09-24 11:15:22.636 INFO c.g.h.service.impl.UserServiceImpl - 查询用户1的用户信息 +2024-09-24 11:15:22.648 DEBUG c.g.h.mapper.UserMapper.getUserById - ==> Preparing: SELECT * from user_info where id=? AND status=1 +2024-09-24 11:15:22.661 DEBUG c.g.h.mapper.UserMapper.getUserById - ==> Parameters: 1(Long) +2024-09-24 11:15:22.677 DEBUG c.g.h.mapper.UserMapper.getUserById - <== Total: 1 +2024-09-24 11:15:22.679 DEBUG c.g.h.m.AuthMapper.getUserRoleById - ==> Preparing: SELECT * from system_role where role_id=? AND status=1 +2024-09-24 11:15:22.679 DEBUG c.g.h.m.AuthMapper.getUserRoleById - ==> Parameters: root(String) +2024-09-24 11:15:22.680 DEBUG c.g.h.m.AuthMapper.getUserRoleById - <== Total: 1 +2024-09-24 11:15:22.681 DEBUG c.g.h.m.A.getUserPermissionListByRoleId - ==> Preparing: select * from system_role_permission where role_id=? AND status=1 +2024-09-24 11:15:22.682 DEBUG c.g.h.m.A.getUserPermissionListByRoleId - ==> Parameters: root(String) +2024-09-24 11:15:22.684 DEBUG c.g.h.m.A.getUserPermissionListByRoleId - <== Total: 16 +2024-09-24 11:15:22.685 INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:SystemPermission(id=1, permissionId=dashboard, permissionName=null, status=1) +2024-09-24 11:15:22.686 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-24 11:15:22.686 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: dashboard(String), 1(Long) +2024-09-24 11:15:22.687 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 0 +2024-09-24 11:15:22.687 INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:SystemPermission(id=2, permissionId=exception, permissionName=null, status=1) +2024-09-24 11:15:22.687 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-24 11:15:22.687 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: exception(String), 1(Long) +2024-09-24 11:15:22.688 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 0 +2024-09-24 11:15:22.688 INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:SystemPermission(id=3, permissionId=result, permissionName=null, status=1) +2024-09-24 11:15:22.688 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-24 11:15:22.689 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: result(String), 1(Long) +2024-09-24 11:15:22.690 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 0 +2024-09-24 11:15:22.690 INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:SystemPermission(id=4, permissionId=profile, permissionName=null, status=1) +2024-09-24 11:15:22.690 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-24 11:15:22.690 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: profile(String), 1(Long) +2024-09-24 11:15:22.691 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 0 +2024-09-24 11:15:22.691 INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:SystemPermission(id=5, permissionId=table, permissionName=null, status=1) +2024-09-24 11:15:22.691 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-24 11:15:22.691 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: table(String), 1(Long) +2024-09-24 11:15:22.692 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 0 +2024-09-24 11:15:22.692 INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:SystemPermission(id=6, permissionId=form, permissionName=null, status=1) +2024-09-24 11:15:22.692 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-24 11:15:22.692 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: form(String), 1(Long) +2024-09-24 11:15:22.692 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 0 +2024-09-24 11:15:22.693 INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:SystemPermission(id=7, permissionId=order, permissionName=null, status=1) +2024-09-24 11:15:22.693 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-24 11:15:22.693 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: order(String), 1(Long) +2024-09-24 11:15:22.693 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 0 +2024-09-24 11:15:22.693 INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:SystemPermission(id=8, permissionId=permission, permissionName=null, status=1) +2024-09-24 11:15:22.694 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-24 11:15:22.694 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: permission(String), 1(Long) +2024-09-24 11:15:22.695 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 6 +2024-09-24 11:15:22.695 INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:SystemPermission(id=9, permissionId=role, permissionName=null, status=1) +2024-09-24 11:15:22.695 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-24 11:15:22.695 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: role(String), 1(Long) +2024-09-24 11:15:22.697 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 6 +2024-09-24 11:15:22.697 INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:SystemPermission(id=10, permissionId=user, permissionName=null, status=1) +2024-09-24 11:15:22.697 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-24 11:15:22.697 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: user(String), 1(Long) +2024-09-24 11:15:22.697 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 0 +2024-09-24 11:15:22.697 INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:SystemPermission(id=11, permissionId=system, permissionName=null, status=1) +2024-09-24 11:15:22.698 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-24 11:15:22.698 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: system(String), 1(Long) +2024-09-24 11:15:22.698 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 0 +2024-09-24 11:15:22.698 INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:SystemPermission(id=12, permissionId=otherPage, permissionName=null, status=1) +2024-09-24 11:15:22.699 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-24 11:15:22.699 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: otherPage(String), 1(Long) +2024-09-24 11:15:22.699 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 0 +2024-09-24 11:15:22.699 INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:SystemPermission(id=13, permissionId=UserList, permissionName=null, status=1) +2024-09-24 11:15:22.700 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-24 11:15:22.700 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: UserList(String), 1(Long) +2024-09-24 11:15:22.701 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 0 +2024-09-24 11:15:22.701 INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:SystemPermission(id=14, permissionId=RoleList, permissionName=null, status=1) +2024-09-24 11:15:22.702 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-24 11:15:22.702 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: RoleList(String), 1(Long) +2024-09-24 11:15:22.703 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 0 +2024-09-24 11:15:22.703 INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:SystemPermission(id=15, permissionId=support, permissionName=null, status=1) +2024-09-24 11:15:22.703 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-24 11:15:22.704 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: support(String), 1(Long) +2024-09-24 11:15:22.704 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 0 +2024-09-24 11:15:22.704 INFO c.g.h.service.impl.UserServiceImpl - 得到的权限:SystemPermission(id=16, permissionId=userManage, permissionName=null, status=1) +2024-09-24 11:15:22.704 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Preparing: SELECT * FROM system_action sa JOIN system_permission_action spa ON sa.tag = spa.action_tag WHERE spa.permission_id = ? AND sa.status = 1 AND uid=? +2024-09-24 11:15:22.704 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - ==> Parameters: userManage(String), 1(Long) +2024-09-24 11:15:22.705 DEBUG c.g.h.m.A.getActionByPermissionIdAndUid - <== Total: 0 +2024-09-24 11:15:22.711 INFO c.g.h.service.impl.UserServiceImpl - UserInfoLogin(id=1, name=萌狼蓝天, username=xrilang, avatar=https://q1.qlogo.cn/g?b=qq&nk=3447902411&s=640, email=null, telephone=null, status=0, lastLoginIp=null, lastLoginTime=null, createTime=null, creator=null, merchantCode=null, roleId=root, role=RoleInfo(id=root, name=超级管理员, description=最高权限, status=0, creatorId=null, createTime=null, deleted=0, permissions=[PermissionInfo(roleId=root, permissionId=dashboard, permissionName=null, actionEntitySet=[], actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=exception, permissionName=null, actionEntitySet=[], actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=result, permissionName=null, actionEntitySet=[], actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=profile, permissionName=null, actionEntitySet=[], actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=table, permissionName=null, actionEntitySet=[], actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=form, permissionName=null, actionEntitySet=[], actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=order, permissionName=null, actionEntitySet=[], actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=permission, permissionName=null, actionEntitySet=[ActionEntitySet(action=add, describe=新增, defaultCheck=false), ActionEntitySet(action=import, describe=导入, defaultCheck=false), ActionEntitySet(action=get, describe=详情, defaultCheck=false), ActionEntitySet(action=update, describe=更新, defaultCheck=false), ActionEntitySet(action=delete, describe=删除, defaultCheck=false), ActionEntitySet(action=export, describe=导出, defaultCheck=false)], actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=role, permissionName=null, actionEntitySet=[ActionEntitySet(action=add, describe=新增, defaultCheck=false), ActionEntitySet(action=import, describe=导入, defaultCheck=false), ActionEntitySet(action=get, describe=详情, defaultCheck=false), ActionEntitySet(action=update, describe=更新, defaultCheck=false), ActionEntitySet(action=delete, describe=删除, defaultCheck=false), ActionEntitySet(action=export, describe=导出, defaultCheck=false)], actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=user, permissionName=null, actionEntitySet=[], actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=system, permissionName=null, actionEntitySet=[], actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=otherPage, permissionName=null, actionEntitySet=[], actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=UserList, permissionName=null, actionEntitySet=[], actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=RoleList, permissionName=null, actionEntitySet=[], actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=support, permissionName=null, actionEntitySet=[], actionList=null, dataAccess=null), PermissionInfo(roleId=root, permissionId=userManage, permissionName=null, actionEntitySet=[], actionList=null, dataAccess=null)]), token=null, expireTime=null) +2024-09-24 11:15:23.029 ERROR c.g.h.config.GlobalExceptionHandler - Error occurred in com.guaiguailang.harmony.service.impl.UserServiceImpl at line 109 in file UserServiceImpl.java +2024-09-24 11:15:23.038 ERROR c.g.h.config.GlobalExceptionHandler - Error occurred in com.guaiguailang.harmony.service.impl.UserServiceImpl at line 89 in file UserServiceImpl.java +2024-09-24 11:16:44.401 INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown initiated... +2024-09-24 11:16:44.406 INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown completed. diff --git a/src/main/java/com/guaiguailang/harmony/config/GlobalExceptionHandler.java b/src/main/java/com/guaiguailang/harmony/config/GlobalExceptionHandler.java index 6fb7b15..1e3e56b 100644 --- a/src/main/java/com/guaiguailang/harmony/config/GlobalExceptionHandler.java +++ b/src/main/java/com/guaiguailang/harmony/config/GlobalExceptionHandler.java @@ -1,12 +1,10 @@ package com.guaiguailang.harmony.config; -import cn.dev33.satoken.util.SaResult; import lombok.extern.slf4j.Slf4j; +import org.springframework.http.ResponseEntity; import org.springframework.web.bind.annotation.ExceptionHandler; import org.springframework.web.bind.annotation.RestControllerAdvice; import org.fusesource.jansi.Ansi; -import java.util.Arrays; -import java.util.Objects; @RestControllerAdvice @Slf4j diff --git a/src/main/java/com/guaiguailang/harmony/controller/UserController.java b/src/main/java/com/guaiguailang/harmony/controller/UserController.java index 715e145..3b9dc01 100644 --- a/src/main/java/com/guaiguailang/harmony/controller/UserController.java +++ b/src/main/java/com/guaiguailang/harmony/controller/UserController.java @@ -1,16 +1,14 @@ package com.guaiguailang.harmony.controller; import com.guaiguailang.harmony.domain.dto.ParamLogin; +import com.guaiguailang.harmony.domain.dto.ParamUserAdd; import com.guaiguailang.harmony.domain.dto.ParamUserList; import com.guaiguailang.harmony.service.UserService; import io.swagger.v3.oas.annotations.Operation; import io.swagger.v3.oas.annotations.tags.Tag; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.http.ResponseEntity; -import org.springframework.web.bind.annotation.GetMapping; -import org.springframework.web.bind.annotation.RequestBody; -import org.springframework.web.bind.annotation.RequestMapping; -import org.springframework.web.bind.annotation.RestController; +import org.springframework.web.bind.annotation.*; import java.security.NoSuchAlgorithmException; @@ -48,4 +46,15 @@ public class UserController { public ResponseEntity getUserListNum(){ return ResponseEntity.ok(userService.getUserListNum()); } + + @PostMapping("/add/roleList") + public ResponseEntity getRoleListWhenAddUser(@RequestParam String role){ +// System.out.println("当前用户权限:"+role); + return ResponseEntity.ok(userService.getRoleListWhenAddUser(role)); + } + @PostMapping("/add") + public ResponseEntity addUser(@RequestBody ParamUserAdd userAddParam){ + return ResponseEntity.ok(userService.addUser(userAddParam)); + } + } diff --git a/src/main/java/com/guaiguailang/harmony/domain/dto/ParamUserAdd.java b/src/main/java/com/guaiguailang/harmony/domain/dto/ParamUserAdd.java new file mode 100644 index 0000000..217ff2b --- /dev/null +++ b/src/main/java/com/guaiguailang/harmony/domain/dto/ParamUserAdd.java @@ -0,0 +1,22 @@ +package com.guaiguailang.harmony.domain.dto; + +import lombok.Data; + +import java.time.LocalDateTime; + +@Data +public class ParamUserAdd { + // 创建人 + Long creatorId; + String name; + String userName; + String password; + String email; + String telphone; + String roleId; + String avatar; + int status; + LocalDateTime createTime; + String merchantCode; // 商户编号 + Long id; +} diff --git a/src/main/java/com/guaiguailang/harmony/mapper/UserMapper.java b/src/main/java/com/guaiguailang/harmony/mapper/UserMapper.java index 2f8aaf4..686600b 100644 --- a/src/main/java/com/guaiguailang/harmony/mapper/UserMapper.java +++ b/src/main/java/com/guaiguailang/harmony/mapper/UserMapper.java @@ -1,5 +1,7 @@ package com.guaiguailang.harmony.mapper; +import com.guaiguailang.harmony.domain.dto.ParamUserAdd; +import com.guaiguailang.harmony.domain.entity.SystemRole; import com.guaiguailang.harmony.domain.entity.UserInfo; import com.guaiguailang.harmony.domain.vo.UserListNum; import org.apache.ibatis.annotations.Mapper; @@ -23,4 +25,9 @@ public interface UserMapper { List getUserListAll(int limit,int end, String merchantCode, Map queryConditions); UserListNum getUserListNum(String merchantCode); + @Select("SELECT * FROM system_role WHERE level > (SELECT level FROM system_role WHERE role_id = #{roleId})") + List getRoleListWhenAddUser(String role); + + + int addUser(ParamUserAdd userAddParam); } diff --git a/src/main/java/com/guaiguailang/harmony/service/UserService.java b/src/main/java/com/guaiguailang/harmony/service/UserService.java index 322952f..e01f806 100644 --- a/src/main/java/com/guaiguailang/harmony/service/UserService.java +++ b/src/main/java/com/guaiguailang/harmony/service/UserService.java @@ -1,7 +1,9 @@ package com.guaiguailang.harmony.service; +import com.guaiguailang.harmony.domain.dto.ParamUserAdd; import com.guaiguailang.harmony.domain.dto.ParamUserList; import com.guaiguailang.harmony.domain.vo.ResponseResult; +import org.springframework.http.ResponseEntity; public interface UserService { ResponseResult getUserInfo(); @@ -9,4 +11,8 @@ public interface UserService { ResponseResult getUserList(ParamUserList userListParam); Object getUserListNum(); + + ResponseResult getRoleListWhenAddUser(String role); + + ResponseResult addUser(ParamUserAdd userAddParam); } diff --git a/src/main/java/com/guaiguailang/harmony/service/impl/AuthServiceImpl.java b/src/main/java/com/guaiguailang/harmony/service/impl/AuthServiceImpl.java index 34bb5a4..8ede057 100644 --- a/src/main/java/com/guaiguailang/harmony/service/impl/AuthServiceImpl.java +++ b/src/main/java/com/guaiguailang/harmony/service/impl/AuthServiceImpl.java @@ -16,11 +16,13 @@ import org.springframework.beans.BeanUtils; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.http.ResponseEntity; import org.springframework.stereotype.Service; +import org.springframework.transaction.annotation.Transactional; import java.security.NoSuchAlgorithmException; import java.time.LocalDateTime; @Slf4j @Service +@Transactional public class AuthServiceImpl implements AuthService { @Autowired private final AuthMapper authMapper; @@ -42,6 +44,7 @@ public class AuthServiceImpl implements AuthService { return ResponseResult.error("用户不存在"); } log.info("查询到用户{}", userInfo.toString()); + // 验证密码 boolean isVerified = PasswordEncryptor.verifyPassword(userInfo.getPassword(), loginParam.getPassword()); if (!isVerified) { diff --git a/src/main/java/com/guaiguailang/harmony/service/impl/UserServiceImpl.java b/src/main/java/com/guaiguailang/harmony/service/impl/UserServiceImpl.java index d8ab549..125bcd7 100644 --- a/src/main/java/com/guaiguailang/harmony/service/impl/UserServiceImpl.java +++ b/src/main/java/com/guaiguailang/harmony/service/impl/UserServiceImpl.java @@ -1,6 +1,8 @@ package com.guaiguailang.harmony.service.impl; import cn.dev33.satoken.stp.StpUtil; +import com.github.yitter.idgen.YitIdHelper; +import com.guaiguailang.harmony.domain.dto.ParamUserAdd; import com.guaiguailang.harmony.domain.dto.ParamUserList; import com.guaiguailang.harmony.domain.entity.SystemAction; import com.guaiguailang.harmony.domain.entity.SystemPermission; @@ -10,15 +12,20 @@ import com.guaiguailang.harmony.domain.vo.*; import com.guaiguailang.harmony.mapper.AuthMapper; import com.guaiguailang.harmony.mapper.UserMapper; import com.guaiguailang.harmony.service.UserService; +import com.guaiguailang.harmony.utils.PasswordEncryptor; import lombok.extern.slf4j.Slf4j; import org.springframework.beans.BeanUtils; import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.http.ResponseEntity; import org.springframework.stereotype.Service; +import org.springframework.transaction.annotation.Transactional; +import java.time.LocalDateTime; import java.util.*; @Slf4j @Service +@Transactional public class UserServiceImpl implements UserService { @Autowired private final UserMapper userMapper; @@ -120,4 +127,58 @@ public class UserServiceImpl implements UserService { UserListNum userListNum = userMapper.getUserListNum(merchantCode); return ResponseResult.success(userListNum); } + + @Override + public ResponseResult getRoleListWhenAddUser(String role) { + return ResponseResult.success(userMapper.getRoleListWhenAddUser(role)); + } + + @Override + public ResponseResult addUser(ParamUserAdd userAddParam) { + // 先根据用户账号username查询用户是否存在,避免重复 + UserInfo userInfo = getUserByAccount(userAddParam.getUserName()); + if (userInfo != null) { + return ResponseResult.error("用户账号已存在"); + } + // 创建者 + userAddParam.setCreatorId(Long.parseLong(StpUtil.getLoginId().toString())); + System.out.println( + userAddParam.getCreatorId() + ); + // 判断是否包含商户信息,不包含则继承创建人的商户信息 + if (userAddParam.getMerchantCode()==null){ + UserInfo creator = userMapper.getUserById(userAddParam.getCreatorId()); + userAddParam.setMerchantCode(creator.getMerchantCode()); + } + + // userInfo add data + // 密码加密 + try{ + userAddParam.setPassword( PasswordEncryptor.hashPassword(userAddParam.getPassword())); + }catch (Exception e){ + e.printStackTrace(); + return ResponseResult.error(e.getMessage()); + } + // 配置id + userAddParam.setId(YitIdHelper.nextId()); + // 注册时间 + userAddParam.setCreateTime(LocalDateTime.now()); + // 账号状态 默认激活 + + userAddParam.setStatus(1); + + + + int result = userMapper.addUser(userAddParam); + if (result == 1) { + return ResponseResult.success(userAddParam); + }else { + return ResponseResult.error("新增用户失败"); + } + } + + // 方法 + public UserInfo getUserByAccount(String username){ + return userMapper.getUserByAccount(username); + } } diff --git a/src/main/resources/mapper/UserMapper.xml b/src/main/resources/mapper/UserMapper.xml index b01c45f..f4c88e6 100644 --- a/src/main/resources/mapper/UserMapper.xml +++ b/src/main/resources/mapper/UserMapper.xml @@ -55,4 +55,16 @@ WHERE merchant_code = #{merchantCode} + + + INSERT INTO user_info ( + id, name, username, password, avatar, status, telephone, email, create_time, merchant_code, deleted, role_id, creator_id + ) VALUES ( + #{id}, #{name}, #{userName}, #{password}, #{avatar}, #{status}, #{telphone}, #{email}, #{createTime}, + + #{merchantCode}, + 0, #{roleId}, #{creatorId} + ) + + \ No newline at end of file