Skip to content

Mybatis Generator Plugins Realease V1.0.4

Choose a tag to compare

@itfsw itfsw released this 16 Jan 10:27
· 495 commits to master since this release

这是Mybatis Generator 插件扩展插件包,包含插件:

<!-- 查询单条数据插件 -->
<plugin type="com.itfsw.mybatis.generator.plugins.SelectOneByExamplePlugin"/>
<!-- 数据Model链式构建插件 -->
<plugin type="com.itfsw.mybatis.generator.plugins.ModelBuilderPlugin"/>
<!-- Example Criteria 增强插件 -->
<plugin type="com.itfsw.mybatis.generator.plugins.ExampleEnhancedPlugin"/>
<!-- MySQL分页插件 -->
<plugin type="com.itfsw.mybatis.generator.plugins.LimitPlugin"/>
<!-- Example 目标包修改插件 -->
<plugin type="com.itfsw.mybatis.generator.plugins.ExampleTargetPlugin"/>
<!-- 批量插入插件 -->
<plugin type="com.itfsw.mybatis.generator.plugins.BatchInsertPlugin"/>
<!-- 逻辑删除插件 -->
<plugin type="com.itfsw.mybatis.generator.plugins.LogicalDeletePlugin"/>

Maven依赖:

<dependency>
    <groupId>com.itfsw</groupId>
    <artifactId>mybatis-generator-plugin</artifactId>
    <version>1.0.4</version>
</dependency>

UPDATE:

  • 废弃CriteriaBuilderPlugin插件,插件名字容易造成误解,新插件名称为ExampleEnhancedPlugin;
  • ExampleEnhancedPlugin 增加了orderBy方法,增强链式调用;
  • LimitPlugin修改limit、page方法,直接返回example对象,增强链式调用;
  • 统一了插件调试日志的输出格式;