Notice
Recent Posts
Recent Comments
Link
목록권한부여 (1)
Coding Note
SpringBoot) 블로그 프로젝트_9. 페이징 처리, Spring Security, 글 상세보기
스터디 4 일차 - 페이징 처리 - Spring Security 1. 페이징 처리 - 최신 등록순으로(내림차순)으로 구현하고 넘어갈 페이지 없으면 변동 없음! BoardApiController //페이징 처리 @GetMapping({"", "/"}) //슬래시 있든 없든 둘다 적용함 public String index(Model model, @PageableDefault (size=3, sort="id", direction = Sort.Direction.DESC) Pageable pageable) { model.addAttribute("boards", boardService.글목록(pageable)); return "index";//viewResolver 작동! } @PageableDefault - Pa..
SpringBoot/블로그만들기PJ
2022. 3. 19. 23:22