From 1983c517479316aefbeb2b97c29c0f767d8aeaae Mon Sep 17 00:00:00 2001 From: 疯狂的狮子li <15040126243@163.com> Date: 星期三, 12 四月 2023 18:29:56 +0800 Subject: [PATCH] fix 修复 加解密拦截器 对象属性为null问题 --- ruoyi-extend/ruoyi-xxl-job-admin/pom.xml | 20 +++++++++++++++----- 1 files changed, 15 insertions(+), 5 deletions(-) diff --git a/ruoyi-extend/ruoyi-xxl-job-admin/pom.xml b/ruoyi-extend/ruoyi-xxl-job-admin/pom.xml index ff16436..a95a04a 100644 --- a/ruoyi-extend/ruoyi-xxl-job-admin/pom.xml +++ b/ruoyi-extend/ruoyi-xxl-job-admin/pom.xml @@ -3,13 +3,17 @@ <modelVersion>4.0.0</modelVersion> <parent> <artifactId>ruoyi-extend</artifactId> - <groupId>com.ruoyi</groupId> - <version>4.3.0</version> + <groupId>org.dromara</groupId> + <version>${revision}</version> + <relativePath>../pom.xml</relativePath> </parent> <artifactId>ruoyi-xxl-job-admin</artifactId> <packaging>jar</packaging> <properties> + <spring-boot.version>2.7.8</spring-boot.version> + <spring-boot-admin.version>2.7.10</spring-boot-admin.version> + <mybatis-spring-boot.version>2.2.2</mybatis-spring-boot.version> </properties> <dependencyManagement> @@ -56,21 +60,27 @@ <artifactId>spring-boot-starter-actuator</artifactId> </dependency> + <dependency> + <groupId>org.springframework.boot</groupId> + <artifactId>spring-boot-starter-aop</artifactId> + </dependency> + <!-- mybatis-starter锛歮ybatis + mybatis-spring + hikari锛坉efault锛� --> <dependency> <groupId>org.mybatis.spring.boot</groupId> <artifactId>mybatis-spring-boot-starter</artifactId> - <version>${spring-boot.mybatis}</version> + <version>${mybatis-spring-boot.version}</version> </dependency> <!-- mysql --> <dependency> - <groupId>mysql</groupId> - <artifactId>mysql-connector-java</artifactId> + <groupId>com.mysql</groupId> + <artifactId>mysql-connector-j</artifactId> </dependency> <dependency> <groupId>de.codecentric</groupId> <artifactId>spring-boot-admin-starter-client</artifactId> + <version>${spring-boot-admin.version}</version> </dependency> <!-- xxl-job-core --> -- Gitblit v1.9.3