From d0ae585a1926761fde9077b8704f1ccc8e9f9b4a Mon Sep 17 00:00:00 2001 From: wanghaun Date: Thu, 23 Jun 2022 11:43:49 +0800 Subject: [PATCH 1/2] =?UTF-8?q?feature/module=5Fsplit=20=E5=BC=82=E5=B8=B8?= =?UTF-8?q?=E6=8F=90=E7=A4=BA=E4=BC=98=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../base/common/proxy/handler/impl/EsAnnotationQuery.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/elasticsearch-engine-base/src/main/java/com/elasticsearch/engine/base/common/proxy/handler/impl/EsAnnotationQuery.java b/elasticsearch-engine-base/src/main/java/com/elasticsearch/engine/base/common/proxy/handler/impl/EsAnnotationQuery.java index 5221ccf..602af03 100644 --- a/elasticsearch-engine-base/src/main/java/com/elasticsearch/engine/base/common/proxy/handler/impl/EsAnnotationQuery.java +++ b/elasticsearch-engine-base/src/main/java/com/elasticsearch/engine/base/common/proxy/handler/impl/EsAnnotationQuery.java @@ -53,7 +53,7 @@ public class EsAnnotationQuery implements EsQueryProxyExecuteHandler { //有一个或多个参数 && 都是基础类型(包括List,LocalDateTime,LocalDate,BigDecimal) queryEnum = EsAnnotationQueryEnum.ANNOTATION_PARAM_QUERY; } else { - throw new EsEngineQueryException(prefix + "方法参数异常: 查询参数不被支持,仅支持单个引用类型的参数 or 一个或多个基本类型参数(包括List)"); + throw new EsEngineQueryException(prefix + "方法参数异常: 查询参数不被支持,仅支持单个引用类型的参数 or 一个或多个基本类型参数(额外包括 List,LocalDateTime,LocalDate,BigDecimal)"); } return esAnnotationQueryFactory.getBean(queryEnum).handle(proxy, method, args); } -- Gitee From 3e56082d0e38acce902a66b687234740b97de7d0 Mon Sep 17 00:00:00 2001 From: wanghaun Date: Thu, 23 Jun 2022 13:45:07 +0800 Subject: [PATCH 2/2] =?UTF-8?q?feature/module=5Fsplit=20=E6=B7=BB=E5=8A=A0?= =?UTF-8?q?=E8=AF=B4=E6=98=8E=E6=96=87=E6=A1=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 8424d1a..accc7eb 100644 --- a/README.md +++ b/README.md @@ -702,4 +702,4 @@ elasticsearch 版本支持 v6 和 v7 ## 参考及引用 -本项目 注解查询参考了 开源项目 https://gitee.com/JohenTeng/elasticsearch-helper \ No newline at end of file +本项目 注解查询参考了 开源项目 https://gitee.com/JohenTeng/elasticsearch-helper (感谢大佬) \ No newline at end of file -- Gitee