概述

本篇博客主要将介绍的是利用spring query dsl框架实现的服务端查询解析和实现介绍。
查询功能是在各种应用程序里面都有应用,且非常重要的功能。用户直接使用的查询功能往往是在我们做好的UI界面上进行查询,UI会将查询请求发给查询实现的服务器,或者专门负责实现查询的一个组件。市场上有专门做查询的框架,其中比较出名,应用也比较广泛的是elasticsearch。

定义查询请求

对于服务端来说,前端UI发送过来的查询请求必然是按一定规则组织起来的,这样的规则后端必须能够支持和解析。换一种说法就是服务调用者和服务发布者之间需要遵循同一个规范才可以。百度的UI查询是这样定义的:
Spring Boot   Querydsl 框架 - 图1
在上图中加了蓝色下划线的地方即为我们在百度当中搜索的字符串内容,可以发现,百度的实现是将搜索的内容当做了http请求的url的参数来处理的,用了一个q作为key,q后面的内容就是所查询的内容。
google的实现是类似的,如下图所示:
Spring Boot   Querydsl 框架 - 图2
对于google和百度这样的只有一个搜索框的查询界面,这样处理是比较合理的,也不是整个查询实现最关键的部分。更为关键的是后续服务器将这个查询内容进行了怎样的处理。对于别的一些产品来说,可能需要对某些关键字进行单独的查询,这个时候肯定就不是一个搜索框能个满足的需求了。
总的来说,我们可以有如下的方式来组织一个查询。

google-like查询

这种查询典型的应用是一个查询框,什么都可以查的情形,例如google和百度。对于这样的查询需求来说,在构建查询请求时只需将查询的内容放在http请求的的参数里面即可。
这样的查询解析是非常方便的,难度和需要考虑得事情在于要讲查询的内容放到哪些地方去查询。从数据库的层面来说就是要去哪些数据库的哪些表去查询。

特定字段的类sql查询

这种查询是指定某个字段,然后采用类似于sql语句的写法进行查询,各种查询条件以一定的形式组织在一起,发给服务器进行解析。这样的查询对服务器解析查询的能力要求更高,它提供了一些更加具体的查询条件。
例如我们以冒号表示等于,则一个查询字符串的形式是:

  1. name:bill

这个查询的意思就是查询名字name等于bill的记录。
我们也可以将多个条件拼接在一起,让他们直接用逻辑关系组合在一起,例如或者和并且的逻辑关系。例如:

  1. name:bill AND city:LA

或者下面这种或者的关系:

  1. name:bill OR city:LA

上面的查询语句意味着我们的前后台要定义一套自己的查询逻辑和架构,并且解析它,并将它转换为正确的查询。若我们想实现灵活的查询,则上面的查询语句在符合规则的前提下应当是可以自由组合的。怎么做取决于我们的实际需求。如果一个写死的查询关键字就能满足我们的需求,则在当前那个时期自然也是合理的。
但是从灵活性角度,技术角度,实现成灵活的可解析的,显然是我们更想要的功能。最灵活的当然就是sql语句能支持怎样的查询,我们都能支持对应的查询写法,但是这对服务器的解析逻辑就有了更加高的要求,尤其是当主表子表混在一起查询之后,会更加复杂

使用Spring Data Querydsl

