09/09/2008, 06:54
|
| | | Fecha de Ingreso: enero-2007 Ubicación: aquí, ¿donde sino?
Mensajes: 261
Antigüedad: 18 años Puntos: 1 | |
Respuesta: como configurar las transacciones Solucionado!!
<bean id="transactionManager" class="org.springframework.orm.hibernate3.Hibernat eTransactionManager">
<property name="sessionFactory"><ref bean="sessionFactory"/></property>
</bean>
<bean id="alumnoTransaction" class="org.springframework.transaction.interceptor .TransactionProxyFactoryBean">
<property name="transactionManager" ref="transactionManager" />
<property name="target" ref="alumnoDaoImp" />
<property name="transactionAttributes">
<!-- define the transaction specs here -->
<props>
<prop key="save*">PROPAGATION_REQUIRED</prop>
<prop key="delete*">PROPAGATION_REQUIRED</prop>
<prop key="*">PROPAGATION_REQUIRED</prop>
</props>
</property>
</bean>
Saludos!! |