You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
현재 구현한 필터 기능은 Specification에 필터링할 정보들을 추가하고 board repository에 JpaSpecificationExecutor를 받아 사용한다.
이 방식은 실무에서는 사용이 매우 어려워지고, 코드 읽기 힘들다는 점이 있다. 프로젝트가 커지면서 join문이 많아지게 되면 기존 코드가 매우 복잡해질 가능성이 많다.
따라서 이 방식을 사용하지 않고 Querydsl 사용하여 작성하는 방식이 더 좋다.