hibernate使用jpa对于基础dao的封装

一、dao的接口

package com.hm.dao;

import java.util.List;
import java.util.Map;

import com.hm.common.util.QueryParameter;

/**
 * 数据操作基类接口
 */
public interface BaseDAO<T, PK extends java.io.Serializable> {
    
    /**
     * 保存对象
     * @param entity    实体
     * @return          1:操作成功 0:操作失败
     */
    public int save(T entity);
    
    /**
     * 更新对象信息
     * @param entity    实体
     * @return          1:操作成功 0:操作失败
     */
    public int update(T entity);
    
    /**
     * 删除对象
     * @param entity    实体
     * @return          >0:操作成功
     */
    public int delete(T entity );
    
    /**
     * 删除对象
     * @param id        主键
     * @return          >0:操作成功
     */
    public int delete(PK id);
    
    /**
     * 根据ID获取实体对象
     * @param id    ID主键
     * @return      实体
     */
    public T findById(PK id);

    /**
     * 根据EJB-QL查询对象
     * @param queryString   QL语句
     * @return              数据集合
     */
    public List<T> findByQL(String queryString);

    /**
     * 根据EJB-QL查询对象
     * @param queryString   QL语句
     * @param map           参数
     * @return              数据集合
     */
    public List<T> findByQL(String queryString, Map<String, Object> map);
    
    /**
     * 根据SQL查询对象
     * @param queryString   SQL语句
     * @return              数据集合
     */
    public List<Object> findBySQL(String queryString);
    
    /**
     * 根据SQL查询对象
     * @param queryString   SQL语句
     * @param map           参数
     * @return              数据集合
     */
    public List<Object> findBySQL(String queryString, Map<String, Object> map);
    
    /**
     * 根据EJB-QL返回对象记录数
     * @param queryString   EJ-QL语句
     * @return              总记录数
     */
    public int getCountByQL(String queryString);

    /**
     * 根据EJB-QL返回对象记录数
     * @param queryString   EJ-QL语句
     * @param map           参数
     * @return              总记录数
     */
    public int getCountByQL(String queryString, Map<String, Object> map);
    
    /**
     * 根据SQL返回对象记录数
     * @param queryString   SQL语句
     * @return              总记录数
     */
    public int getCountBySQL(String queryString);

    /**
     * 根据SQL返回对象记录数
     * @param queryString   SQL语句
     * @param map           参数
     * @return              总记录数
     */
    public int getCountBySQL(String queryString, Map<String, Object> map);

    /**
     * 根据SQL返回对象记录数
     * @param queryString   SQL语句
     * @param map           参数
     * @return              总记录数
     */
    public int getCountBySQL2(String queryString, Map<String, Object> map);
    
    /**
     * 根据EJB-QL查询对象
     * @param queryString   QL语句
     * @param maxSize       最大数量
     * @param firstId       第一条记录
     * @return              数据集合
     */
    public List<T> findByQL(String queryString, int maxSize, int firstId);

    /**
     * 根据EJB-QL查询对象
     * @param queryString   QL语句
     * @param maxSize       最大数量
     * @param firstId       第一条记录
     * @param map           参数
     * @return              数据集合
     */
    public List<T> findByQL(String queryString, int maxSize, int firstId, Map<String, Object> map);
    
    /**
     * 根据SQL查询对象
     * @param queryString   SQL语句
     * @param maxSize       最大数量
     * @param firstId       第一条记录
     * @return              数据集合
     */
    public List<Object> findBySQL(String queryString, int maxSize, int firstId);
    
    /**
     * 根据SQL查询对象
     * @param queryString   SQL语句
     * @param maxSize       最大数量
     * @param firstId       第一条记录
     * @param map           参数
     * @return              数据集合
     */
    public List<Object> findBySQL(String queryString, int maxSize, int firstId, Map<String, Object> map);
    
