List of usage examples for org.hibernate SessionFactory openStatelessSession
StatelessSession openStatelessSession(Connection connection);
From source file:org.dcm4chee.archive.ejb.query.CompositeQueryBean.java
License:LGPL
@PostConstruct protected void init() { SessionFactory sessionFactory = ((HibernateEntityManagerFactory) emf).getSessionFactory(); try {//w ww . j a v a 2 s. c om connection = dataSource.getConnection(); } catch (SQLException e) { throw new EJBException(e); } session = sessionFactory.openStatelessSession(connection); }