JPA的分页查询:
第一步:首先要用jap导入依赖:jpa是一种规范,要使用需导入实现了规范的hibernate。
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.hibernate.version>5.0.7.Final</project.hibernate.version>
</properties>
<dependencies>
<!-- junit -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
<!-- hibernate对jpa的支持包 -->
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-entitymanager</artifactId>
<version>${project.hibernate.version}</version>
</dependency>
<!-- c3p0 -->
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-c3p0</artifactId>

本文介绍了如何利用JPA进行分页查询。首先,需导入JPA的依赖,因为JPA是一个规范,实际操作需依赖实现该规范的Hibernate。接着,在resources目录创建META-INF并配置相关XML。然后,配置实体类的映射关系。最后,详细讲解了执行分页查询的方法。
最低0.47元/天 解锁文章
5373