什么是Querydsl呢?Querydsl是一个框架,它可以通过它提供的的API帮助我们构建静态类型的SQL-like查询,也就是在上面我们提到的组织查询方式。可以通过诸如Querydsl之类的流畅API构造查询。
Querydsl是出于以类型安全的方式维护HQL查询的需要而诞生的。 HQL查询的增量构造需要String连接,这导致难以阅读的代码。通过纯字符串对域类型和属性的不安全引用是基于字符串的HQL构造的另一个问题。
随着域模型的不断变化,类型安全性在软件开发中带来了巨大的好处。域更改直接反映在查询中,而查询构造中的自动完成功能使查询构造更快,更安全。
用于Hibernate的HQL是Querydsl的第一个目标语言,如今querydsl支持JPA,JDO,JDBC,Lucene,Hibernate Search,MongoDB,Collections和RDFBean作为它的后端。
其官方网站在这里:http://querydsl.com/
Querydsl和spring有什么关系呢?
几个Spring Data的模块通过QuerydslPredicateExecutor提供了与Querydsl的集成,如以下示例所示:

  1. public interface QuerydslPredicateExecutor<T> {
  2. //查找并返回与Predicate匹配的单个entity
  3. Optional<T> findById(Predicate predicate);
  4. //查找并返回与Predicate匹配的所有entity
  5. Iterable<T> findAll(Predicate predicate);
  6. //返回与Predicate匹配的数量。
  7. long count(Predicate predicate);
  8. //返回是否存在与Predicate匹配的entity
  9. boolean exists(Predicate predicate);
  10. // more functionality omitted.
  11. }

Predicate就是我们需要传入的一个查询的抽象。
最新 Java、Spring 面试题整理好了,点击Java面试库小程序在线刷题。
在spring当中使用Querydsl,只需要在spring的repository接口继承QuerydslPredicateExecutor,如以下示例所示:

  1. interface UserRepository extends CrudRepository<User, Long>, QuerydslPredicateExecutor<User> {
  2. }

在定义了上面的这个接口之后,我们就可以使用Querydsl Predicate编写type-safe的查询,如以下示例所示:

  1. Predicate predicate = user.firstname.equals("dave")
  2. .and(user.lastname.startsWith("mathews"));
  3. userRepository.findAll(predicate);

上面的代码构建出的predicate体现在sql语句里的话就是这样的: where firstname = ‘dave’ and lastname =’mathews%’。这就是所谓的类sql的查询,用起来非常的直观。
因此,我们可以将我们接收到的查询请求,转化为对应的predicte,且从技术上讲,只要predict支持的查询拼接我们都能支持,难点只在于如何解析查询请求,以及如何将他们转换为对应的predicate

利用Spring Query DSL实现动态查询

下面是使用spring和Querydsl实现动态查询的一个例子.
现在假设我们有Model类如下:

  1. public class Student {
  2. private String id;
  3. private String gender;
  4. private String firstName;
  5. private String lastName;
  6. private Date createdAt;
  7. private Boolean isGraduated;
  8. }

我们希望可以实现该类所有字段直接自由组合进行查询,且可以按照与和或的逻辑进行查询。且我们约定用冒号表示等于,例如:

  1. firstname:li AND lastname:hua
  2. firstname:li OR lastname:hua
  3. firstname:li AND lastname:hua AND gender:male

上面的查询都比较清晰,解析不会有太大难度,下面我们来看这样一个查询:

  1. firstname:li OR lastname:hua AND gender:male

这个查询的问题在于作为逻辑与的gender查询,到底是只和前面一个条件进行与操作,还是与前面两个条件一起进行一个与操作,显然与的条件往往是作为filter的功能出现的。
因此我们应当将其看作整个其他条件的与操作,因此我们需要先将前面的条在组合在一起,例如,我们可以使用括号表示这个逻辑,那么查询就会变成:

  1. (firstname:li AND lastname:hua) AND gender:male

