`
kanful
  • 浏览: 14292 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论

自己写的简单版HibernateTemplate

阅读更多

HibernateTemplate :

import infoair.fims.common.HibernateSessionFactory;

import java.io.Serializable;
import java.sql.SQLException;
import java.util.Collection;
import java.util.Iterator;
import java.util.List;

import org.hibernate.HibernateException;
import org.hibernate.Query;
import org.hibernate.Session;
import org.hibernate.Transaction;

public class HibernateTemplate {

    public Session getSession() {
        return HibernateSessionFactory.getSession();
    }

    /**
     * 执行回调方法。
     *
     * @param action
     * @return
     * @throws DataAccessException
     */
    public Object execute(HibernateCallback action) throws DataAccessException {
        Session session = null;
        Transaction tran = null;
        try {
            session = getSession();
            tran = session.beginTransaction();
            Object result = action.doInHibernate(session);
            tran.commit();
            return result;
        } catch (HibernateException ex) {
            if (tran != null) {
                tran.rollback();
            }
            ex.printStackTrace();
            throw new DataAccessException("hibernate error");
        } catch (SQLException e) {
            if (tran != null) {
                tran.rollback();
            }
            e.printStackTrace();
            throw new DataAccessException("sql error");
        } catch (RuntimeException ex) {
            if (tran != null) {
                tran.rollback();
            }
            ex.printStackTrace();
            throw ex;
        } finally {
            HibernateSessionFactory.closeSession();
        }
    }

    /**
     * 根据主键,load一个对象.
     *
     * @param entityClass
     * @param id
     * @return
     * @throws DataAccessException
     */
    public Object load(final Class entityClass, final Serializable id)
            throws DataAccessException {
        return execute(new HibernateCallback() {
            public Object doInHibernate(Session session)
                    throws HibernateException {
                return session.load(entityClass, id);
            }
        });
    }

    /**
     * 根据主键,get一个对象.
     *
     * @param entityClass
     * @param id
     * @return
     * @throws DataAccessException
     */
    public Object get(final Class entityClass, final Serializable id)
            throws DataAccessException {
        return execute(new HibernateCallback() {
            public Object doInHibernate(Session session)
                    throws HibernateException {
                return session.get(entityClass, id);
            }
        });
    }

    /**
     * 返回entityClass的所有对象的List
     *
     * @param entityClass
     * @param id
     * @return
     * @throws DataAccessException
     */
    public List findAll(final Class clazz) throws DataAccessException {
        return (List) execute(new HibernateCallback() {
            public Object doInHibernate(Session session)
                    throws HibernateException, SQLException {
                Query query = session.createQuery("from " + clazz.getName());
                return query.list();
            }
        });
    }

    /**
     * 传入hql 返回结果List
     *
     * @param queryHql
     * @return
     * @throws DataAccessException
     */
    public List findAll(final String queryHql) throws DataAccessException {
        return (List) execute(new HibernateCallback() {
            public Object doInHibernate(Session session)
                    throws HibernateException, SQLException {
                Query query = session.createQuery(queryHql);
                return query.list();
            }
        });

    }

    /**
     * 分页查找
     *
     * @param clazz
     * @param firstResult
     * @param maxResults
     * @return
     * @throws DataAccessException
     */
    public List find(final Class clazz, final int firstResult,
            final int maxResults) throws DataAccessException {
        return (List) execute(new HibernateCallback() {
            public Object doInHibernate(Session session)
                    throws HibernateException, SQLException {
                Query query = session.createQuery("from" + clazz.getName())
                        .setFirstResult(firstResult).setMaxResults(maxResults);
                return query.list();
            }
        });
    }

    /**
     * 删除一个对象
     *
     * @param entity
     * @throws DataAccessException
     */
    public void delete(final Object entity) throws DataAccessException {
        execute(new HibernateCallback() {
            public Object doInHibernate(Session session)
                    throws HibernateException, SQLException {
                session.delete(entity);
                return null;
            }
        });
    }

    /**
     * 删除所有对象
     *
     * @param entities
     * @throws DataAccessException
     */
    public void deleteAll(final Collection entities) throws DataAccessException {
        execute(new HibernateCallback() {
            public Object doInHibernate(Session session)
                    throws HibernateException, SQLException {
                for (Iterator it = entities.iterator(); it.hasNext();) {
                    session.delete(it.next());
                }
                return null;
            }
        });
    }

    /**
     * 保存对象
     *
     * @param obj
     * @throws DataAccessException
     */
    public void save(final Object obj) throws DataAccessException {
        execute(new HibernateCallback() {
            public Object doInHibernate(Session session)
                    throws HibernateException, SQLException {
                session.save(obj);
                return null;
            }
        });

    }

    /**
     * 修改对象
     *
     * @param obj
     * @throws DataAccessException
     */
    public void update(final Object obj) throws DataAccessException {
        execute(new HibernateCallback() {
            public Object doInHibernate(Session session)
                    throws HibernateException, SQLException {
                session.update(obj);
                return null;
            }
        });

    }

    /**
     * 保存或修改对象
     *
     * @param obj
     * @throws DataAccessException
     */
    public void saveOrUpdate(final Object obj) throws DataAccessException {
        execute(new HibernateCallback() {
            public Object doInHibernate(Session session)
                    throws HibernateException, SQLException {
                session.saveOrUpdate(obj);
                return null;
            }
        });

    }
}







HibernateCallback :

import java.sql.SQLException;

import org.hibernate.HibernateException;
import org.hibernate.Session;

public interface HibernateCallback {
    public Object doInHibernate(Session session) throws HibernateException,SQLException;
}


BaseHibernateDAO :
import infoair.fims.common.HibernateSessionFactory;
import infoair.fims.common.IBaseHibernateDAO;

import org.hibernate.Session;


public class BaseHibernateDAO implements IBaseHibernateDAO {

    public Session getSession() {
        return HibernateSessionFactory.getSession();
    }

    public HibernateTemplate getTemplate() {
        return new HibernateTemplate();
    }

}


//一个简单的操作类。对
FimnextdayschedDAO :
import infoair.fims.basic.Fimcurdailysched;
import infoair.fims.basic.Fimnextdaysched;

import java.sql.SQLException;
import java.util.List;

import org.hibernate.HibernateException;
import org.hibernate.Session;

public class FimnextdayschedDAO extends BaseHibernateDAO {

    HibernateTemplate template = getTemplate();

    /**
     * 返回所有结果
     *
     * @return
     * @throws DataAccessException
     */
    public List findAll() throws DataAccessException {
        return template.findAll(Fimnextdaysched.class);
    }

    public void refreshFimnextdaysched() throws DataAccessException {
        template.execute(new HibernateCallback() {
            public Object doInHibernate(Session session)
                    throws HibernateException, SQLException {
                session.createQuery("delete from Fimnextdaysched")
                        .executeUpdate();
                session.save(new Fimnextdaysched());
                return null;
            }
        });
    }

    public static void main(String[] args) {
        HibernateTemplate template = new HibernateTemplate();
        try {
            List list = template.findAll(Fimnextdaysched.class);
            List list2 = template.findAll("from Fimnextdaysched");
            List list3 = template.findAll(Fimcurdailysched.class);
            System.out.println(list);
            System.out.println(list2);
            System.out.println(list3);
        } catch (DataAccessException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }

    }

}

分享到:
评论

相关推荐

    基于SpringJDBC的轻量级ORM框架sborm.zip

    7、简单的单表查询(比如所有条件是and或者or结构),基本实现0sql代码编写(类似HibernateTemplate selectByExample、findByCriteria、find等方法); 8、简单的单表排序支持,支持多个排序条件组合; 9、...

    Persistence with Spring

    - Spring 4与JPA的整合使用:Spring 4为与JPA的整合提供了大量的支持,这包括Spring Data JPA模块,它简化了数据访问层的代码编写,开发者可以几乎不写实现类,就能完成对数据库的操作。 - Spring Data JPA的介绍:...

    spring实现的网上书店

    通过Spring的数据访问抽象,如HibernateTemplate或JPA(Java Persistence API),可以更方便地管理数据持久化,减少对低级JDBC的直接依赖,提高代码的可读性和可维护性。 "分层很清晰"表明这个项目遵循了软件工程中...

    HibernateSpring多数据库解决方案.doc

    这两个数据源的配置使用了`DriverManagerDataSource`,这是一个简单的数据源实现,适用于测试和原型开发。在生产环境中,可能需要使用连接池如C3P0或Apache DBCP以提升性能和资源管理。 接下来,我们需要配置...

    Hibernate方法总结

    总的来说,HibernateTemplate提供了一组强大的方法来简化Hibernate的日常操作,涵盖了从简单的数据存取到复杂的数据库操作,极大地提升了开发效率。在实际应用中,根据数据量、性能需求以及业务逻辑,选择合适的方法...

    jsf2(primefaces3)+spring+hibernate案例下载

    2. **PrimeFaces**:PrimeFaces 是一个基于JSF的开源UI组件库,它提供了大量的富客户端组件,使得开发富互联网应用(RIA)变得更加简单。PrimeFaces 3版本是该库的一个早期版本,包含了丰富的图表,表格,对话框,以及...

    spring hibernate cache

    3. 配置 HibernateTemplate 或者 HibernateJpaDialect:Spring 提供了 HibernateTemplate 类作为 Hibernate 的简单包装,便于在 Service 层进行数据操作。也可以选择使用 HibernateJpaDialect 配合 JPA API 使用。 ...

    spring-Hibernate.rar

    4. **使用 Spring 管理 Hibernate**:Spring 可以通过代理模式来管理 Hibernate 的 Session,使得事务管理更加简单。 5. **数据访问**:通过 Spring 的 DAO(数据访问对象)层,使用 HibernateTemplate 或 ...

    spring整合jdbc hbm struts 的各种配置

    Spring 框架提供了一种优雅的方式来管理数据库连接,通过集成 JDBC,它使得数据库操作变得更加简单、易于维护。在 Spring 中整合 JDBC,通常涉及到以下核心组件: 1. 数据源(DataSource):是 Spring 中用于管理...

    Spring整合其他ORM框架

    Spring 提供的 HibernateTemplate 或 SessionFactoryBean 可以帮助简化 Hibernate 的配置和使用。通过 Spring,我们可以实现事务的声明式管理,减少代码量,并提高代码的可测试性。整合时,需要引入相关的 Hibernate...

    SSH整合需要的jar包

    4. 使用Spring的HibernateTemplate或JdbcTemplate进行数据访问操作。 5. 配置Struts2-Spring插件,使得Action类可以被Spring管理。 6. 在Web应用的web.xml中配置过滤器,启动SSH框架。 SSH整合的jar包列表可能包括...

    ssh(structs,spring,hibernate)框架中的上传下载

     所以我们的DAO只需要简单地调用父类的HibernateTemplate就可以完成几乎所有的数据库操作了。  由于Spring通过代理Hibernate完成数据层的操作,所以原Hibernate的配置文件hibernate.cfg.xml的信息也转移到Spring的...

    Spring基础:数据访问(1)

    - **Hibernate**:Spring提供了HibernateTemplate和SessionFactoryBean,用于简化Hibernate的配置和使用,使得对象可以直接映射到数据库表,简化了持久化操作。 - **MyBatis**:Spring与MyBatis的集成使得我们...

    spring框架学习

    - **案例:简易登录(基于XML配置,不推荐使用)**:使用XML配置文件来配置SpringMVC的相关组件。 - **案例:修改11.3案例(基于注解配置,推荐使用)**:使用注解的方式来配置SpringMVC,更加简洁易读。 #### 十二...

    基于J2EE框架的个人博客系统项目毕业设计论文(源码和论文)

     企业版最少64MB内存,其他版本最少需要32MB内存,建议使用更多的内存。  (3)硬盘空间  完全安装(Full)需要180MB的空间,典型安装(Typical)需要170MB的空间,最小安装(Minimum)需要65MB的空间。 3.3. ...

    Spring 整合 Hibernate 时启用二级缓存实例详解

    - **配置HibernateTemplate**:对于使用HibernateTemplate进行查询的情况,需要在配置项中设置`cacheQueries`为true,启用查询缓存。 - **实体类注解配置**:需要缓存的实体类中加入`@Cache`注解,并指定`usage`...

    Spring 2.0 开发参考手册

    12.2.3. HibernateTemplate 12.2.4. 不使用回调的基于Spring的DAO实现 12.2.5. 基于Hibernate3的原生API实现DAO 12.2.6. 编程式的事务划分 12.2.7. 声明式的事务划分 12.2.8. 事务管理策略 12.2.9. 容器资源 ...

    spring chm文档

    12.2.3. HibernateTemplate 12.2.4. 不使用回调的基于Spring的DAO实现 12.2.5. 基于Hibernate3的原生API实现DAO 12.2.6. 编程式的事务划分 12.2.7. 声明式的事务划分 12.2.8. 事务管理策略 12.2.9. 容器资源 ...

    Spring-Reference_zh_CN(Spring中文参考手册)

    12.2.3. HibernateTemplate 12.2.4. 不使用回调的基于Spring的DAO实现 12.2.5. 基于Hibernate3的原生API实现DAO 12.2.6. 编程式的事务划分 12.2.7. 声明式的事务划分 12.2.8. 事务管理策略 12.2.9. 容器资源 vs ...

    Spring中文帮助文档

    12.2.3. The HibernateTemplate 12.2.4. 不使用回调的基于Spring的DAO实现 12.2.5. 基于Hibernate3的原生API实现DAO 12.2.6. 编程式的事务划分 12.2.7. 声明式的事务划分 12.2.8. 事务管理策略 12.2.9. 容器...

Global site tag (gtag.js) - Google Analytics