48) REST 방식 댓글 구현 - 3
2022.6.27 - 댓글 구현 3번째 시간. 화면 구성까지 하게되면 많이 길어 질것 같긴 하다 ㅠㅠ 그래도 끝까지 1) Controller 생성(전편에 이어서) - 댓글 목록 확인 - @GetMapping(value = "/pages/{bno}/{page}", produces = {MediaType.APPLICATION_JSON_VALUE}) public ResponseEntity getList(@PathVariable int page, @PathVariable Long bno){ Criteria criteria = new Criteria(page, 10); return new ResponseEntity(service.getList(criteria, bno), HttpStatus.OK); } - 댓글 ..
Today's Study/Academy
2022. 6. 27. 17:35