当前位置:  开发笔记 > 前端 > 正文

Spring JPA不在

如何解决《SpringJPA不在》经验,为你挑选了1个好方法。

我有两个类DrugmedicalDrawer.

我搜索了一种方法来获取所有medicalDrawer未使用的内容Drug

@Entity
public class Drug {

    @Id
    @GeneratedValue(strategy = GenerationType.AUTO)
    private Long drugId;

    @OneToOne
    private MedicalDrawer medicalDrawer;
}

@Entity
public class MedicalDrawer {

    @Id
    @GeneratedValue(strategy = GenerationType.AUTO)
    private Long medicalDrawerId;

    private String name;
}

Rakesh.. 6

如果您使用的是Spring和JPARepository,它支持很多关键字:'And','IsNull',类似'NotIn'.

看看这个:http://docs.spring.io/spring-data/jpa/docs/current/reference/html/

现在,回答你的问题,这是我的方法:

    使用findAll()获取所有药物,循环并在列表中添加medicalDrawerId,并说出medicalDrawerDrugList.

    查找不吸毒的MedicalDrawer.为此,你可以写这样的东西:

     findByMedicalDrawerIdNotIn(medicalDrawerDrugList);
    

我希望,这有帮助.



1> Rakesh..:

如果您使用的是Spring和JPARepository,它支持很多关键字:'And','IsNull',类似'NotIn'.

看看这个:http://docs.spring.io/spring-data/jpa/docs/current/reference/html/

现在,回答你的问题,这是我的方法:

    使用findAll()获取所有药物,循环并在列表中添加medicalDrawerId,并说出medicalDrawerDrugList.

    查找不吸毒的MedicalDrawer.为此,你可以写这样的东西:

     findByMedicalDrawerIdNotIn(medicalDrawerDrugList);
    

我希望,这有帮助.

推荐阅读
重庆制造漫画社
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有