标签:关系 for into intercept 不为 优先 dbi span size
集成方法请看上面的文档,集成后,可以继续阅读本页文档。
Mapper<T>
,必须指定泛型<T>
例如下面的例子:
public interface UserInfoMapper extends Mapper<UserInfo> {
//其他必须手写的接口...
}
一旦继承了Mapper<T>
,继承的Mapper
就拥有了Mapper<T>
所有的通用方法。
2. 泛型(实体类)<T>
的类型必须符合要求
实体类按照如下规则和数据库表进行转换,注解全部是JPA中的注解:
表名默认使用类名,驼峰转下划线(只对大写字母进行处理),如UserInfo
默认对应的表名为user_info
。
表名可以使用@Table(name = "tableName")
进行指定,对不符合第一条默认规则的可以通过这种方式指定表名.
字段默认和@Column
一样,都会作为表字段,表字段默认为Java对象的Field
名字驼峰转下划线形式.
可以使用@Column(name = "fieldName")
指定不符合第3条规则的字段名
使用@Transient
注解可以忽略字段,添加该注解的字段不会作为表字段使用.
建议一定是有一个@Id
注解作为主键的字段,可以有多个@Id
注解的字段作为联合主键.
默认情况下,实体类中如果不存在包含@Id
注解的字段,所有的字段都会作为主键字段进行使用(这种效率极低).
实体类可以继承使用,可以参考测试代码中的tk.mybatis.mapper.model.UserLogin2
类.
由于基本类型,如int作为实体类字段时会有默认值0,而且无法消除,所以实体类中建议不要使用基本类型.
@NameStyle
注解,用来配置对象名/字段和表名/字段之间的转换方式,该注解优先于全局配置style
,可选值:
normal
:使用实体类名/属性名作为表名/字段名camelhump
:这是默认值,驼峰转换为下划线形式uppercase
:转换为大写lowercase
:转换为小写通过使用Mapper专用的MyBatis生成器插件可以直接生成符合要求带注解的实体类。
@Transient
注解许多人由于不仔细看文档,频繁在这个问题上出错。
如果你的实体类中包含了不是数据库表中的字段,你需要给这个字段加上@Transient
注解,这样通用Mapper在处理单表操作时就不会将标注的属性当成表字段处理!
通用Mapper还提供了序列(支持Oracle)、UUID(任意数据库,字段长度32)、主键自增(类似Mysql,Hsqldb)三种方式,其中序列和UUID可以配置多个,主键自增只能配置一个。
由于MySql自增主键最常用,所以这里从最简单的配置方式开始。
@GeneratedValue(generator = "JDBC")
@Id
@GeneratedValue(generator = "JDBC")
private Integer id;
这会令 MyBatis 使用 JDBC 的 getGeneratedKeys 方法来取出由数据库内部生成的主键(比如:像 MySQL 和 SQL Server 这样的关系数据库管理系统的自动递增字段)。
这种情况对应的xml类似下面这样:
<insert id="insertAuthor" useGeneratedKeys="true" keyProperty="id">
insert into Author (username,password,email,bio)
values (#{username},#{password},#{email},#{bio})
</insert>
@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形式为:
<insert id="insertAuthor">
<selectKey keyProperty="id" resultType="int" order="AFTER">
SELECT LAST_INSERT_ID()
</selectKey>
insert into Author
(id, username, password, email,bio, favourite_section)
values
(#{id}, #{username}, #{password}, #{email}, #{bio}, #{favouriteSection,jdbcType=VARCHAR})
</insert>
注意<selectKey>
中的内容就是IDENTITY
参数值对应数据库的SQL
@GeneratedValue(generator = "UUID")
//可以用于任意字符串类型长度超过32位的字段
@GeneratedValue(generator = "UUID")
private String username;
该字段不会回写。这种情况对应类似如下的XML:
<insert id="insertAuthor">
<bind 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})
</insert>
注意:这种方式不能回写,如果想要回写,请看 通用 Mapper UUID 简单示例
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY,generator = "select SEQ_ID.nextval from dual")
private Integer id;
使用Oracle序列的时候,还需要配置:
<property name="ORDER" value="BEFORE"/>
因为在插入数据库前,需要先获取到序列值,否则会报错。
这种情况对于的xml类似下面这样:
<insert id="insertAuthor">
<selectKey keyProperty="id" resultType="int" order="BEFORE">
select SEQ_ID.nextval from dual
</selectKey>
insert into Author
(id, username, password, email,bio, favourite_section)
values
(#{id}, #{username}, #{password}, #{email}, #{bio}, #{favouriteSection,jdbcType=VARCHAR})
</insert>
<mappers>
<mapper class="tk.mybatis.mapper.mapper.CountryMapper" />
<mapper class="tk.mybatis.mapper.mapper.UserInfoMapper" />
<mapper class="tk.mybatis.mapper.mapper.UserLoginMapper" />
</mappers>
如果你在Spring中配置Mapper接口,不需要像上面这样一个个配置,只需要有下面的这个扫描Mapper接口的这个配置即可:
<bean class="tk.mybatis.spring.mapper.MapperScannerConfigurer">
<property name="basePackage" value="com.isea533.mybatis.mapper"/>
</bean>
另外因为通用接口都有顶层的接口,所以你还可以用下面的方式进行配置:
<bean class="tk.mybatis.spring.mapper.MapperScannerConfigurer">
<property name="basePackage" value="com.**.mapper"/>
<property name="markerInterface" value="tk.mybatis.mapper.common.Mapper"/>
</bean>
这样配置后,直接继承了Mapper
接口的才会被扫描,basePackage
可以配置的范围更大。
如果想在Spring4中使用泛型注入,还需要包含Mapper<T>
所在的包,具体请看 在Spring4中使用通用Mapper。
例如下面这个简单的例子:
SqlSession sqlSession = MybatisHelper.getSqlSession();
try {
//获取Mapper
UserInfoMapper mapper = sqlSession.getMapper(UserInfoMapper.class);
UserInfo userInfo = new UserInfo();
userInfo.setUsername("abel533");
userInfo.setPassword("123456");
userInfo.setUsertype("2");
userInfo.setEmail("abel533@gmail.com");
//新增一条数据
Assert.assertEquals(1, mapper.insert(userInfo));
//ID回写,不为空
Assert.assertNotNull(userInfo.getId());
//6是当前的ID
Assert.assertEquals(6, (int)userInfo.getId());
//通过主键删除新增的数据
Assert.assertEquals(1,mapper.deleteByPrimaryKey(userInfo));
} finally {
sqlSession.close();
}
另一个例子:
SqlSession sqlSession = MybatisHelper.getSqlSession();
try {
//获取Mapper
CountryMapper mapper = sqlSession.getMapper(CountryMapper.class);
//查询总数
Assert.assertEquals(183, mapper.selectCount(new Country()));
//查询100
Country country = mapper.selectByPrimaryKey(100);
//根据主键删除
Assert.assertEquals(1, mapper.deleteByPrimaryKey(100));
//查询总数
Assert.assertEquals(182, mapper.selectCount(new Country()));
//插入
Assert.assertEquals(1, mapper.insert(country));
} finally {
sqlSession.close();
}
附:Spring使用相关
直接在需要的地方注入Mapper继承的接口即可,和一般情况下的使用没有区别.
如果你的实体是继承Map的,你可能需要将数据库查询的结果从大写下划线形式转换为驼峰形式,你可以搭配下面的拦截器使用:
CameHumpInterceptor - Map结果的Key转为驼峰式
http://git.oschina.net/free/Mybatis_Utils/tree/master/CameHumpMap
http://git.oschina.net/free/Mapper/blob/master/wiki/mapper3/3.Use.md
标签:关系 for into intercept 不为 优先 dbi span size
原文地址:http://www.cnblogs.com/softidea/p/6049285.html