    /**
     * 执行更新语句
     * @param queryString   EJ-QL语句
     * @return              影响记录数
     */
    public int executeUpdateByQL(String queryString);

    /**
     * 执行更新语句
     * @param queryString   EJ-QL语句
     * @param map           参数
     * @return              影响记录数
     */
    public int executeUpdateByQL(String queryString, Map<String, Object> map);
    
    /**
     * 执行更新语句
     * @param queryString   SQL语句
     * @return              影响记录数
     */
    public int executeUpdateBySQL(String queryString);
    
    /**
     * 执行更新语句
     * @param queryString   SQL语句
     * @param map           参数
     * @return              影响记录数
     */
    public int executeUpdateBySQL(String queryString, Map<String, Object> map);

    /**
     * 执行事务
     * @param queryParameterList    要执行的QL语句集合
     * @return                      操作结果 true | false
     */
    public boolean executeTransactionalByQL(List<QueryParameter> queryParameterList);

    /**
     * 执行事务
     * @param queryParameterList    要执行的SQL语句集合
     * @return                      操作结果 true | false
     */
    public boolean executeTransactionalBySQL(List<QueryParameter> queryParameterList);
    
    /**
     * 根据HQL查询对象
     * @param queryString   SQL语句
     * @param maxSize       最大数量
     * @param firstId       第一条记录
     * @param map           参数
     * @return              数据集合
     */
    public List<Object> findObjectByQL(String queryString, int maxSize, int firstId, Map<String, Object> map);
}

二、dao的实现

package com.hm.dao.jpa;
import java.math.BigInteger;
import java.util.ArrayList;
import java.util.List;
import java.util.Map;

import javax.persistence.EntityManager;
import javax.persistence.EntityManagerFactory;
import javax.persistence.PersistenceContext;
import javax.persistence.PersistenceUnit;
import javax.persistence.Query;
import javax.transaction.Transactional;

import org.apache.commons.lang.StringUtils;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;

import com.hm.common.util.QueryParameter;
import com.hm.dao.BaseDAO;

/**
 * 数据操作基类实现类
 */
@SuppressWarnings("unchecked")
public class BaseDAOImpl<T, PK extends java.io.Serializable> implements BaseDAO<T, PK> {
    
    private static Log log;

    private Class<T> entityClass;

    @PersistenceContext
    private EntityManager entityManager;

    // @PersistenceContext
    private EntityManagerFactory entityManagerFactory;
    
    @PersistenceUnit
    public void setEntityManagerFactory(EntityManagerFactory emf) {
        this.entityManagerFactory = emf;
    }

    /**
     * 构造方法
     */
    public BaseDAOImpl(Class<T> entityClass) {
        this.entityClass = entityClass;
    }

    public Log getLog() {
        if(null == log) {
            log = LogFactory.getLog(this.getClass());
        }
        return log;
    }

    public EntityManager getEntityManager() {
        return entityManager;
    }

    public Class<T> getEntityClass() {
        return entityClass;
    }

    public void setEntityClass(Class<T> entityClass) {
        this.entityClass = entityClass;
    }

    @Transactional
    public int save(T entity) {
        try {
            entityManager.persist(entity);
        } catch (Exception e) {
            getLog().error("保存对象发生异常:" +e.getMessage());
            return 0;
        }
        return 1;
    }

    @Transactional
    public int update(T entity) {
        try {
            entity = entityManager.merge(entity);
        } catch (Exception e) {
            getLog().error("获取对象发生异常:"+e.getMessage());
            return 0;
        } 
        return 1;
    }

    @Transactional
    public int delete(T entity) {
        try {
            entityManager.remove(entityManager.merge(entity));
            return 1;
        } catch (Exception e) {
            getLog().error("删除对象发生异常:"+e.getMessage());
            return 0;
        }
    }

    @Transactional
    public int delete(PK id) {
        return this.delete(this.findById(id));
    }

