内容简介:Mybatis 通用 Mapper 3.4.4 发布。 MyBatis 通用 Mapper 极其方便的使用MyBatis单表的增删改查,支持单表操作,不支持通用的多表联合查询。通用 Mapper 可以极大的方便开发人员。可以随意的按照自己的需要选择通用...
Mybatis 通用 Mapper 3.4.4 发布。 MyBatis 通用 Mapper 极其方便的使用MyBatis单表的增删改查,支持单表操作,不支持通用的多表联合查询。通用 Mapper 可以极大的方便开发人员。可以随意的按照自己的需要选择通用方法,还可以很方便的开发自己的通用方法。
文档地址:https://mapperhelper.github.io
3.4.4
增加 mapper-weekend(作者 liuyuyu),支持jdk8函数式引用方法,用法如下:
UserMapper userMapper = sqlSession.getMapper(UserMapper.class); Weekend<User> weekend = Weekend.of(User.class); weekend.weekendCriteria() .andIsNull(User::getId) .andBetween(User::getId,0,10) .andIn(User::getUserName, Arrays.asList("a","b","c"));
可以在Example.Criteria的条件方法里传 lambada(再也不用担心改数据库了......)。
如果你使用 Maven,可以添加下面的依赖:
<dependency> <groupId>tk.mybatis</groupId> <artifactId>mapper</artifactId> <version>3.4.4</version> </dependency>
对应新版本的 starer 会尽快发布。
原来计划的 4.0 版本打算用 mybatis 更原生的方式实现,所以需要尽快配合官方合并一个新功能,只有等合并后才会开始 4.0 的开发。
【声明】文章转载自:开源中国社区 [http://www.oschina.net]
以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,也希望大家多多支持 码农网
猜你喜欢:- Mybatis 通用 Mapper 3.4.3 发布
- Mybatis 通用 Mapper 3.5.0 发布
- Mybatis 通用 Mapper 3.5.0 发布
- Mybatis 通用 Mapper 3.5.2 发布
- Mybatis 通用 Mapper 3.5.2 发布
- Mybatis 通用 Mapper 3.5.3 发布
本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
Programming the Mobile Web
Maximiliano Firtman / O'Reilly Media / 2010-07-23 / $44.99
* Learn how to use your existing skills to move into mobile web development * Discover the new possibilities of mobile web development, and understand its limitations * Get detailed coverage of ......一起来看看 《Programming the Mobile Web》 这本书的介绍吧!