https://gitee.com/free/Mapper/wikis/Home
更多内容上该网址查看
Maven依赖
tk.mybatis
mapper
4.0.0-beta3
Spring配置,代替org的mybatis
mappers=tk.mybatis.mapper.common.Mapper
注意这里使用 tk.mybatis.spring.mapper.MapperScannerConfigure
替换原来Mybatis的 org.mybatis.spring.mapper.MapperScannerConfigurer
。
可配参数介绍:
大多数情况下不会用到这些参数,有特殊情况可以自行研究。
实体类的写法
记住一个原则:实体类的字段数量 >= 数据库表中需要操作的字段数量。默认情况下,实体类中的所有字段都会作为表中的字段来操作,如果有额外的字段,必须加上 @Transient
注解。
说明:
DAO 的写法
在传统的Mybatis写法中, DAO 接口需要与 Mapper 文件关联,即需要编写 SQL 来实现 DAO 接口中的方法。而在通用Mapper中, DAO 只需要继承一个通用接口,即可拥有丰富的方法:
继承通用的Mapper ,必须指定泛型
@Component
public interface BasDictMapper extends Mapper {
}
一旦继承了Mapper ,继承的Mapper就拥有了Mapper 所有的通用方法:
Select
方法: List
说明:根据实体中的属性值进行查询,查询条件使用等号
方法: T selectByPrimaryKey(Object key);
说明:根据主键字段进行查询,方法参数必须包含完整的主键属性,查询条件使用等号
方法: List
说明:查询全部结果,select(null)方法能达到同样的效果
方法: T selectOne(T record);
说明:根据实体中的属性进行查询,只能有一个返回值,有多个结果是抛出异常,查询条件使用等号
方法: int selectCount(T record);
说明:根据实体中的属性查询总数,查询条件使用等号
Insert
方法: int insert(T record);
说明:保存一个实体,null的属性也会保存,不会使用数据库默认值
方法: int insertSelective(T record);
说明:保存一个实体,null的属性不会保存,会使用数据库默认值
Update
方法: int updateByPrimaryKey(T record);
说明:根据主键更新实体全部字段,null值会被更新
方法: int updateByPrimaryKeySelective(T record);
说明:根据主键更新属性不为null的值
Delete
方法: int delete(T record);
说明:根据实体属性作为条件进行删除,查询条件使用等号
方法: int deleteByPrimaryKey(Object key);
说明:根据主键字段进行删除,方法参数必须包含完整的主键属性
Example方法
方法: List
说明:根据Example条件进行查询
重点:这个查询支持通过 Example 类指定查询列,通过 selectProperties 方法指定查询列
方法: int selectCountByExample(Object example);
说明:根据Example条件进行查询总数
方法: int updateByExample(@Param("record") T record, @Param("example") Object example);
说明:根据Example条件更新实体 record 包含的全部属性,null值会被更新
方法: int updateByExampleSelective(@Param("record") T record, @Param("example") Object example);
说明:根据Example条件更新实体 record 包含的不是null的属性值
方法: int deleteByExample(Object example);
说明:根据Example条件删除数据
代码中使用
在 service 中注入 dao ,即可使用。
@Service
@Transactional
public class BasDictServiceImpl extends BaseServiceImplimplements BasDictService {
@Autowired
private BasDictMapper basDictMapper;
}
总结
通用Mapper的原理是通过反射获取实体类的信息,构造出相应的SQL,因此我们只需要维护好实体类即可,对于应付复杂多变的需求提供了很大的便利。上文叙述的只是通用Mapper的简单用法,在实际项目中,还是要根据业务,在通用Mapper的基础上封装出粒度更大、更通用、更好用的方法。
@GeneratedValue(strategy = GenerationType.IDENTITY)
这个注解适用于主键自增的情况,支持下面这些数据库:
VALUES IDENTITY_VAL_LOCAL()
SELECT LAST_INSERT_ID()
SELECT SCOPE_IDENTITY()
VALUES IDENTITY_VAL_LOCAL()
VALUES IDENTITY_VAL_LOCAL()
CALL IDENTITY()
SELECT @@IDENTITY
SELECT IDENTITY_VAL_LOCAL() FROM SYSIBM.SYSDUMMY1
select dbinfo('sqlca.sqlerrd1') from systables where tabid=1
使用GenerationType.IDENTITY
需要在全局配置中配置IDENTITY
的参数值,并且需要根据数库配置ORDER
属性。
举例如下:
//不限于@Id注解的字段,但是一个实体类中只能存在一个(继承关系中也只能存在一个)
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY) private Integer id;
对应的XML形式为:
id="insertAuthor">
keyProperty="id" resultType="int" order="AFTER"> SELECT LAST_INSERT_ID() insert into Author (id, username, password, email,bio, favourite_section) values (#{id}, #{username}, #{password}, #{email}, #{bio}, #{favouriteSection,jdbcType=VARCHAR})
注意<selectKey>
中的内容就是IDENTITY
参数值对应数据库的SQL
@GeneratedValue(generator = "UUID")
//可以用于任意字符串类型长度超过32位的字段
@GeneratedValue(generator = "UUID") private String username;
该字段不会回写。这种情况对应类似如下的XML:
id="insertAuthor">
name="username_bind" value='@java.util.UUID@randomUUID().toString().replace("-", "")' /> insert into Author (id, username, password, email,bio, favourite_section) values (#{id}, #{username_bind}, #{password}, #{email}, #{bio}, #{favouriteSection,jdbcType=VARCHAR})
注意:这种方式不能回写
关于oracle序列:
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY,generator = "select SEQ_ID.nextval from dual") private Integer id;
使用Oracle序列的时候,还需要配置:
mappers=tk.mybatis.mapper.common.Mapper
ORDER=BEFORE
因为在插入数据库前,需要先获取到序列值,否则会报错。
这种情况对于的xml类似下面这样:
id="insertAuthor">
keyProperty="id" resultType="int" order="BEFORE"> select SEQ_ID.nextval from dual insert into Author (id, username, password, email,bio, favourite_section) values (#{id}, #{username}, #{password}, #{email}, #{bio}, #{favouriteSection,jdbcType=VARCHAR})
不存在与数据库的属性用@Transient 注解表示