jpa in查询
Posted yinchuan
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jpa in查询相关的知识,希望对你有一定的参考价值。
List<Integer> ids = new ArrayList<Integer>(); ids.add(1); ids.add(2); Map<String, Object> params = new HashMap<String, Object>(); params.put("ids", ids); String jpql = "select o from oa_usersroles o where o.role.id in(:ids)"; List<Module> modules = em.createQuery(jpql).setParameter("ids", ids).getResultList();
以上是关于jpa in查询的主要内容,如果未能解决你的问题,请参考以下文章