    public T findById(PK id) {
        T entity = null;
        try {
            entity = entityManager.find(entityClass, id);
        } catch (Exception e) {
            getLog().error("获取对象发生异常:"+e.getMessage());
        }
        return entity;
    }

    public List<T> findByQL(String queryString) {
        List<T> rList = new ArrayList<T>();
        try {
            rList = (List<T>)entityManager.createQuery(queryString).getResultList();
        } catch (Exception e) {
            getLog().error("获取对象发生异常:"+e.getMessage());
        } 
        return rList;
    }

    public List<T> findByQL(String queryString, Map<String, Object> map) {
        List<T> rList = new ArrayList<T>();
        try {
            Query q = this.getEntityManager().createQuery(queryString);
            if(null != map) {
                for (String key : map.keySet()) {
                    q.setParameter(key, map.get(key));
                }
            }
            rList = (List<T>)q.getResultList();
        } catch (Exception e) {
            getLog().error("获取对象发生异常:"+e.getMessage());
        } 
        return rList;
    }
    
    public List<Object> findBySQL(String queryString) {
        List<Object> rList = new ArrayList<Object>();
        try {
            Query q = this.getEntityManager().createNativeQuery(queryString);
            rList = q.getResultList();
        } catch (Exception e) {
            this.getLog().error("获取对象发生异常:"+e.getMessage());
        } 
        return rList;
    }
    
    public List<Object> findBySQL(String queryString, Map<String, Object> map) {
        List<Object> rList = new ArrayList<Object>();
        try {
            Query q = this.getEntityManager().createNativeQuery(queryString);
            if(null != map) {
                for (String key : map.keySet()) {
                    q.setParameter(key, map.get(key));
                }
            }
            rList = q.getResultList();
        } catch (Exception e) {
            this.getLog().error("获取对象发生异常:"+e.getMessage());
        } 
        return rList;
    }

    public List<T> findByQL(String queryString, int maxSize, int firstId) {
        List<T> rList = new ArrayList<T>();
        try {
            Query q = this.getEntityManager().createQuery(queryString);
            q.setMaxResults(maxSize);
            q.setFirstResult(firstId);
            rList = q.getResultList();
        } catch (Exception e) {
            this.getLog().error("获取对象发生异常:"+e.getMessage());
        } 
        return rList;
    }

    public List<T> findByQL(String queryString, int maxSize, int firstId, Map<String, Object> map) {
        List<T> rList = new ArrayList<T>();
        try {
            Query q = this.getEntityManager().createQuery(queryString);
            if(null != map) {
                for (String key : map.keySet()) {
                    q.setParameter(key, map.get(key));
                }
            }
            q.setMaxResults(maxSize);
            q.setFirstResult(firstId);
            rList = q.getResultList();
        } catch (Exception e) {
            this.getLog().error("获取对象发生异常:"+e.getMessage());
            e.printStackTrace();
        } 
        return rList;
    }
    
    public List<Object> findObjectByQL(String queryString, int maxSize, int firstId, Map<String, Object> map) {
        List<Object> rList = new ArrayList<Object>();
        try {
            Query q = this.getEntityManager().createQuery(queryString);
            if(null != map) {
                for (String key : map.keySet()) {
                    q.setParameter(key, map.get(key));
                }
            }
            q.setMaxResults(maxSize);
            q.setFirstResult(firstId);
            rList = q.getResultList();
        } catch (Exception e) {
            this.getLog().error("获取对象发生异常:"+e.getMessage());
        } 
        return rList;
    }
    
    public List<Object> findBySQL(String queryString, int maxSize, int firstId) {
        List<Object> rList = new ArrayList<Object>();
        try {
            Query q = this.getEntityManager().createNativeQuery(queryString);
            q.setMaxResults(maxSize);
            q.setFirstResult(firstId);
            rList = q.getResultList();
        } catch (Exception e) {
            this.getLog().error("获取对象发生异常:"+e.getMessage());
        } 
        return rList;
    }
    