这下逻辑就变得清晰了,难题就在于怎么解析了

  1. public class QueryAnalysis{
  2. private static final String EMPTY_STRING = "";
  3. private static final String BLANK_STRING = " ";
  4. private static final String COLON = ":";
  5. private static final String BP_CATEGORY_CODE = "categoryCode";
  6. private static final String OPEN_PARENTTHESIS = "(";
  7. private static final String CLOSE_PARENTTHESIS = ")";
  8. private static final String QUERY_REGEX = "([\\w.]+?)(:|<|>|!:)([^ ]*)";
  9. //it has to lie between two blanks
  10. private static final String QUERY_LOGIC_AND = " AND ";
  11. private void generateQueryBuilderWithQueryString(PredicateBuilder builder, String q,
  12. List<String> queryStringList) {
  13. StringBuilder stringBuilder = new StringBuilder();
  14. String queryTerm = q;
  15. if (q == null) {
  16. return;
  17. }
  18. if (!q.contains(" AND ") && !q.startsWith("(") && !q.endsWith(")")) {
  19. queryTerm = stringBuilder.append("(").append(q).append(")").toString();
  20. }
  21. Map<String, Matcher> matcherMap = getMatcherWithQueryStr(queryTerm);
  22. Matcher matcherOr = matcherMap.get("matcherOr");
  23. Matcher matcherAnd = matcherMap.get("matcherAnd");
  24. while (matcherOr.find()) {
  25. builder.withOr(matcherOr.group(1), matcherOr.group(2), matcherOr.group(3));
  26. }
  27. while (matcherAnd.find()) {
  28. builder.withAnd(matcherAnd.group(1), matcherAnd.group(2), matcherAnd.group(3));
  29. isSearchParameterValid = true;
  30. }
  31. }
  32. private static Map<String, Matcher> getMatcherWithQueryStr(String q) {
  33. StringBuilder stringBuilder = new StringBuilder();
  34. Pattern pattern = Pattern.compile(QUERY_REGEX);
  35. // inside the subString is "or",outside them are "and"
  36. String[] queryStringArraySplitByAnd = q.split(QUERY_LOGIC_AND);
  37. String queryStringOr = EMPTY_STRING;
  38. String queryStringAnd = EMPTY_STRING;
  39. for (String string : queryStringArraySplitByAnd) {
  40. if (string.trim().startsWith(OPEN_PARENTTHESIS) && string.trim().endsWith(CLOSE_PARENTTHESIS)) {
  41. //only support one OR sentence
  42. queryStringOr = string.trim().substring(1,string.length()-1);
  43. } else {
  44. queryStringAnd = stringBuilder.append(string).append(BLANK_STRING).toString();
  45. }
  46. }
  47. String queryStringAndTrim = queryStringAnd.trim();
  48. if(queryStringAndTrim.startsWith(OPEN_PARENTTHESIS) && queryStringAndTrim.endsWith(CLOSE_PARENTTHESIS)){
  49. queryStringAnd = queryStringAndTrim.substring(1,queryStringAndTrim.length()-1);
  50. }
  51. Matcher matcherOr = pattern.matcher(queryStringOr);
  52. Matcher matcherAnd = pattern.matcher(queryStringAnd);
  53. Map<String, Matcher> matcherMap = new ConcurrentHashMap<>();
  54. matcherMap.put("matcherOr", matcherOr);
  55. matcherMap.put("matcherAnd", matcherAnd);
  56. return matcherMap;
  57. }
  58. }

