프론트엔드 페이지 만드는 부분은 별도의 포스팅으로 분리하도록 하겠다.@Controller@RequestMapping("/anthive")@RequiredArgsConstructorpublic class PostController { private final PostService postService; @GetMapping("/{userId}/catalog-list") public String list_catalog(Model model, @PageableDefault(size = 20) Pageable pageable, @PathVariable("userId") String userId) { Page posts = postService.getUsersPosts(userId, ..