TypedQuery而不是JPA正常查询(TypedQuery instead of normal

2019-08-17 14:58发布

是否有可能写这个查询作为TypedQuery,让两个长的运行与内部的两个众长字段对象。

    Query q = em.createQuery(
            "SELECT c.id, COUNT(t.id) " +
            "FROM PubText t " +
            "JOIN t.comm c " +
            "WHERE c.element = ?1 " +
            "GROUP BY c.id");
    q.setParameter(1, e);
    List<?> rl = q.getResultList();
    Iterator<?> it = rl.iterator();
    HashMap<Long, Long> res = new HashMap<Long, Long>();
    while (it.hasNext()) {
        Object[] n = (Object[]) it.next();
        res.put((Long)n[0], (Long)n[1]);
    }
    return res;

Answer 1:

JPA有只为这一个功能 - 构造函数表达式:

Query q = entityManager.createQuery("SELECT NEW com.example.DTO( c.id, COUNT(t.id)) FROM ...");
List<DTO> dtos = q.getResultList();

您的DTO类可以是POJO。 它所需要的是一个公共的构造函数接受2 Long秒。 请注意,您必须在后提供类的全名NEW运营商。



Answer 2:

新的代码现在看起来是这样。 感谢您的帮助。

    TypedQuery<CommUsed> q = em.createQuery(
        "SELECT new CommUsed(c.id,COUNT(t.id)) " +
        "FROM PubText t " +
        "JOIN t.comm c " +
        "WHERE c.element = ?1 " +
        "GROUP BY c.id", CommUsed.class);
    q.setParameter(1, e);
    HashMap<Long, Long> res = new HashMap<Long, Long>();
    for (CommUsed u : q.getResultList())
        res.put(u.commID, u.cnt);


文章来源: TypedQuery instead of normal Query in JPA