通用Mapper可以极大的方便开发人员。
为了让您更方便的了解通用Mapper,下面贴一段代码来看实际效果。
通用Mapper可以缓存,全部针对单表操作,每个实体类都需要继承通用Mapper接口来获得通用方法。
示例代码:
CountryMapper mapper = SQLSession.getMapper(CountryMapper.class); //查询全部 ListcountryList = mapper.select(new Country()); //总数 Assert.assertEquals(183, countryList.size()); //通用Example查询 Example example = new Example(Country.class); example.createCriteria().andGreaterThan("id", 100); countryList = mapper.selectByExample(example); Assert.assertEquals(83, countryList.size()); //MyBatis-GeneRATor生成的Example查询 CountryExample example2 = new CountryExample(); example2.createCriteria().andIdGreaterThan(100); countryList = mapper.selectByExample(example2); Assert.assertEquals(83, countryList.size());
CountryMapper代码如下:
public interfACE CountryMapper extends Mapper{ }
这里不说更具体的内容,如果您有兴趣,可以查看下面的项目文档
从上面效果来看也能感觉出这是一种类似Hibernate的用法,因此也需要实体和表对应起来,因此使用了JPA注解。更详细的内容可以看下面的项目文档。
Country代码:
public class Country { @Id private Integer id; @Column private String countryname; private String countryCODE; //省略setter和getter方法 }
使用Mapper专用的MyBatis Generator插件 可以方便的生成这些(带注解的)实体类。
如果你使用Maven,只需要添加如下依赖:
com.Github.abel533 mapper x.x.x
如果你想引入Jar包,你可以从下面的地址下载:
HTTPS://oss.sonatype.org/content/reposiTorIEs/releases/com/github/abel533/mapper/
http://repo1.maven.org/maven2/com/github/abel533/mapper/
由于通用Mapper依赖JPA,所以还需要下载persistence-api-1.0.jar:
http://repo1.maven.org/maven2/javax/persistence/persistence-api/1.0/
作者博客:http://blog.csdn.net/isea533
作者邮箱: abel533@gmail.com
Mybatis工具群: 211286137 (Mybatis相关工具插件等等)
推荐使用Mybatis分页插件:PageHelper分页插件
官方网站:www.mybatis.tk
发布于 2017-10-20 01:55:27 | 114 次阅读
发布于 2017-08-21 02:20:15 | 130 次阅读
发布于 2017-07-19 01:18:47 | 131 次阅读
发布于 2017-07-18 08:56:27 | 108 次阅读
发布于 2017-02-21 02:55:49 | 154 次阅读
发布于 2016-09-05 02:28:52 | 142 次阅读