Predicate的逻辑如下:

  1. import java.util.ArrayList;
  2. import java.util.List;
  3. import com.querydsl.core.types.dsl.BooleanExpression;
  4. /**
  5. * This class is mainly used to classify all the query parameters
  6. */
  7. public class PredicateBuilder {
  8. private static final String BLANK_STRING = " ";
  9. private static final String TILDE_STRING = "~~";
  10. private List<SearchCriteria> paramsOr;
  11. private List<SearchCriteria> paramsAnd;
  12. private BusinessPartnerMessageProvider messageProvider;
  13. public PredicateBuilder(BusinessPartnerMessageProvider messageProvider){
  14. paramsOr = new ArrayList<>();
  15. paramsAnd = new ArrayList<>();
  16. }
  17. public PredicateBuilder withOr(
  18. String key, String operation, Object value) {
  19. String keyAfterConverted = keyConverter(key);
  20. Object valueAfterConverted = value.toString().replaceAll(TILDE_STRING,BLANK_STRING).trim();
  21. paramsOr.add(new SearchCriteria(keyAfterConverted, operation, valueAfterConverted));
  22. return this;
  23. }
  24. public PredicateBuilder withAnd(
  25. String key, String operation, Object value) {
  26. String keyAfterConverted = keyConverter(key);
  27. Object valueAfterConverted = value.toString().replaceAll(TILDE_STRING,BLANK_STRING).trim();
  28. paramsAnd.add(new SearchCriteria(keyAfterConverted, operation, valueAfterConverted));
  29. return this;
  30. }
  31. protected String keyConverter(String key){
  32. return key;
  33. }
  34. public BooleanExpression buildOr(Class classType) {
  35. return handleBPBooleanExpressionOr(classType);
  36. }
  37. public BooleanExpression buildAnd(Class classType) {
  38. return handleBPBooleanExpressionAnd(classType);
  39. }
  40. private BooleanExpression handleBPBooleanExpressionOr(Class classType) {
  41. if (paramsOr.isEmpty()) {
  42. return null;
  43. }
  44. return buildBooleanExpressionOr(paramsOr, classType);
  45. }
  46. private BooleanExpression handleBPBooleanExpressionAnd(Class classType) {
  47. if (paramsAnd.isEmpty()) {
  48. return null;
  49. }
  50. return buildBooleanExpressionAnd(paramsAnd, classType);
  51. }
  52. private BooleanExpression buildBooleanExpressionOr(List<SearchCriteria> paramsOr, Class classType){
  53. List<BooleanExpression> predicates = new ArrayList<>();
  54. BooleanExpressionBuilder predicate;
  55. for (SearchCriteria param : paramsOr) {
  56. predicate = new BooleanExpressionBuilder(param, messageProvider);
  57. BooleanExpression exp = predicate.buildPredicate(classType);
  58. if (exp != null) {
  59. predicates.add(exp);
  60. }
  61. }
  62. BooleanExpression result = null;
  63. if(!predicates.isEmpty()) {
  64. result = predicates.get(0);
  65. for (int i = 1; i < predicates.size(); i++) {
  66. result = result.or(predicates.get(i));
  67. }
  68. }
  69. return result;
  70. }
  71. private BooleanExpression buildBooleanExpressionAnd(List<SearchCriteria> paramsAnd, Class classType){
  72. List<BooleanExpression> predicates = new ArrayList<>();
  73. BooleanExpressionBuilder predicate;
  74. for (SearchCriteria param : paramsAnd) {
  75. predicate = new BooleanExpressionBuilder(param, messageProvider);
  76. BooleanExpression exp = predicate.buildPredicate(classType);
  77. if (exp != null) {
  78. predicates.add(exp);
  79. }
  80. }
  81. BooleanExpression result = null;
  82. if(!predicates.isEmpty()) {
  83. result = predicates.get(0);
  84. for (int i = 1; i < predicates.size(); i++) {
  85. result = result.and(predicates.get(i));
  86. }
  87. }
  88. return result;
  89. }
  90. }

