Results 1 to 3 of 3
- 08-07-2012, 03:47 PM #1
Member
- Join Date
- Aug 2010
- Posts
- 6
- Rep Power
- 0
Using Spring AOP based transaction with Struts1
Hi Friends,
I am developing one application using Struts1.3+Spring2.5+Hibernate3.6 to do practice.
In this application I am using Spring AOP transactions, but transaction is not working for me.
Please check my code snippets and help me.
web.xml
=======
in addition to general entries, I have added the following code as well
applicationContext.xml<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/applicationContext.xml</param-value>
</context-param>
<listener>
<listener-class>org.springframework.web.context.ContextLoade rListener</listener-class>
</listener>
==================
Here all my service classes implemented this "ITransactionalSaveService" marker interface. So as per the above configuration,any service class which has save* method should wrap with transactions. But for me it is not working.<bean id="transactionManager"
class="org.springframework.orm.hibernate3.Hibernat eTransactionManager">
<property name="sessionFactory" ref="mySessionFactory" />
</bean>
<bean id="matchAllWithSave"
class="org.springframework.transaction.interceptor .NameMatchTransactionAttributeSource" lazy-init='true'>
<property name="properties">
<props>
<prop key="save*">
PROPAGATION_REQUIRED,-Exception</prop>
<prop key="start*">
PROPAGATION_REQUIRED,-Exception</prop>
<prop key="newTx*">
PROPAGATION_REQUIRES_NEW,-Exception</prop>
<prop key="*">PROPAGATION_SUPPORTS,readOnly</prop>
</props>
</property>
</bean>
<bean id="hibernateInterceptor" class="org.springframework.orm.hibernate3.Hibernat eInterceptor">
<property name="sessionFactory" ref="mySessionFactory" />
</bean>
<bean id="matchSaveTxInterceptor"
class="org.springframework.transaction.interceptor .TransactionInterceptor" lazy-init="true">
<property name="transactionManager"><ref bean="transactionManager"/></property>
<property name="transactionAttributeSource"><ref bean="matchAllWithSave"/></property>
</bean>
<bean id="autoProxyCreator"
class="com.mokjas.extra.InterfaceAutoProxyCreator" lazy-init="true">
<property name="interceptorNames">
<list>
<idref local="matchSaveTxInterceptor"/>
<idref local="hibernateInterceptor"/>
</list>
</property>
<property name="interfaces">
<list>
<value>com.mokjas.service.ITransactionalSaveServic e</value>
</list>
</property>
</bean>
ServiceFinder.java
==============
Struts Action class:public class ServiceFinder {
public static ApplicationContext getContext(HttpServletRequest httpRequest) {
return WebApplicationContextUtils.getRequiredWebApplicati onContext(
httpRequest.getSession().getServletContext());
}
}
==============
here in my action class I am calling save* method of my service class(implemented ITransactionalSaveService)
ServiceImpl class:transferService.saveAccountTransfer(fromBean, toBean);
==============
DAO Impl class:public void saveAccountTransfer(UserBean fromBean,UserBean toBean){
// TODO Auto-generated method stub
getBankDAO().processTransfer(toBean,"To");
getBankDAO().processTransfer(fromBean,"From");
}
===========
After we execute thispublic void processTransfer(UserBean bean, String name) {
Session session=getSessionFactory().openSession();
session.saveOrUpdate(bean);
session.close();
}
session.saveOrUpdate(bean);
my hibernate is not saving the beans accordingly because there is no transaction applied. so hibernate is generating only select statement,not update statement.
Please help me to solve my issue.
Thanks,
Bunny
- 08-07-2012, 03:53 PM #2
Member
- Join Date
- Jun 2012
- Location
- Remscheid, Germany
- Posts
- 57
- Rep Power
- 0
Re: Using Spring AOP based transaction with Struts1
Isn't one of both threads enough?
- 08-07-2012, 04:19 PM #3
Moderator
- Join Date
- Apr 2009
- Posts
- 10,481
- Rep Power
- 16
Re: Using Spring AOP based transaction with Struts1
True, I'm going to close this one as I think the Spring forum is the better bet for this, though this is a bit of a cross cutting question (which is slightly ironic).
Here's a link to it in case anyone stumbles across this one.Please do not ask for code as refusal often offends.
Similar Threads
-
Struts1
By IsaacDura in forum Web FrameworksReplies: 0Last Post: 03-26-2011, 02:52 PM -
free GUI builder/designer for web page based on Spring
By albertkao in forum Web FrameworksReplies: 0Last Post: 04-24-2010, 02:38 AM -
Difference between struts1 and struts2
By radhika123 in forum Advanced JavaReplies: 1Last Post: 10-30-2008, 11:04 AM -
XML-based configuration metadata in Spring Framework
By Java Tip in forum Java TipReplies: 0Last Post: 04-01-2008, 10:45 AM -
XML-based configuration metadata in Spring Framework
By JavaBean in forum Java TipReplies: 0Last Post: 10-04-2007, 09:17 PM


LinkBack URL
About LinkBacks

Bookmarks