转载

通用 Mapper 4.0.4 发布,新增差异更新方法

4.0.4 更新日志

  • 增加一个差异更新的方法 updateByDiffer 根据两个参数 old 和 newer 进行差异更新,当对应某个字段值不同时才会更新。

  • 添加 updateByPrimaryKeySelectiveWithForceUpdate (#344) by Huang Changyuan

  • KeySql 注解增加 GenSql 配置,允许自定义主键 SQL 生成方式。

  • 修改两个 insertList 参数为 List<? extends T>, fixed #370 。

  • 增加一个基于通用 Mapper 的全套完整架构的多个项目,这些项目在 guozilanTK 组织中。

Maven 依赖:

<dependency>
    <groupId>tk.mybatis</groupId>
    <artifactId>mapper</artifactId>
    <version>4.0.4</version>
</dependency>

如果你使用 Spring Boot,可以添加下面的依赖:

<dependency>
    <groupId>tk.mybatis</groupId>
    <artifactId>mapper-spring-boot-starter</artifactId>
    <version>2.0.4</version>
</dependency>

企业级的通用Mapper集成可以参考 guozilanTK 项目,项目地址:

https://github.com/guozilanTK

关于该项目的一些资料,可以通过下面的博客地址获取:

https://blog.csdn.net/isea533/article/details/81836136

原文  https://www.oschina.net/news/99466/mapper-4-0-4-released
正文到此结束
Loading...