    public List<Object> findBySQL(String queryString, int maxSize, int firstId, Map<String, Object> map) {
        List<Object> rList = new ArrayList<Object>();
        try {
            Query q = this.getEntityManager().createQuery(queryString);
            if(null != map) {
                for (String key : map.keySet()) {
                    q.setParameter(key, map.get(key));
                }
            }
            q.setMaxResults(maxSize);
            q.setFirstResult(firstId);
            rList = q.getResultList();
        } catch (Exception e) {
            this.getLog().error("获取对象发生异常:"+e.getMessage());
        } 
        return rList;
    }

    public int getCountByQL(String queryString) {
        int intCount = 0;
        try {
            Query q = this.getEntityManager().createQuery(queryString);
            intCount = ((Long)q.getSingleResult()).intValue();
        } catch (Exception e) {
            getLog().error("获取对象总数发生异常:"+e.getMessage());
            e.printStackTrace();
        } 
        return intCount;
    }

    public int getCountByQL(String queryString, Map<String, Object> map) {
        int intCount = 0;
        try {
            Query q = this.getEntityManager().createQuery(queryString);
            if(null != map) {
                for (String key : map.keySet()) {
                    q.setParameter(key, map.get(key));
                }
            }
            intCount = ((Long)q.getSingleResult()).intValue();
            
        } catch (Exception e) {
            getLog().error("获取对象总数发生异常:"+e.getMessage());
            e.printStackTrace();
        } 
        return intCount;
    }
    
    public int getCountBySQL(String queryString) {
        int intCount = 0;
        try {
            Query q = this.getEntityManager().createNativeQuery(queryString);
            intCount = ((Integer)q.getSingleResult()).intValue();
        } catch (Exception e) {
            getLog().error("获取对象总数发生异常:"+e.getMessage());
            e.printStackTrace();
        } 
        return intCount;
    }
    
    public int getCountBySQL(String queryString, Map<String, Object> map) {
        int intCount = 0;
        try {
            Query q = this.getEntityManager().createNativeQuery(queryString);
            if(null != map) {
                for (String key : map.keySet()) {
                    q.setParameter(key, map.get(key));
                }
            }
            intCount = ((Integer)q.getSingleResult()).intValue();
        } catch (Exception e) {
            getLog().error("获取对象总数发生异常:"+e.getMessage());
            e.printStackTrace();
        } 
        return intCount;
    }

    public int getCountBySQL2(String queryString, Map<String, Object> map) {
        int intCount = 0;
        try {
            Query q = this.getEntityManager().createNativeQuery(queryString);
            if(null != map) {
                for (String key : map.keySet()) {
                    q.setParameter(key, map.get(key));
                }
            }
            String str  = q.getSingleResult().toString();
            intCount = Integer.parseInt(str);
        } catch (Exception e) {
            getLog().error("获取对象总数发生异常:"+e.getMessage());
            e.printStackTrace();
        } 
        return intCount;
    }
    
    @Transactional
    public int executeUpdateByQL(String queryString) {
        int intCount = 0;
        try {
            intCount = this.getEntityManager().createQuery(queryString).executeUpdate();
        } catch (Exception e) {
            getLog().error("执行更新语句发生异常:"+e.getMessage());
            e.printStackTrace();
        } 
        return intCount;
    }

    @Transactional
    public int executeUpdateByQL(String queryString, Map<String, Object> map) {
        int intCount = 0;
        try {
            Query q = this.getEntityManager().createQuery(queryString);
            if(null != map) {
                for (String key : map.keySet()) {
                    q.setParameter(key, map.get(key));
                }
            }
            intCount = q.executeUpdate();
        } catch (Exception e) {
            getLog().error("执行更新语句发生异常:"+e.getMessage());
            e.printStackTrace();
        } 
        return intCount;
    }

