Skip to content

Commit

Permalink
#39 [Update] stackoverflow에러 해결
Browse files Browse the repository at this point in the history
bulder.and(builder.and())가 되고 있었다.
  • Loading branch information
Anna-Jin committed Jul 31, 2022
1 parent 2ca3d5e commit 32975c7
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions src/main/java/com/mpnp/baechelin/common/QueryDslSearch.java
Original file line number Diff line number Diff line change
Expand Up @@ -63,9 +63,7 @@ public static BooleanBuilder getSearchBooleanBuilder(String sido, String sigungu
// 검색어 fulltext search
builder.and(matchKeyword(keyword));

// 카테고리, 시설
builder.and(getBooleanBuilder(category, facility, builder));

return builder;
// 카테고리, 시설까지 builder에 넣은 후 리턴
return getBooleanBuilder(category, facility, builder);
}
}

0 comments on commit 32975c7

Please sign in to comment.