public class JpaMain {
public static void main(String[] args) {
List<Member> resultList = em
.createQuery("select m from Member m order by m.age desc", Member.class)
.setFirstResult(1).setMaxResults(10).getResultList();
}
}
위 그림처럼 오라클이었다면 복잡했을 쿼리를 API를 통해 쉽게 적용할 수 있다
참고 :
김영한. 『자바 ORM 표준 JPA 프로그래밍』. 에이콘, 2015.