Package org.springframework.orm.hibernate

Examples of org.springframework.orm.hibernate.HibernateTemplate


  public Hibernate2UserDao() {
    super();
  }

  public void setSessionFactory(SessionFactory sessionFactory) {
    this.hibernateTemplate = new HibernateTemplate(sessionFactory, true);
  }
View Full Code Here


   * @param sessionFactory the Hibernate SessionFactory to create a HibernateTemplate for
   * @return the new HibernateTemplate instance
   * @see #setSessionFactory
   */
  protected HibernateTemplate createHibernateTemplate(SessionFactory sessionFactory) {
    return new HibernateTemplate(sessionFactory);
  }
View Full Code Here

TOP

Related Classes of org.springframework.orm.hibernate.HibernateTemplate

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.