Leta Learns

함밥 | 220813 본문

토이 프로젝트/함밥

함밥 | 220813

leta 2022. 8. 13. 18:36

#식당 검색 기능 구현

findByName(String name) search(String name)

 

다른 건 findByCategory 구현할 때랑 같아서 쉽게 했는데,

쿼리문 작성하는 게 조금 헷갈렸다.

검색한 가게 명이 포함된 가게는 다 반환해주어야 해서 like 문법을 사용해야 한다.

spring boot query에서의 like 사용 방법: https://stackoverflow.com/questions/21456494/spring-jpa-query-with-like

 

Spring JPA @Query with LIKE

I'm trying to make a method in CrudRepository that will be able to give me list of users, whose usernames are LIKE the input parameter(not only begin with, but also contains it). I tried to use met...

stackoverflow.com

 

생각해보면 검색창에 입력한 텍스트가 가게명에 포함되면 출력해주어야 하니까 함수명을 search로 바꿀까 싶기도 하다.

백 팀원이랑 상의해봐야겠다.

→ search로 수정

'토이 프로젝트 > 함밥' 카테고리의 다른 글

함밥 | 220826  (0) 2022.08.26
함밥 | 220825  (0) 2022.08.25
함밥 | 220818  (0) 2022.08.18
함밥 | 220812  (0) 2022.08.12
Comments