Girish Prabhudesai

Greenhorn
+ Follow
since Nov 11, 2002
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by Girish Prabhudesai

We are using Sprong AOP for transaction management.
Some of the components are using the following config and rollback is happening as expected.
<property name="transactionAttributes"><props>
<prop key="retrieve*">PROPAGATION_REQUIRED,readOnly,-Exception</prop>
<prop key="get*">PROPAGATION_REQUIRED,readOnly,-Exception</prop>
<prop key="*">PROPAGATION_REQUIRED,-Exception</prop>
</props></property>

But in case of one module we are using this config
<property name="transactionAttributes">
<props><prop key="processMRPFeed">PROPAGATION_REQUIRED,-Exception</prop>
<prop key="processExcelFeed">PROPAGATION_REQUIRED,-Exception</prop>
<prop key="validateUnProcessedPOFeed">PROPAGATION_REQUIRED,-Exception</prop><prop key="triggerProcessInstance">PROPAGATION_REQUIRED,-Exception</prop>
</props></property>

This is method specific transaction attributes. This is not working and no rollback is happening.
Any guess on what must be wrong.
Thanks for the answer.
20 years ago
Can anybody tell me difference in memory stack and heap being used in Java JVM?
20 years ago
Can any body let me know how is session maintained using URL rewriting?
Thanks
Girish
20 years ago
Can anybody let me know the difference between Jsp:forward tag and response.redirect command ?
which should be used in which scenario?
Thanks
Girish
20 years ago
JSP