BACK-END3 페이징 처리 https://bae9086.tistory.com/111 Offset , Limit (페이징 처리) 12c 이전의 Oracle은 Top-N쿼리를 구현하기 위해 ROWNUM을 사용해 왔습니다. 하지만 이는 쿼리를 View로 감싸야 하고 순서보장을 원한시에는 한번더 View로 감싸 쿼리가 복잡해지는 단점이 있었습니다. O bae9086.tistory.com # 오라클 12c 이전은 row_number() 이용 Top-N Query (a ~ b order by ) 이용 -> start page / rowsPerPage 파라미터 이용 # 예시 OFFSET ((#{pageIdx}-1) * #{rowsPerPage}) ROWS FETCH { FIRST | NEXT } (#{rowsPerPage}) ROWS { ON.. 2022. 9. 15. JAVA REFLECTION ANNOTATION (@interface) 1. 커스텀 어노테이션 # 어노테이션 을 커스텀하여 생성한다 [JAVA] Reflection과 Annotaion으로 필드 및 메소드에 값 주입하기. - https://kim-jong-hyun.tistory.com/m/22 어노테이션 정의 https://coding-nyan.tistory.com/139 2022. 9. 2. SPRING SECUIRY https://galid1.tistory.com/576 (추천) SpringSecurity - SpringSecurity 간단한 설정과 예제 SpringSecurity sample 공식 문서 _ https___spring SpringSecurity 란 : https://postitforhooney.tistory.com/entry/SpringSecurity-%EC%B4%88%EB%B3%B4%EC%9E%90%EA%B0%80-%EC%9D%B4%ED%95%B4%ED%95%98%EB%8A%.. galid1.tistory.com https://developerbee.tistory.com/200 Spring Security 로그인 구현하기 Spring Security를 사용하여 로그인과 회원가입 기능을 구현하는 방법.. 2022. 8. 30. 이전 1 다음