BooleanExpressionBuilder的逻辑如下:

  1. import java.text.ParseException;
  2. import java.text.SimpleDateFormat;
  3. import java.time.ZoneOffset;
  4. import java.util.Date;
  5. import java.util.TimeZone;
  6. import com.querydsl.core.types.dsl.BooleanExpression;
  7. import com.querydsl.core.types.dsl.BooleanPath;
  8. import com.querydsl.core.types.dsl.DateTimePath;
  9. import com.querydsl.core.types.dsl.NumberPath;
  10. import com.querydsl.core.types.dsl.PathBuilder;
  11. import com.querydsl.core.types.dsl.StringPath;
  12. public class BooleanExpressionBuilder {
  13. private SearchCriteria criteria;
  14. private BusinessPartnerMessageProvider messageProvider;
  15. private static final String NO_SUCH_FILED_MESSAGE = "NO_SUCH_FIELD_FOR_QUERY_PARAMETER";
  16. public BooleanExpressionBuilder(final SearchCriteria criteria ) {
  17. this.criteria = new SearchCriteria(criteria.getKey(),criteria.getOperation(),criteria.getValue());
  18. }
  19. public BooleanExpression buildPredicate(Class classType) {
  20. // the second param for PathBuilder constructor is the binding path.
  21. PathBuilder<Class> entityPath = new PathBuilder<>(classType, classType.getSimpleName());
  22. Boolean isValueMatchEndWith = criteria.getValue().toString().endsWith("*");
  23. Boolean isValueMatchStartWith = criteria.getValue().toString().startsWith("*");
  24. Boolean isOperationColon = ":".equalsIgnoreCase(criteria.getOperation());
  25. int searchValueLength = criteria.getValue().toString().length();
  26. StringPath stringPath = entityPath.getString(criteria.getKey());
  27. DateTimePath<Date> timePath = entityPath.getDateTime(criteria.getKey(), Date.class);
  28. NumberPath<Integer> numberPath = entityPath.getNumber(criteria.getKey(), Integer.class);
  29. if ((isOperationColon) && (!isValueMatchStartWith) && (!isValueMatchEndWith)) {
  30. return getEqualBooleanExpression(classType, entityPath, stringPath, timePath, numberPath);
  31. }
  32. if (">".equalsIgnoreCase(criteria.getOperation())) {
  33. return getGreaterThanBooleanExpression(classType, timePath, numberPath);
  34. }
  35. if ("<".equalsIgnoreCase(criteria.getOperation())) {
  36. return getLessThanBooleanExpression(classType, timePath, numberPath);
  37. }
  38. // !: means !=
  39. if ("!:".equalsIgnoreCase(criteria.getOperation())) {
  40. return getNotEqualBooleanExpression(classType, entityPath,
  41. stringPath, timePath, numberPath);
  42. }
  43. //start with xxx
  44. if ((isOperationColon) && isValueMatchEndWith && (!isValueMatchStartWith)) {
  45. if (isSearchKeyValidForClass(classType))
  46. return stringPath
  47. .startsWithIgnoreCase(criteria.getValue().toString().substring(0, searchValueLength - 1).trim());
  48. }
  49. if ((isOperationColon) && (!isValueMatchEndWith) && (isValueMatchStartWith)) {
  50. if (isSearchKeyValidForClass(classType))
  51. return stringPath.endsWithIgnoreCase(criteria.getValue().toString().substring(1, searchValueLength).trim());
  52. }
  53. //contain xxx
  54. if ((isOperationColon) && isValueMatchEndWith && isValueMatchStartWith) {
  55. return getContainsBooleanExpression(classType, searchValueLength, stringPath);
  56. }
  57. return null;
  58. }
  59. private BooleanExpression getContainsBooleanExpression(Class classType,
  60. int searchValueLength, StringPath stringPath) {
  61. try {
  62. Class fieldType = classType.getDeclaredField(criteria.getKey()).getType();
  63. if (fieldType.equals(String.class) && searchValueLength>1) {
  64. return stringPath.containsIgnoreCase(criteria.getValue().toString().substring(1,searchValueLength-1).trim());
  65. }
  66. //if there are only a "*" in the seatch value, then
  67. if(fieldType.equals(String.class) && searchValueLength==1){
  68. return stringPath.eq(criteria.getValue().toString());
  69. }
  70. } catch (NoSuchFieldException | SecurityException e) {
  71. }
  72. return null;
  73. }
  74. private boolean isSearchKeyValidForClass(Class classType) {
  75. try {
  76. Class fieldType = classType.getDeclaredField(criteria.getKey()).getType();
  77. if (fieldType.equals(String.class)) {
  78. return true;
  79. }
  80. } catch (NoSuchFieldException | SecurityException e) {
  81. throw new BadRequestValidationException(messageProvider.getMessage(NO_SUCH_FILED_MESSAGE,
  82. new Object[] { criteria.getKey() }), e);
  83. }
  84. return false;
  85. }
  86. private BooleanExpression getNotEqualBooleanExpression(Class classType, PathBuilder<Class> entityPath,
  87. StringPath stringPath, DateTimePath<Date> timePath, NumberPath<Integer> numberPath) {
  88. try {
  89. Class fieldType = classType.getDeclaredField(criteria.getKey()).getType();
  90. if (fieldType.equals(Date.class)) {
  91. dateTimeValueConverter();
  92. return timePath.ne((Date) criteria.getValue());
  93. }
  94. if (fieldType.equals(Integer.class)) {
  95. int value = Integer.parseInt(criteria.getValue().toString());
  96. return numberPath.ne(value);
  97. }
  98. if (fieldType.equals(String.class)) {
  99. return stringPath.ne(criteria.getValue().toString());
  100. }
  101. if (fieldType.equals(boolean.class)) {
  102. booleanConverter();
  103. BooleanPath booleanPath = entityPath.getBoolean(criteria.getKey());
  104. return booleanPath.ne((Boolean) criteria.getValue());
  105. }
  106. if (fieldType.equals(Boolean.class)) {
  107. booleanConverter();
  108. BooleanPath booleanPath = entityPath.getBoolean(criteria.getKey());
  109. return booleanPath.ne((Boolean) criteria.getValue());
  110. }
  111. } catch (NoSuchFieldException | SecurityException e) {
  112. throw new BadRequestValidationException();
  113. }
  114. return null;
  115. }
  116. private BooleanExpression getLessThanBooleanExpression(Class classType,
  117. DateTimePath<Date> timePath, NumberPath<Integer> numberPath) {
  118. try {
  119. Class fieldType = classType.getDeclaredField(criteria.getKey()).getType();
  120. if (fieldType.equals(Date.class)) {
  121. dateTimeValueConverter();
  122. return timePath.lt((Date) criteria.getValue());
  123. }
  124. if (fieldType.equals(Integer.class)) {
  125. integerValueConverter();
  126. return numberPath.lt((Integer) criteria.getValue());
  127. }
  128. } catch (NoSuchFieldException | SecurityException e) {
  129. throw new BadRequestValidationException(e.getCause());
  130. }
  131. return null;
  132. }
  133. private BooleanExpression getGreaterThanBooleanExpression(Class classType,
  134. DateTimePath<Date> timePath, NumberPath<Integer> numberPath) {
  135. // other data types do not make sense when use >
  136. try {
  137. Class fieldType = classType.getDeclaredField(criteria.getKey()).getType();
  138. if (fieldType.equals(Date.class)) {
  139. dateTimeValueConverter();
  140. return timePath.gt((Date) criteria.getValue());
  141. }
  142. if (fieldType.equals(Integer.class)) {
  143. integerValueConverter();
  144. return numberPath.gt((Integer) criteria.getValue());
  145. }
  146. } catch (NoSuchFieldException | SecurityException e) {
  147. throw new BadRequestValidationException(e.getCause());
  148. }
  149. return null;
  150. }
  151. private BooleanExpression getEqualBooleanExpression(Class classType, PathBuilder<Class> entityPath, StringPath stringPath,
  152. DateTimePath<Date> timePath, NumberPath<Integer> numberPath) {
  153. // means =
  154. try {
  155. Class fieldType = classType.getDeclaredField(criteria.getKey()).getType();
  156. if (fieldType.equals(Integer.class)) {
  157. integerValueConverter();
  158. return numberPath.eq((Integer) criteria.getValue());
  159. }
  160. if (fieldType.equals(Date.class)) {
  161. dateTimeValueConverter();
  162. return timePath.eq((Date) criteria.getValue());
  163. }
  164. if (fieldType.equals(boolean.class)) {
  165. booleanConverter();
  166. BooleanPath booleanPath = entityPath.getBoolean(criteria.getKey());
  167. return booleanPath.eq((Boolean) criteria.getValue());
  168. }
  169. if (fieldType.equals(Boolean.class)) {
  170. booleanConverter();
  171. BooleanPath booleanPath = entityPath.getBoolean(criteria.getKey());
  172. return booleanPath.eq((Boolean) criteria.getValue());
  173. }
  174. if (fieldType.equals(String.class)) {
  175. return stringPath.equalsIgnoreCase(criteria.getValue().toString());
  176. }
  177. } catch (NoSuchFieldException | SecurityException e) {
  178. throw new BadRequestValidationException(e.getCause());
  179. }
  180. return null;
  181. }
  182. // convert string to datetime
  183. private void dateTimeValueConverter() {
  184. criteria.setValue(convertToTimeStamp(criteria.getValue().toString()));
  185. }
  186. private void booleanConverter() {
  187. if (criteria.getValue().toString().equalsIgnoreCase("true")) {
  188. criteria.setValue(true);
  189. } else if (criteria.getValue().toString().equalsIgnoreCase("false")) {
  190. criteria.setValue(false);
  191. } else {
  192. throw new BadRequestValidationException("Invalid Boolean");
  193. }
  194. }
  195. // convert string to Integer
  196. private void integerValueConverter() {
  197. criteria.setValue(Integer.parseInt(criteria.getValue().toString()));
  198. }
  199. private Date convertToTimeStamp(String time) {
  200. //convert date here
  201. return parsedDate;
  202. }
  203. }

