| 
					
						 Greetings,
 
 Iam using Hibernate 3.0.5 and getting the following warning 
 
 WARN  [JTATransaction] You should set hibernate.transaction.manager_lookup_class if cache is enabled
 
 Was wondering, if Iam missing something in my hbm files / settings.
 My hbm, file looks like this..
 
 <hibernate-configuration>
 <session-factory 
         name="srs/fs/hibernate/SessionFactory">
 
 	<!-- Properties !-->
 	<property name="connection.datasource">java:jdbc/ApplicationAuthorization</property>
 	<property name="transaction.factory_class">org.hibernate.transaction.JTATransactionFactory</property>
 	<property name="show_sql">true</property>
         
         <!-- Mapping files -->
          .....
         <!-- End of Mapping files -->
 
 </session-factory>
 
 </hibernate-configuration>
 
 Thanks in advance.
 
 -Ganesh. 
					
  
						
					 |