Skip to content

Commit

Permalink
修改新版本的文档
Browse files Browse the repository at this point in the history
  • Loading branch information
blinkfox committed Oct 17, 2019
1 parent 9a01dc8 commit 82ff01b
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 11 deletions.
12 changes: 8 additions & 4 deletions docs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,19 +1,23 @@
## v1.1.1 求分页 count 小调整 (2018-10-10)
## v2.0.0 支持 Spring Boot 的 2.2.0.RELEASE 版本 (2019-10-10)

- 支持 Spring Boot 和 Spring Data JPA 的 `2.2.0.RELEASE`及以上的版本,同时也兼容之前的版本;

## v1.1.1 求分页 count 小调整 (2019-10-10)

- **修改**了默认求总记录数 `count(*)` 时的 SQL 为 `count(*) as count`,即增加了 `as` 列;

## v1.1.0 新增返回任意实体对象或集合 (2018-10-10)
## v1.1.0 新增返回任意实体对象或集合 (2019-10-10)

- **新增****返回任意实体对象**或集合的功能,相比使用投影的方式更为简单和自然;

## v1.0.1 bug 修复及小功能调整 (2018-09-01)
## v1.0.1 bug 修复及小功能调整 (2019-09-01)

- **新增**了可以使用 `spring.jpa.show-sql` 的配置来作为是否打印 SQL 信息的依据之一;
- **新增**了部分类的单元测试,提高了单元测试覆盖率;
- **重构**了 XML 文件的扫描读取机制;
- **修复**了 Spring Boot web 项目打成 `jar` 包时读取不到 Fenix `XML` 文件的问题;
- **删除**了 Fenix `debug` 模式的功能;

## v1.0.0 第一个里程碑正式版 (2018-08-19)
## v1.0.0 第一个里程碑正式版 (2019-08-19)

- **新增**`Fenix` JPA 扩展库的核心功能;
2 changes: 1 addition & 1 deletion docs/_coverpage.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
![logo](assets/images/logo.png)

# Fenix <small>1.1.1</small>
# Fenix <small>2.0.0</small>

> 为解决复杂动态 SQL 而生的 Spring Data JPA 扩展库
Expand Down
12 changes: 6 additions & 6 deletions docs/quick-install.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,22 +6,22 @@

如果你是 Spring Boot 项目,那么直接集成 `fenix-spring-boot-starter` 库,并激活 `FenixJpaRepositoryFactoryBean`

!> ****:请确保你使用的 Spring Boot 版本是 **`2.1.5.RELEASE` 及以上**
!> ****:请确保你使用的 Spring Boot 版本是 **`v2.1.5.RELEASE` 及以上**,如果 Spring Boot 版本是 `v2.2.x.RELEASE` 及以上,则 Fenix 版本必须是 `v2.0.0` 版本及以上

### Maven

```xml
<dependency>
<groupId>com.blinkfox</groupId>
<artifactId>fenix-spring-boot-starter</artifactId>
<version>1.1.1</version>
<version>2.0.0</version>
</dependency>
```

### Gradle

```bash
compile 'com.blinkfox:fenix-spring-boot-starter:1.1.1'
compile 'com.blinkfox:fenix-spring-boot-starter:2.0.0'
```

### 激活 Fenix FactoryBean
Expand Down Expand Up @@ -82,22 +82,22 @@ fenix:
如果你**不是 Spring Boot 项目**,而是通过其他方式来使用 Spring Data JPA。那么,你可以通过以下的方式来集成原生的 `fenix` 库,除了激活 `FenixJpaRepositoryFactoryBean` 之外,**最重要的是需要在你应用启动的过程中,手动加载 Fenix 配置信息到内存中**。

!> **注**:请确保你引入的 Spring Data JPA 版本是 **`2.1.8.RELEASE` 及以上**。
!> **注**:请确保你引入的 Spring Data JPA 版本是 **`2.1.8.RELEASE` 及以上**,如果 Spring Data JPA 版本是 `v2.2.x.RELEASE` 及以上,则 Fenix 版本必须是 `v2.0.0` 版本及以上。

### Maven

```xml
<dependency>
<groupId>com.blinkfox</groupId>
<artifactId>fenix</artifactId>
<version>1.1.1</version>
<version>2.0.0</version>
</dependency>
```

### Gradle

```bash
compile 'com.blinkfox:fenix:1.1.1'
compile 'com.blinkfox:fenix:2.0.0'
```

### 激活 Fenix FactoryBean
Expand Down

0 comments on commit 82ff01b

Please sign in to comment.