jpa2.2.10 Query entityManager 不指定表名查询
时间: 2024-05-23 17:09:40 浏览: 80
让JPA的Query查询接口返回Map对象的方法
您可以使用以下代码来在不指定表名的情况下使用JPA 2.2.10 Query EntityManager进行查询操作:
<code>
Query query = entityManager.createQuery("SELECT e FROM YourEntity e WHERE condition = :condition");
query.setParameter("condition", yourConditionValue);
List<YourEntity> result = query.getResultList();
</code>
在上述代码中,您需要将“YourEntity”替换为您要查询的实体的名称,并将“condition”替换为您要查询的条件的名称。通过setParameter方法,您可以设置查询参数的值。最后,将查询结果存储在一个List对象中,其中每个元素都是您查询的实体的一个实例。
阅读全文