From 7d13ac4dabca8fabbb5a67bfed219047dbe401c7 Mon Sep 17 00:00:00 2001 From: blinkfox Date: Sat, 22 Feb 2020 22:29:16 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E4=BA=86=E4=B8=80=E5=A4=84?= =?UTF-8?q?=E6=96=87=E6=A1=A3=E5=86=85=E5=AE=B9=E8=AF=B4=E6=98=8E?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/more-features.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/more-features.md b/docs/more-features.md index 9f48923..76e74a9 100644 --- a/docs/more-features.md +++ b/docs/more-features.md @@ -105,6 +105,7 @@ Page queryUserBlogPageWithFenixResultType(@Param("userId") String !> **注**: > 1. 上面的代码关键之处,就在 fenix 节点中配置了 `resultType` 属性的值为我们定义的**实体类的全路径名** `com.blinkfox.fenix.vo.UserBlogInfo`。这样查询结果返回的时候就能自动识别并返回了。 > 2. 另一个要点是所有查询列**都必须使用 as**来返回一个“别名”,且**这个“别名”必须跟实体类的属性名一致,不区分大小写**。 +> 3. 此种方式再运行时可能会与 `spring-boot-devtools.jar` 冲突,报 `No converter found capable of converting from type [xxx] to type [xxx]` 错误。建议不使用 `spring-boot-devtools.jar`。 ### (3) Java 中的使用示例