Skip to content

Commit

Permalink
v3.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
troyzhxu committed Dec 1, 2021
1 parent 211b91e commit ecb5f9c
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 6 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,16 @@
* Bean Searcher Boot Starter
* 默认自动配置添加 `EnumFieldConvertor`(TODO)

# v3.1.1 & v3.0.3

### ✨ Features

1. 优化 DefaultSqlResolver 的方法的权限修饰符,便于子类复用

### 🐛 Bug Fixes

1. 优化别名生成规则,兼容 Oracle 数据库

# v3.1.0

### ✨ Features
Expand Down
5 changes: 2 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@

### ⛳ v3.x 重大更新

* 支持 **热加载**
* 支持 **无注解**
* 支持 **Select 指定字段**
* 支持 **条件与运算符的约束**
Expand Down Expand Up @@ -112,7 +111,7 @@ SearchResult<User> result = beanSearcher.search(User.class, params);
#### Spring Boot 项目,添加依赖即集成完毕:

```groovy
implementation 'com.ejlchina:bean-searcher-boot-stater:3.0.3'
implementation 'com.ejlchina:bean-searcher-boot-stater:3.1.1'
```

接着便可在 `Controller``Service` 里注入检索器:
Expand All @@ -134,7 +133,7 @@ private BeanSearcher beanSearcher;
#### 其它框架,使用如下依赖:

```groovy
implementation 'com.ejlchina:bean-searcher:3.0.3'
implementation 'com.ejlchina:bean-searcher:3.1.1'
```

然后可以使用 `SearcherBuilder` 构建一个检索器:
Expand Down
2 changes: 1 addition & 1 deletion bean-searcher-demos/grails-demo/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ dependencies {
implementation "org.grails.plugins:events"
implementation "org.grails.plugins:gsp"

implementation "com.ejlchina:bean-searcher:3.1.0"
implementation "com.ejlchina:bean-searcher:3.1.1"

profile "org.grails.profiles:web"
runtimeOnly "org.glassfish.web:el-impl:2.2.1-b05"
Expand Down
2 changes: 1 addition & 1 deletion bean-searcher-demos/spring-boot-demo-mysql/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
<dependency>
<groupId>com.ejlchina</groupId>
<artifactId>bean-searcher-boot-starter</artifactId>
<version>3.1.0</version>
<version>3.1.1</version>
</dependency>

<dependency>
Expand Down
2 changes: 1 addition & 1 deletion bean-searcher-demos/spring-boot-demo/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
<dependency>
<groupId>com.ejlchina</groupId>
<artifactId>bean-searcher-boot-starter</artifactId>
<version>3.1.0</version>
<version>3.1.1</version>
</dependency>

<dependency>
Expand Down

0 comments on commit ecb5f9c

Please sign in to comment.