Skip to content

Commit

Permalink
Fenix 文档小修改
Browse files Browse the repository at this point in the history
  • Loading branch information
blinkfox committed Dec 10, 2020
1 parent fe6661a commit 425c1ba
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions docs/quick-install.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

如果你是 Spring Boot 项目,那么直接集成 `fenix-spring-boot-starter` 库,并使用 `@EnableFenix` 激活 Fenix 的相关配置信息。

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

### 🌾 1. Maven

Expand Down Expand Up @@ -49,7 +49,7 @@ public class DemoApplication {
}
```

> ****
> **💡 **
> 1. `@EnableFenix` 注解中实质上是使用的是 `FenixJpaRepositoryFactoryBean`。而 `FenixJpaRepositoryFactoryBean` 继承自 Spring Data JPA 默认的 `JpaRepositoryFactoryBean`。所以,Fenix 与 JPA 的各种注解和特性完全兼容,并提供了更加强大的 `@QueryFenix` 注解和其他更多动态的能力。
> 2. 如果你是多数据源,则你可以根据自身情况,在需要的数据源中的 `@EnableJpaRepositories` 注解中单独设置 `repositoryFactoryBeanClass` 的值为:`FenixJpaRepositoryFactoryBean.class`。示例如:`@EnableJpaRepositories(repositoryFactoryBeanClass = FenixJpaRepositoryFactoryBean.class)`
Expand Down
4 changes: 2 additions & 2 deletions docs/quick-start.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

## 🚞 一、项目和数据准备

!> ****:下面“项目和数据准备”的内容,除了集成 Fenix 配置之外,基本上与 Fenix 无关,你大概体验和预览下内容就行。
!> **💡 **:下面“项目和数据准备”的内容,除了集成 Fenix 配置之外,基本上与 Fenix 无关,你大概体验和预览下内容就行。

### 🚜 1. 创建项目

Expand Down Expand Up @@ -171,7 +171,7 @@ fenix:
定义博客信息操作的持久层代码 `BlogRepository` 接口,这里使用 `@QueryFenix` 注解来演示根据散参数、博客信息 Bean(可以是其它Bean 或者 Map)的参数来**多条件模糊分页查询**博客信息。注解的值是 Fenix XML 文件对应的命名空间 `namespace` 和 `<fenix id="queryMyBlogs"></fenix>` XML 标签的 `id` 属性值。

!> **注**:一些简单的查询 SQL 语句,我仍然建议你使用原生的 `@Query` 注解,而将 `@QueryFenix` 注解使用在较长的、复杂动态 SQL 的场景中。
!> **💡 注**:一些简单的查询 SQL 语句,我仍然建议你使用原生的 `@Query` 注解,而将 `@QueryFenix` 注解使用在较长的、复杂动态 SQL 的场景中。

```java
import com.blinkfox.fenix.example.entity.Blog;
Expand Down

0 comments on commit 425c1ba

Please sign in to comment.