阅读 210

SpringBoot+JPA 分页查询指定列并返回指定实体方式

这篇文章主要介绍了SpringBoot+JPA 分页查询指定列并返回指定实体方式,具有很好的参考价值,希望对大家有所帮助。如有错误或未考虑完全的地方,望不吝赐教

目录
  • SpringBoot+JPA分页查询指定列并返回指定实体

  • SpringBoot JPA实现自定义语句分页查询

SpringBoot+JPA分页查询指定列并返回指定实体

用习惯Mybatis,没用过jpa 真是各种踩坑了

脑壳疼,一个分页弄老半天,原来就一句话的事情,唉

先来说说正常的JPA如何操作

实体类对应表来创建,举个例子

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
32
33
34
35
36
37
38
39
40
41
42
@Entity
@Table(name = "td_user")
public class TdUser extends BaseModel {
    private static final long serialVersionUID = 8659266017517096998L;
    /**
     * id
     */
    @Id
    @GeneratedValue(strategy = GenerationType.IDENTITY)
    @Column(nullable = false, name = "id", length = 10)
    private Long id;
  
    /**
     * 用户所属平台
     */
    @Column(nullable = false, name = "partner_id", length = 11)
    private Integer partnerId;
  
    /**
     * 用户名
     */
    @Column(nullable = false, name = "username", length = 32, unique = true)
    private String username;
  
    /**
     * 用户昵称
     */
    @Column(name = "nickname", length = 64)
    private String nickname;
  
    /**
     * 密码
     */
    @JsonIgnore
    @Column(nullable = false, name = "password", length = 16)
    private String password;
  
    /**
     * id
     *
     * getter  setter方法省略
     */

相对应的建立操作接口

1
2
3
@Repository
public interface TdUserRepository extends JpaRepository<TdUser, Long>, JpaSpecificationExecutor<TdUser> {
}

分页查询的时候只要一句话

1
2
// Partner partner  外部传入的分页信息
Page<TdUser> allPage = TdUserRepository.findAll(pageable);

但是有时候可能不需要返回所有字段,只要返回一部分而已,经过各种尝试,有一种最简单的方法

就是把想要返回的字段再构建成一个实体,实体的属性需要和数据库字段进行映射,然后单独写一个Repository就可以了


比如

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
@Entity
@Table(name = "td_user")
public class UserVO extends BaseModel {
    private static final long serialVersionUID = 8659266017517096998L;
    /**
     * id
     */
    @Id
    @GeneratedValue(strategy = GenerationType.IDENTITY)
    @Column(nullable = false, name = "id", length = 10)
    private Long id;
  
    /**
     * 用户名
     */
    @Column(nullable = false, name = "username", length = 32, unique = true)
    private String username; 
 
    /**
     * id
     *
     * getter  setter方法省略
     */
@Repository
public interface UserRepository extends JpaRepository<User, Long>, JpaSpecificationExecutor<User> {
}

调用的时候

1
2
// Partner partner  外部传入的分页信息
Page<User> allPage = UserRepository.findAll(pageable);

我一开始也尝试过写sql,但是我发现返回数据会变成Page<Object[]>,经过json数列化以后数据会变成 [ ["1":"string"],...]这种样子而不是key-value的形式

改了n遍后发现这样是最简单的。。。

SpringBoot JPA实现自定义语句分页查询

例:1.JPA持久层 InvoiceRepository.java

1
2
3
4
5
6
7
8
9
10
@Repository
public interface InvoiceRepository extends JpaRepository<Invoice, Integer> {
    @Query(
      value =
          "SELECT * from invoice_apply where company_id=?1 and IF (?2 is null ,1=1,status = ?2)",
      countQuery =
          "select count(*) from invoice_apply where company_id=?1 and IF (?2 is null ,1=1,status = ?2)",
      nativeQuery = true)
  Page<Map> findInvoice(int companyID, String status, Pageable pageable);
}

2.服务层

1
2
3
4
5
6
7
8
9
10
11
12
13
14
@Override
  public Map findInvoice(int companyID, String status, Integer page, Integer pageSize) {
    Double amount = companyFinanceRepository.findDCompanyFinance(companyID);
    //分页查询
    Pageable pageable = PageRequest.of(page, pageSize, Sort.Direction.ASC, "id");
    Page<Map> invoiceList = invoiceRepository.findInvoice(companyID, status, pageable);
    //重组返回结果
    Map map = new HashMap();
    map.put("invoice_amount", amount);
    map.put("list", invoiceList.getContent());//数据列表
    map.put("total", invoiceList.getTotalElements());//记录总条数
    map.put("current_page", invoiceList.getNumber());//当前页码
    return map;
  }

以上为个人经验,希望能给大家一个参考

原文链接:https://blog.csdn.net/FRYAN28/article/details/109134794


文章分类
代码人生
版权声明:本站是系统测试站点,无实际运营。本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容, 请发送邮件至 XXXXXXo@163.com 举报,一经查实,本站将立刻删除。
相关推荐