16
16
<dependency >
17
17
<groupId >io.mybatis</groupId >
18
18
<artifactId >mybatis-jakarta-jpa</artifactId >
19
- <version >2.2.3 </version >
19
+ <version >2.2.4 </version >
20
20
</dependency >
21
21
```
22
22
@@ -51,19 +51,19 @@ MyBatis Mapper 要求 MyBatis 最低版本为
51
51
<dependency >
52
52
<groupId >io.mybatis</groupId >
53
53
<artifactId >mybatis-mapper</artifactId >
54
- <version >2.2.3 </version >
54
+ <version >2.2.4 </version >
55
55
</dependency >
56
56
<!-- 使用 Service 层封装时 -->
57
57
<dependency >
58
58
<groupId >io.mybatis</groupId >
59
59
<artifactId >mybatis-service</artifactId >
60
- <version >2.2.3 </version >
60
+ <version >2.2.4 </version >
61
61
</dependency >
62
62
<!-- 使用 ActiveRecord 模式时 -->
63
63
<dependency >
64
64
<groupId >io.mybatis</groupId >
65
65
<artifactId >mybatis-activerecord</artifactId >
66
- <version >2.2.3 </version >
66
+ <version >2.2.4 </version >
67
67
</dependency >
68
68
</dependencies >
69
69
```
@@ -73,11 +73,11 @@ MyBatis Mapper 要求 MyBatis 最低版本为
73
73
74
74
``` groovy
75
75
dependencies {
76
- compile("io.mybatis:mybatis-mapper:2.2.3 ")
76
+ compile("io.mybatis:mybatis-mapper:2.2.4 ")
77
77
// 使用 Service 层封装时
78
- compile("io.mybatis:mybatis-service:2.2.3 ")
78
+ compile("io.mybatis:mybatis-service:2.2.4 ")
79
79
// 使用 ActiveRecord 模式时
80
- compile("io.mybatis:mybatis-activerecord:2.2.3 ")
80
+ compile("io.mybatis:mybatis-activerecord:2.2.4 ")
81
81
}
82
82
```
83
83
0 commit comments