User Manager creating excessive transactions on get* operations via Spring
transactions
---------------------------------------------------------------------------------------
Key: JS2-884
URL: https://issues.apache.org/jira/browse/JS2-884
Project: Jetspeed 2
Issue Type: Bug
Components: Security
Affects Versions: 2.2
Reporter: David Sean Taylor
Assignee: David Sean Taylor
Fix For: 2.2
User Manager creating excessive transactions on get* operations via Spring
transactions
In spring configuration, was:
<prop key="*">PROPAGATION_REQUIRED</prop>
changing to more refined transactional propagation:
<property name="transactionAttributes">
<props>
<prop key="add*">PROPAGATION_REQUIRED</prop>
<prop key="update*">PROPAGATION_REQUIRED</prop>
<prop key="remove*">PROPAGATION_REQUIRED</prop>
<prop key="*">PROPAGATION_SUPPORTS</prop>
</props>
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]