Examples of AnnotationSessionFactoryBean


Examples of org.springframework.orm.hibernate3.annotation.AnnotationSessionFactoryBean

    transactionManager.rollback(transactionStatus);
  }

  private SessionFactory createTestSessionFactory() throws Exception {
    // create a FactoryBean to help create a Hibernate SessionFactory
    AnnotationSessionFactoryBean factoryBean = new AnnotationSessionFactoryBean();
    factoryBean.setDataSource(createTestDataSource());
    factoryBean.setAnnotatedClasses(new Class [] {Restaurant.class});
    factoryBean.setHibernateProperties(createHibernateProperties());
    // initialize according to the Spring InitializingBean contract
    factoryBean.afterPropertiesSet();
    // get the created session factory
    return (SessionFactory) factoryBean.getObject();
  }
View Full Code Here

Examples of org.springframework.orm.hibernate3.annotation.AnnotationSessionFactoryBean

    transactionManager.rollback(transactionStatus);
  }

  private SessionFactory createTestSessionFactory() throws Exception {
    // create a FactoryBean to help create a Hibernate SessionFactory
    AnnotationSessionFactoryBean factoryBean = new AnnotationSessionFactoryBean();
    factoryBean.setDataSource(createTestDataSource());
    factoryBean.setAnnotatedClasses(new Class [] {Account.class, Beneficiary.class});
    factoryBean.setHibernateProperties(createHibernateProperties());
    // initialize according to the Spring InitializingBean contract
    factoryBean.afterPropertiesSet();
    // get the created session factory
    return (SessionFactory) factoryBean.getObject();
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.