v1.0.4 release (^.^)YYa!!

This commit is contained in:
开源海哥 2023-03-26 15:05:06 +08:00
parent 0d9d8ab7b6
commit e7106d5641
5 changed files with 17 additions and 6 deletions

View File

@ -1,3 +1,14 @@
mybatis-flex v1.0.4 2023026:
新增:@ColumnMask() 注解用于数据脱敏,内置 9 中脱敏方式
新增BaseMapper.selectAll() 方法
新增BaseMapper.selectListByMap(Map whereConditions, int count) 方法
新增:添加 resource 配置,使得生成的代码自动集成到 classpath 中。 感谢 @piggsoft
新增mybatis-flex-codegen 模块,用于 数据库-> Java 的代码生成
新增:@Table() 注解添加 OnInsert 和 OnUpdate 的配置支持
文档:新文档站点 https://mybatis-flex.com 上线
mybatis-flex v1.0.3 2023021:
新增APT 自动生成 Mapper 代码的功能,无需在手动编写
新增APT 新增 "processer.mappersGenerateEnable" 配置,用于开启是否自动生成 Mapper 类

View File

@ -9,7 +9,7 @@
<dependency>
<groupId>com.mybatis-flex</groupId>
<artifactId>mybatis-flex-codegen</artifactId>
<version>1.0.3</version>
<version>1.0.4</version>
</dependency>
```

View File

@ -25,7 +25,7 @@ CREATE TABLE IF NOT EXISTS `tb_account`
<dependency>
<groupId>com.mybatis-flex</groupId>
<artifactId>mybatis-flex-core</artifactId>
<version>1.0.3</version>
<version>1.0.4</version>
</dependency>
```

View File

@ -9,7 +9,7 @@
<dependency>
<groupId>com.mybatis-flex</groupId>
<artifactId>mybatis-flex-core</artifactId>
<version>1.0.3</version>
<version>1.0.4</version>
</dependency>
```
@ -19,7 +19,7 @@
<dependency>
<groupId>com.mybatis-flex</groupId>
<artifactId>mybatis-flex-spring</artifactId>
<version>1.0.3</version>
<version>1.0.4</version>
</dependency>
``````
@ -29,6 +29,6 @@
<dependency>
<groupId>com.mybatis-flex</groupId>
<artifactId>mybatis-flex-spring-boot-starter</artifactId>
<version>1.0.3</version>
<version>1.0.4</version>
</dependency>
```

View File

@ -7,7 +7,7 @@
<groupId>com.mybatis-flex</groupId>
<artifactId>parent</artifactId>
<packaging>pom</packaging>
<version>1.0.3</version>
<version>1.0.4</version>
<name>mybatis-flex</name>
<url>http://mybatis-flex.com</url>