宁可枝头抱香死,何曾吹落北风中。这篇文章主要讲述Mybatis通用Mapper相关的知识,希望能为你提供帮助。
极其方便的使用Mybatis单表的增删改查
项目地址:http://git.oschina.net/free/Mapper
优点?
不客气的说,使用这个通用Mapper甚至能改变你对Mybatis单表基础操作不方便的想法,使用它你能简单的使用单表的增删改查,包含动态的增删改查.
程序使用拦截器实现具体的执行Sql,完全使用原生的Mybatis进行操作.
你还在因为数据库表变动重新生成xml吗?还是要手动修改自动生成的insert|update|delete的xml呢?赶紧使用通用Mapper,表的变动只需要实体类保持一致,不用管基础的xml,你不止会拥有更多的时间陪老婆|孩子|女朋友|打DOTA,你也不用做哪些繁琐无聊的事情,感兴趣了吗?继续看如何使用吧!!相信这个通用的Mapper会让你更方便的使用Mybatis,这是一个强大的Mapper!!!
不管你信不信,这个项目的测试代码中没有一个Mapper的xml配置文件,但是却可以做到每个Mapper对应上百行xml才能完成的许多功能.没有了这些基础xml信息的干扰,你将会拥有清晰干净的Mapper.xml.
发现BUG可以提Issue,可以给我发邮件,可以加我QQ,可以进Mybatis群讨论.
作者QQ: 120807756
作者邮箱:
[email
protected]
Mybatis工具群: 211286137 (Mybatis相关工具插件等等)
推荐使用Mybatis分页插件:PageHelper分页插件
如何使用?
下面是通用Mapper的配置方法,还会提到spring中的配置方法.还有和PageHelper分页插件集成的配置方式.
1. 引入通用Mapper的代码
将本项目中的4个代码文件(EntityHelper
,Mapper
,MapperHelper
,MapperInterceptor
)复制到你自己的项目中.
项目依赖于JPA的注解,需要引入persistence-api-1.0.jar
或者添加Maven依赖:
< dependency> < groupId> javax.persistence< /groupId> < artifactId> persistence-api< /artifactId> < version> 1.0< /version> < /dependency>
2. 配置Mapper拦截器
在
mybatis-config.xml
中添加如下配置:< plugins> < plugin interceptor="com.github.abel533.mapper.MapperInterceptor"> < !--================================================--> < !--可配置参数说明(一般无需修改)--> < !--================================================--> < !--UUID生成策略--> < !--配置UUID生成策略需要使用OGNL表达式--> < !--默认值32位长度:@[email protected]().toString().replace("-", "")--> < !--< property name="UUID" value="https://www.songbingjia.com/android/@[email? protected]().toString()"/> --> < !--主键自增回写方法,默认值CALL IDENTITY(),适应于大多数数据库--> < !--< property name="IDENTITY" value="https://www.songbingjia.com/android/CALL IDENTITY()"/> --> < !--主键自增回写方法执行顺序,默认AFTER,可选值为(BEFORE|AFTER)--> < !--< property name="ORDER" value="https://www.songbingjia.com/android/AFTER"/> --> < /plugin> < /plugins>
可配置参数一般情况下不需要修改,直接像下面这样一行即可:
< plugin interceptor="com.github.abel533.mapper.MapperInterceptor"> < /plugin>
附:Spring配置相关
如果你使用Spring的方式来配置该拦截器,你可以像下面这样:
< bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean"> < property name="dataSource" ref="dataSource"/> < property name="mapperLocations"> < array> < value> classpath:mapper/*.xml< /value> < /array> < /property> < property name="typeAliasesPackage" value="https://www.songbingjia.com/android/com.isea533.mybatis.model"/> < property name="plugins"> < array> < -- 主要看这里 --> < bean class="com.isea533.mybatis.mapperhelper.MapperInterceptor"/> < /array> < /property> < /bean>
只需要像上面这样配置一个bean即可.
如果你同时使用了PageHelper分页插件,可以像下面这样配置:
< bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean"> < property name="dataSource" ref="dataSource"/> < property name="mapperLocations"> < array> < value> classpath:mapper/*.xml< /value> < /array> < /property> < property name="typeAliasesPackage" value="https://www.songbingjia.com/android/com.isea533.mybatis.model"/> < property name="plugins"> < array> < bean class="com.isea533.mybatis.pagehelper.PageHelper"> < property name="properties"> < value> dialect=hsqldb reasonable=true < /value> < /property> < /bean> < bean class="com.isea533.mybatis.mapperhelper.MapperInterceptor"/> < /array> < /property> < /bean>
一定要注意
PageHelper
和MapperInterceptor
这两者的顺序不能颠倒.如果你想配置
MapperInterceptor
的参数,可以像PageHelper
中的properties
参数这样配置3. 继承通用的
Mapper<
T>
,必须指定泛型<
T>
例如下面的例子:
public interface UserInfoMapper extends Mapper< UserInfo> { //其他必须手写的接口...}
一旦继承了
Mapper<
T>
,继承的Mapper
就拥有了以下通用的方法://根据实体类不为null的字段进行查询,条件全部使用=号and条件 List< T> select(T record); //根据实体类不为null的字段查询总数,条件全部使用=号and条件 int selectCount(T record); //根据主键进行查询,必须保证结果唯一 //单个字段做主键时,可以直接写主键的值 //联合主键时,key可以是实体类,也可以是Map T selectByPrimaryKey(Object key); //插入一条数据 //支持Oracle序列,UUID,类似mysql的INDENTITY自动增长(自动回写) //优先使用传入的参数值,参数值空时,才会使用序列、UUID,自动增长 int insert(T record); //插入一条数据,只插入不为null的字段,不会影响有默认值的字段 //支持Oracle序列,UUID,类似Mysql的INDENTITY自动增长(自动回写) //优先使用传入的参数值,参数值空时,才会使用序列、UUID,自动增长 int insertSelective(T record); //根据实体类中字段不为null的条件进行删除,条件全部使用=号and条件 int delete(T key); //通过主键进行删除,这里最多只会删除一条数据 //单个字段做主键时,可以直接写主键的值 //联合主键时,key可以是实体类,也可以是Map int deleteByPrimaryKey(Object key); //根据主键进行更新,这里最多只会更新一条数据 //参数为实体类 int updateByPrimaryKey(T record); //根据主键进行更新 //只会更新不是null的数据 int updateByPrimaryKeySelective(T record);
4. 泛型(实体类)
<
T>
的类型必须符合要求实体类按照如下规则和数据库表进行转换,注解全部是JPA中的注解:
- 表名默认使用类名,驼峰转下划线,如
UserInfo
默认对应的表名为user_info
.
- 表名可以使用
@Table(name = "tableName")
进行指定,对不符合第一条默认规则的可以通过这种方式指定表名.
- 字段默认和
@Column
一样,都会作为表字段,表字段默认为Java对象的Field
名字驼峰转下划线形式.
- 可以使用
@Column(name = "fieldName")
指定不符合第3条规则的字段名
- 使用
@Transient
注解可以忽略字段,添加该注解的字段不会作为表字段使用.
- 建议一定是有一个
@Id
注解作为主键的字段,可以有多个@Id
注解的字段作为联合主键.
- 默认情况下,实体类中如果不存在包含
@Id
注解的字段,所有的字段都会作为主键字段进行使用(这种效率极低).
- 实体类可以继承使用,可以参考测试代码中的
com.github.abel533.model.UserLogin2
类.
- 由于基本类型,如int作为实体类字段时会有默认值0,而且无法消除,所以实体类中建议不要使用基本类型.
这三种方式不能同时使用,同时存在时按照
序列>
UUID>
主键自增
的优先级进行选择.下面是具体配置方法:- 使用序列可以添加如下的注解:
//可以用于数字类型,字符串类型(需数据库支持自动转型)的字段 @SequenceGenerator(name="Any",sequenceName="seq_userid") @Id private Integer id;
- 使用UUID时:
//可以用于任意字符串类型长度超过32位的字段 @GeneratedValue(generator = "UUID") private String countryname;
- 使用主键自增:
//不限于@Id注解的字段,但是一个实体类中只能存在一个(继承关系中也只能存在一个) @Id @GeneratedValue(strategy = GenerationType.IDENTITY) private Integer id;
例如本项目测试中的配置:
< mappers> < mapper class="com.github.abel533.mapper.CountryMapper" /> < mapper class="com.github.abel533.mapper.Country2Mapper" /> < mapper class="com.github.abel533.mapper.CountryTMapper" /> < mapper class="com.github.abel533.mapper.CountryUMapper" /> < mapper class="com.github.abel533.mapper.CountryIMapper" /> < mapper class="com.github.abel533.mapper.UserInfoMapper" /> < mapper class="com.github.abel533.mapper.UserLoginMapper" /> < mapper class="com.github.abel533.mapper.UserLogin2Mapper" /> < /mappers>
附:Spring配置相关
如果你在Spring中配置Mapper接口,不需要像上面这样一个个配置,只需要有下面的这个扫描Mapper接口的这个配置即可:
< bean class="org.mybatis.spring.mapper.MapperScannerConfigurer"> < property name="basePackage" value="https://www.songbingjia.com/android/com.isea533.mybatis.mapper"/> < /bean>
6. 代码中使用
例如下面这个简单的例子:
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("[email protected]"); //新增一条数据 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继承的接口即可,和一般情况下的使用没有区别.
关于和Spring结合的例子,可以看下面的地址: https://github.com/abel533/Mybatis-Spring
当前版本v0.1.0
这是一个新生的开源项目
首先感谢您能看到这里!
这是一个新生的项目,一切都刚刚开始,虽然项目中包含大量的测试,但是仍然会有很多未知的bug存在,希望各位能够在使用过程中发现问题时及时反馈,欢迎各位fork本项目进行参与!
【Mybatis通用Mapper】
推荐阅读
- Android Studio 那些事|Activity文件前标识图标显示为 j 而是 c
- Android自己主动升级框架
- Android中Intent具体解释之使用Intent广播事件及Broadcast Receiver简单介绍
- Android版微信小代码(转)
- Android自己定义圆角ImageView
- QT Flappy_bird
- Android自己定义控件
- Android系统优化
- 08_Android中的SimpleAdapter的使用