Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | ||||
4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 | 12 | 13 | 14 | 15 | 16 | 17 |
18 | 19 | 20 | 21 | 22 | 23 | 24 |
25 | 26 | 27 | 28 | 29 | 30 | 31 |
Tags
- springbatch
- JPA Update\
- react react-router-dom v6
- react Page
- javascript 기초
- Spring JPA
- spring security
- 코드 중복제거
- react link
- react Quill
- SpringBatch 스키마
- Spring Controller return
- 텍스트가 많은 경우
- Spring DTO
- editor Quill
- JPA Insert
- step 테이블
- spring
- react
- spring builder
- react jsx if
- Spring Entity
- Javascript
- react forwardRef
- javascrpit 기초
- Spring CORS
- javascript 함수
- react quill custom
- springbatch chunk
- Docker Windows 설치
Archives
- Today
- Total
목록spring pageable (1)
천천히 알아보는 코딩공부
[Spring] API로 페이징 처리 Pageable
게시판들을 보면 게시글을 전체 조회 하지않고 개수를 정해서 조회를 하고 페이지 별로 나눠져서 조회를 하고 있다 구현해보자!! JPA로 구현하였다. Controller @RestController @RequestMapping("/adminKisline/notice") public class AdminNoticeController{ @Autowired private AdminMasterService service; @CrossOrigin(origins = "*") @GetMapping("/noticeSelect") public Page NoticeSelect( @PageableDefault(size = 10, sort = "id", direction = Sort.Direction.DESC) Pageable ..
Java/SpringBoot
2022. 11. 4. 10:08