JPA Repository findBy(컬럼이름): 컬럼에서 키워드를 넣어서 찾음 -> 정확하게 일치하는 데이터 검색 findBy(컬럼이름)Containing: 컬럼에서 키워드가 포함된 것을 찾음 -> 키워드가 포함된 모든 데이터 검색 Repository에 내용 추가 @Repository public interface BoardRepository extends JpaRepository { // 엔티티는 Board, PK의 타입은 Integer Page findByTitleContaining(String searchKeyword, Pageable pageable); // 제목에 포함된 키워드를 찾는 메서드 } Service에 내용 추가 // 게시글 리스트 처리 public Page boardList(Pag..