1. XenForo 1.5.14 中文版——支持中文搜索!现已发布!查看详情
  2. Xenforo 爱好者讨论群:215909318 XenForo专区

新闻 Mybatis 通用 Mapper 2.3.3 发布 下载

本帖由 漂亮的石头2015-05-15 发布。版面名称:软件资讯

  1. 漂亮的石头

    漂亮的石头 版主 管理成员

    注册:
    2012-02-10
    帖子:
    486,329
    赞:
    46
    Mybatis通用Mapper

    极其方便的使用Mybatis单表的增删改查

    支持单表操作,不支持通用的多表联合查询

    优点?


    [COLOR=rgba(0, 0, 0, 0.8)]通用Mapper可以极大的方便开发人员。[/COLOR]

    [COLOR=rgba(0, 0, 0, 0.8)]为了让您更方便的了解通用Mapper,下面贴一段代码来看实际效果。[/COLOR]

    通用Mapper


    [COLOR=rgba(0, 0, 0, 0.8)]通用Mapper可以缓存,全部针对单表操作,每个实体类都需要继承通用Mapper接口来获得通用方法。[/COLOR]

    [COLOR=rgba(0, 0, 0, 0.8)]示例代码:[/COLOR]

    CountryMapper mapper = sqlSession.getMapper(CountryMapper.class);
    //查询全部
    List<Country> countryList = 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());

    [COLOR=rgba(0, 0, 0, 0.8)]CountryMapper代码如下:[/COLOR]

    public interface CountryMapper extends Mapper<Country> {
    }

    [COLOR=rgba(0, 0, 0, 0.8)]这里不说更具体的内容,如果您有兴趣,可以查看下面的项目文档[/COLOR]

    实体类注解


    [COLOR=rgba(0, 0, 0, 0.8)]从上面效果来看也能感觉出这是一种类似hibernate的用法,因此也需要实体和表对应起来,因此使用了JPA注解。更详细的内容可以看下面的项目文档。[/COLOR]

    [COLOR=rgba(0, 0, 0, 0.8)]Country代码:[/COLOR]

    public class Country {
    @Id
    private Integer id;
    @Column
    private String countryname;
    private String countrycode;
    //省略setter和getter方法
    }

    [COLOR=rgba(0, 0, 0, 0.8)]使用Mapper专用的MyBatis Generator插件 可以方便的生成这些(带注解的)实体类。[/COLOR]

    通用Mapper支持Mybatis-3.2.4及以上版本


    更新日志


    [COLOR=rgba(0, 0, 0, 0.8)]最新版本2.3.3 - 2015-05-14[/COLOR]


    • 解决Example查询中的and缺少空格的问题


    • 去掉UUID和JDBC两种主键策略类型中对字段类型的限制 不再限制为String,可以是任意简单类型,需要自己保证类型匹配。例如UUID配置的策略可以返回Integer,那么字段类型必须是Integer。


    • JDBC类型的主键策略可以配置多个,就相当于keyProperties="id1,id2..."


    • EntityHelper的getOrderByClause方法返回值从StringBuilder改为String,解决@OrderBy注解时的异常


    • 提前预告:下个版本3.0.0会将通用Mapper项目拆分为两个项目,会有一些大的改动


    Maven坐标以及下载地址


    [COLOR=rgba(0, 0, 0, 0.8)]如果你使用Maven,只需要添加如下依赖:[/COLOR]


    <dependency>
    <groupId>com.github.abel533</groupId>
    <artifactId>mapper</artifactId>
    <version>2.3.3</version>
    </dependency>



    [COLOR=rgba(0, 0, 0, 0.8)]如果你想引入Jar包,你可以从下面的地址下载:[/COLOR]

    [COLOR=rgba(0, 0, 0, 0.8)]https://oss.sonatype.org/content/repositories/releases/com/github/abel533/mapper/[/COLOR]

    [COLOR=rgba(0, 0, 0, 0.8)]http://repo1.maven.org/maven2/com/github/abel533/mapper/[/COLOR]

    [COLOR=rgba(0, 0, 0, 0.8)]由于通用Mapper依赖JPA,所以还需要下载persistence-api-1.0.jar:[/COLOR]

    [COLOR=rgba(0, 0, 0, 0.8)]http://repo1.maven.org/maven2/javax/persistence/persistence-api/1.0/[/COLOR]

    项目文档

    [COLOR=rgba(0, 0, 0, 0.8)]通用Mapper[/COLOR]


    1. 如何集成通用Mapper


    2. 如何使用通用Mapper


    3. 如何开发自己的通用Mapper


    4. 在Spring4中使用通用Mapper


    5. 如何使用Mapper专用的MyBatis Generator插件
    作者信息


    [COLOR=rgba(0, 0, 0, 0.8)]作者博客:http://blog.csdn.net/isea533[/COLOR]

    [COLOR=rgba(0, 0, 0, 0.8)]作者邮箱: abel533@gmail.com[/COLOR]

    [COLOR=rgba(0, 0, 0, 0.8)]Mybatis工具群: 211286137 (Mybatis相关工具插件等等)[/COLOR]

    [COLOR=rgba(0, 0, 0, 0.8)]推荐使用Mybatis分页插件:PageHelper分页插件[/COLOR]

    [COLOR=rgba(0, 0, 0, 0.8)]官方网站:www.mybatis.tk[/COLOR]
    Mybatis 通用 Mapper 2.3.3 发布下载地址
     
正在加载...