发布于 2017-07-18 08:56:27 | 108 次阅读 | 评论: 0 | 来源: 网友投递
Mybatis 通用 Mapper
极其方便的使用Mybatis单表的增删改查支持单表操作,不支持通用的多表联合查询
MyBatis 通用 Mapper 极其方便的使用MyBatis单表的增删改查,支持单表操作,不支持通用的多表联合查询。通用 Mapper 可以极大的方便开发人员。可以随意的按照自己的需要选择通用方法,还可以很方便的开发自己的通用方法。
文档地址:https://mapperhelper.github.io
Example增加复杂的and和or功能。
Example增加排除查询字段的方法excludeProperties(selectProperties优先级更高) #261.
SqlHelper中复杂的if改为choose方式。
解决通过@Column配置关键字的分隔符时,无法得到该列值的bug。
Maven 依赖:
<dependency> <groupId>tk.mybatis</groupId> <artifactId>mapper</artifactId> <version>3.4.1</version> </dependency>
如果你使用 Spring Boot 可以直接引入:
<dependency> <groupId>tk.mybatis</groupId> <artifactId>mapper-spring-boot-starter</artifactId> <version>1.1.2</version> </dependency>