Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. <tx:annotation-driven transaction-manager="hibernateTransaction"/>
  2.    
  3.     <bean class="org.springframework.orm.hibernate3.annotation.AnnotationSessionFactoryBean" id="sessionFactory">
  4.         <property name="configLocation" value="WEB-INF/hibernate.cfg.xml"/>
  5.     </bean>
  6.    
  7.     <bean class="org.springframework.orm.hibernate3.HibernateTransactionManager" id="hibernateTransaction">
  8.         <property name="sessionFactory" ref="sessionFactory"></property>
  9.     </bean>