File tree Expand file tree Collapse file tree 4 files changed +9
-4
lines changed
src/main/java/tk/mybatis/mapper/common Expand file tree Collapse file tree 4 files changed +9
-4
lines changed Original file line number Diff line number Diff line change @@ -90,7 +90,7 @@ Country代码:
90
90
<dependency >
91
91
<groupId >tk.mybatis</groupId >
92
92
<artifactId >mapper</artifactId >
93
- <version >3.2.1 </version >
93
+ <version >3.2.2 </version >
94
94
</dependency >
95
95
```
96
96
@@ -108,7 +108,7 @@ http://repo1.maven.org/maven2/javax/persistence/persistence-api/1.0/
108
108
109
109
##Maven坐标以及下载地址
110
110
111
- ###最新版本3.2.2 - 2015-09-06
111
+ ###最新版本3.2.2 - 2015-09-19
112
112
113
113
* 和Spring集成时,允许通过` markerInterface ` 属性配置通用接口(注意该属性的原有作用不变),想要让该接口自动注册,该接口就需要继承` tk.mybatis.mapper.common.Marker ` 接口,` Mapper<T> ` 默认继承该接口,所以如果自己的接口是继承` Mapper<T> ` 的,不需要再继承。
114
114
* 解决注册默认接口时存在的bug
Original file line number Diff line number Diff line change 4
4
5
5
<groupId >tk.mybatis</groupId >
6
6
<artifactId >mapper</artifactId >
7
- <version >3.2.2-SNAPSHOT </version >
7
+ <version >3.2.2</version >
8
8
<packaging >jar</packaging >
9
9
10
10
<name >mapper</name >
Original file line number Diff line number Diff line change 4
4
* 标记接口,继承该接口的接口,在MapperScannerConfigurer#setMarkerInterface时,会自动注册到通用Mapper
5
5
*
6
6
* @author liuzh
7
- * @since 2015-09-06 21:44
7
+ * @since 3.2.2
8
8
*/
9
9
public interface Marker {
10
10
Original file line number Diff line number Diff line change 1
1
#更新日志
2
2
3
+ ##3 .2.2 - 2015-09-19
4
+
5
+ * 和Spring集成时,允许通过` markerInterface ` 属性配置通用接口(注意该属性的原有作用不变),想要让该接口自动注册,该接口就需要继承` tk.mybatis.mapper.common.Marker ` 接口,` Mapper<T> ` 默认继承该接口,所以如果自己的接口是继承` Mapper<T> ` 的,不需要再继承。
6
+ * 解决注册默认接口时存在的bug
7
+
3
8
##3 .2.1 - 2015-09-02
4
9
5
10
* 解决spring集成中可能出现definition.getBeanClassName()空指针异常bug[ #49 ] ( http://git.oschina.net/free/Mapper/issues/49 )
You can’t perform that action at this time.
0 commit comments