I wanted to provide some additional info.
We are using a message driven bean to which has container managed transactions.
We are looking up and using a stateless session bean with container managed transctions.
The message bean and the required bean both have "Required" level transaction level.
So I assume it will reuse the same transaction from the message bean to the stateless bean.
We are using Hibernate 3.1.3 and spring 1.2.1 DAO class
Code:
<bean id="hibernateProperties"
class="org.springframework.beans.factory.config.PropertiesFactoryBean">
<property name="properties">
<props>
<prop key="hibernate.dialect">
org.hibernate.dialect.DB2Dialect
</prop>
<prop key="hibernate.connection.url">jdbc/myConnURL</prop>
<prop key="hibernate.default_schema">DB2</prop>
<prop key="transaction.factory_class">
org.hibernate.transaction.CMTTransactionFactory
</prop>
<prop key="transaction.manager_lookup_class">
org.hibernate.transaction.WebSphereExtendedJTATransactionLookup
</prop>
<prop key="transaction.auto_close_session">true</prop>
<prop key="transaction.flush_before_completion">
true
</prop>
<prop key="hibernate.show_sql">false</prop>
</props>
</property>
</bean>