게시글 목록 조회 페이지는 PageRequesetDTO에서 page, size 값만 처리해서 게시글 페이지를 출력시킨다. 이 때, PageRequestDTO 에서 type과 keyword를 추가하면 검색 조건에 따른 게시글을 조회하여 출력시킬 수 있다. 서버 측에서 검색 처리를 위해 DTO에 값을 추가한다. - Controller는 그대로, PageRequestDTO에만 type, keyword를 추가한다. // Controller @GetMapping(value = {"", "/"}) public String list(PageRequestDTO pageRequestDTO, Model model) { model.addAttribute("result", landersService.getList(pageRe..