spring data jpa 关联查询返回自定义对象

  • Post author:
  • Post category:其他


 @Override
    public List<SimpleRights> getListByOperatorId(int operatorId) {
        EntityManager em = entityManagerFactory.createEntityManager();
        try {
            List<Rights> list;
            Query query = em.createNativeQuery("select r.id,r.rightName,r.iconCls,r.fartherId,r.orderIndex," +
                    "r.urlPath,r.needLimit,r.rightType" +
                    " from t_xfw_rights r " +
                    "inner join t_xfw_operator_rights x on r.id=x.right_id " +
                    "where x.user_id=? ",Rights.class);
            query.setParameter(1, operatorId);
            list = query.getResultList();

            List<SimpleRights> tmp =new ArrayList<>();
            for(int i=0;i<list.size();i++){
                tmp.add(list.get(i).toSimpleRights());
            }
            return tmp;
        } catch (Exception e) {
            throw e;
        } finally {
            em.close();
        }
    }

Rights 对象有关联关系,在action中返回json时回出现session关闭错误,所以转换成SimpleRights对象,这个方法是查询某个用户的权限集合,Rights中有List,所以在返回的时候,jpa会再懒加载这个列表,但在控制器中这个数据库session已关闭,就出错了,新建一个SimpleOperator对象,里面加上List属性,就可以政策返回。

上边通过createNativeQuery创建一个本地关联查询,自动映射到Rights对象上,然后手动转到SimpleRights,再返回,转换对象会有效率问题,所以不适合大数据量操作。



版权声明:本文为wyljz原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。