查询条件的抽象类SearchCriteria定义如下:

  1. public class SearchCriteria {
  2. private String key;
  3. private String operation;
  4. private Object value;
  5. }

大致的实现逻辑如下图所示:
Spring Boot   Querydsl 框架 - 图3
比较关键的点有下面这些:

  • 对字符串的解析需要借助正则表达式的帮助,正则表达式决定了我们支持怎样的查询.
  • 由于字符串可以任意输入,存在无限种可能,对查询字符串的校验很关键也很复杂。
  • 不同逻辑的查询条件需要存放在不同的容器里面,因为他们的拼接逻辑不一样,一个是或一个是与
  • 不同的字段类型需要调用不同的生成Predicate的方法,例如String,Boolean和Date这些类型他们都有自己对应的查询实现
  • 生成子表的Predicate很复杂,与主表的查询条件一起查询时逻辑更加复杂,上面的逻辑拿掉了这一部分。但是这个功能是可以实现的。

    实现过程中的难题

    主表包含多个子表数据时的AND查询

    距离说明,现在有数据定义如下:
    1. {
    2. "customerNumber": "5135116903",
    3. "customerType": "INDIVIDUAL",
    4. "createdBy": "Android.chen@sap.com",
    5. "changedBy": "Android.chen@sap.com",
    6. "createdAt": "2018-06-26T10:15:17.212Z",
    7. "changedAt": "2018-06-26T10:15:17.212Z",
    8. "markets": [{
    9. "marketId": "A1",
    10. "currency": "USD",
    11. "country": "US",
    12. "active": true
    13. }, {
    14. "marketId": "A2",
    15. "currency": "USD",
    16. "country": "US",
    17. "active": false
    18. }, {
    19. "marketId": "A3",
    20. "currency": "USD",
    21. "country": "US",
    22. "active": true
    23. }]
    24. }
    其中父节点表是customer,子节点markets信息存储在market表当中。
    现在,假设我们有这样的查询:
    1. customerNumber: 5135116903 AND markets.active:false
    没有疑问,上面的数据应该被查出来。现在查询条件变成下面这样:
    1. customerNumber: 5135116903 AND markets.active:false AND markets.marketId:A1
    现在问题来了,语句的意思是此客户的marker既要是非active 的且ID要是A1,但是此客户又有多个market,从整个数组里来看,这个条件是满足的。但是从单个的market个体来看这个条件是不满足的。而我们作为用户的话希望得到的效果必然是无法查处此customer信息。
    这会给实现带来问题,因为由于market是一个数组,在数据表中对应的就是几条记录,我们在解析并构建子表查询时,必须确保对于子表的查询条件是作用于单独的一个node,也就是单独的一条记录,而不是从整个数组当中去查,否则就会有问题。