mirror of
https://gitee.com/mybatis-flex/mybatis-flex.git
synced 2025-12-07 00:58:24 +08:00
v1.1.9 release (^.^)YYa!!
This commit is contained in:
parent
6363cb391e
commit
d055572776
16
changes.txt
16
changes.txt
@ -1,3 +1,19 @@
|
|||||||
|
mybatis-flex v1.1.9 20230424:
|
||||||
|
新增:根据 id 查询数据时,返回默认字段而非全部字段;感谢 @wnp
|
||||||
|
新增:APT 添加忽略 entity 后缀的配置支持
|
||||||
|
修复:where 中第一个括号处理不正确的问题 #I6XXWR
|
||||||
|
修复:批量插入且配置 onInsert 时,出现错误的问题
|
||||||
|
修复:批量插入 row,且为 row 设置主键时,出错的问题 #I6Y8ZU
|
||||||
|
修复:Oracle 在某些情况下出现 SQLSyntaxErrorException 错误的问题 #I6Y6MZ
|
||||||
|
修复:RowUtil.printPretty 在某些情况下显示数据不正确的问题
|
||||||
|
修复:APT 无法生成 @NotBlank 注解字段的问题
|
||||||
|
优化:更新 apt 的 mappersGenerateEnable 默认值为 false
|
||||||
|
文档:优化 APT 的相关文档
|
||||||
|
文档:优化 快速开始 的相关文档
|
||||||
|
文档:添加 column 全局配置的相关文档
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
mybatis-flex v1.1.8 20230422:
|
mybatis-flex v1.1.8 20230422:
|
||||||
新增:添加 RowUtil.printPretty() 方法,用于调试
|
新增:添加 RowUtil.printPretty() 方法,用于调试
|
||||||
新增:代码生成器生成代码默认添加注释的功能
|
新增:代码生成器生成代码默认添加注释的功能
|
||||||
|
|||||||
@ -123,7 +123,7 @@ processor.baseMapperClass=com.domain.mapper.MyBaseMapper
|
|||||||
```
|
```
|
||||||
dependencies {
|
dependencies {
|
||||||
...
|
...
|
||||||
annotationProcessor 'com.mybatis-flex:mybatis-flex-annotation:1.1.8'
|
annotationProcessor 'com.mybatis-flex:mybatis-flex-annotation:1.1.9'
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|||||||
@ -9,7 +9,7 @@
|
|||||||
<dependency>
|
<dependency>
|
||||||
<groupId>com.mybatis-flex</groupId>
|
<groupId>com.mybatis-flex</groupId>
|
||||||
<artifactId>mybatis-flex-codegen</artifactId>
|
<artifactId>mybatis-flex-codegen</artifactId>
|
||||||
<version>1.1.8</version>
|
<version>1.1.9</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|||||||
@ -25,7 +25,7 @@ CREATE TABLE IF NOT EXISTS `tb_account`
|
|||||||
<dependency>
|
<dependency>
|
||||||
<groupId>com.mybatis-flex</groupId>
|
<groupId>com.mybatis-flex</groupId>
|
||||||
<artifactId>mybatis-flex-core</artifactId>
|
<artifactId>mybatis-flex-core</artifactId>
|
||||||
<version>1.1.8</version>
|
<version>1.1.9</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|||||||
@ -9,7 +9,7 @@
|
|||||||
<dependency>
|
<dependency>
|
||||||
<groupId>com.mybatis-flex</groupId>
|
<groupId>com.mybatis-flex</groupId>
|
||||||
<artifactId>mybatis-flex-core</artifactId>
|
<artifactId>mybatis-flex-core</artifactId>
|
||||||
<version>1.1.8</version>
|
<version>1.1.9</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
```
|
```
|
||||||
|
|
||||||
@ -19,7 +19,7 @@
|
|||||||
<dependency>
|
<dependency>
|
||||||
<groupId>com.mybatis-flex</groupId>
|
<groupId>com.mybatis-flex</groupId>
|
||||||
<artifactId>mybatis-flex-spring</artifactId>
|
<artifactId>mybatis-flex-spring</artifactId>
|
||||||
<version>1.1.8</version>
|
<version>1.1.9</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
``````
|
``````
|
||||||
|
|
||||||
@ -29,6 +29,6 @@
|
|||||||
<dependency>
|
<dependency>
|
||||||
<groupId>com.mybatis-flex</groupId>
|
<groupId>com.mybatis-flex</groupId>
|
||||||
<artifactId>mybatis-flex-spring-boot-starter</artifactId>
|
<artifactId>mybatis-flex-spring-boot-starter</artifactId>
|
||||||
<version>1.1.8</version>
|
<version>1.1.9</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
```
|
```
|
||||||
2
pom.xml
2
pom.xml
@ -7,7 +7,7 @@
|
|||||||
<groupId>com.mybatis-flex</groupId>
|
<groupId>com.mybatis-flex</groupId>
|
||||||
<artifactId>parent</artifactId>
|
<artifactId>parent</artifactId>
|
||||||
<packaging>pom</packaging>
|
<packaging>pom</packaging>
|
||||||
<version>1.1.8</version>
|
<version>1.1.9</version>
|
||||||
|
|
||||||
<name>mybatis-flex</name>
|
<name>mybatis-flex</name>
|
||||||
<url>https://mybatis-flex.com</url>
|
<url>https://mybatis-flex.com</url>
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user