    @Transactional
    public int executeUpdateBySQL(String queryString) {
        int intCount = 0;
        try {
            intCount = this.getEntityManager().createNativeQuery(queryString).executeUpdate();
        } catch (Exception e) {
            getLog().error("执行更新语句发生异常:"+e.getMessage());
        } 
        return intCount;
    }

    @Transactional
    public int executeUpdateBySQL(String queryString, Map<String, Object> map) {
        int intCount = 0;
        try {
            Query q = this.getEntityManager().createNativeQuery(queryString);
            if(null != map) {
                for (String key : map.keySet()) {
                    q.setParameter(key, map.get(key));
                }
            }
            intCount = q.executeUpdate();
        } catch (Exception e) {
            getLog().error("执行更新语句发生异常:"+e.getMessage());
            e.printStackTrace();
        } 
        return intCount;
    }

    @Override
    public boolean executeTransactionalByQL(List<QueryParameter> queryParameterList) {
        if(null == queryParameterList || queryParameterList.isEmpty()) {
            return false;
        }
        EntityManager entityManager = entityManagerFactory.createEntityManager();
        try {
            //this.getEntityManager().getTransaction().begin();
            entityManager.getTransaction().begin();
            for(QueryParameter queryParameter : queryParameterList) {
                //Query q = this.getEntityManager().createQuery(queryParameter.getQueryString());
                Query q;
                if(StringUtils.indexOf(queryParameter.getQueryString(), "insert") >= 0 || queryParameter.getType() == "SQL")
                {
                    q = entityManager.createNativeQuery(queryParameter.getQueryString());
                }
                else 
                {
                    q = entityManager.createQuery(queryParameter.getQueryString());
                }
                if(null != queryParameter.getParameterMap()) {
                    for (String key : queryParameter.getParameterMap().keySet()) {
                        q.setParameter(key, queryParameter.getParameterMap().get(key));
                    }
                }
                q.executeUpdate();
            }
            //this.getEntityManager().getTransaction().commit();
            entityManager.getTransaction().commit();
        } catch (Exception e) {
            getLog().error("执行事务发生异常:"+e.getMessage());
            //this.getEntityManager().getTransaction().rollback();
            entityManager.getTransaction().rollback();
            e.printStackTrace();
            return false;
        } finally {
            entityManager.close();
        }
        return true;
    }

    @Override
    public boolean executeTransactionalBySQL(List<QueryParameter> queryParameterList) {
        if(null == queryParameterList || queryParameterList.isEmpty()) {
            return false;
        }
        EntityManager entityManager = entityManagerFactory.createEntityManager();
        try {
            //this.getEntityManager().getTransaction().begin();
            entityManager.getTransaction().begin();
            for(QueryParameter queryParameter : queryParameterList) {
                //Query q = this.getEntityManager().createQuery(queryParameter.getQueryString());
                Query q = entityManager.createNativeQuery(queryParameter.getQueryString());
                if(null != queryParameter.getParameterMap()) {
                    for (String key : queryParameter.getParameterMap().keySet()) {
                        q.setParameter(key, queryParameter.getParameterMap().get(key));
                    }
                }
                q.executeUpdate();
            }
            //this.getEntityManager().getTransaction().commit();
            entityManager.getTransaction().commit();
        } catch (Exception e) {
            getLog().error("执行事务发生异常:"+e.getMessage());
            //this.getEntityManager().getTransaction().rollback();
            entityManager.getTransaction().rollback();
            e.printStackTrace();
            return false;
        } finally {
            entityManager.close();
        }
        return true;
    }
}

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 203,547评论 6 477
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,399评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,428评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,599评论 1 274
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,612评论 5 365
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,577评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,941评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,603评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,852评论 1 297
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,605评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,693评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,375评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,955评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,936评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,172评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 43,970评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,414评论 2 342

推荐阅读更多精彩内容