bean « Transaction « Spring Q&A





1. Using both RolesAllowed and Transactional in beans    stackoverflow.com

I have some beans which contain methods which are annotated with both @RolesAllowed and @Transactional. I have one Spring config file which utilizes a BeanNameAutoProxyCreator for Security related beans and another ...

2. Starting new transaction in Spring bean    stackoverflow.com

We have:

@Transactional(propagation = Propagation.REQUIRED)
public class MyClass implementes MyInterface { ...
MyInterface has a single method: go(). When go() executes we start a new transaction which commits/rollbacks when the method is complete ...

3. In a spring bean is it possible to have a shutdown method which can use transactions?    stackoverflow.com

In the destroy method of a spring bean I want to execute some queries to clean up some stuff in the database. Spring doesn't seem to allow this by any means ...

4. If TransactionProxyFactoryBean is used for service layer bean then is there any need of transaction annotation driven in dao?    stackoverflow.com

The interface for service layer is :

EMS.java:

public interface EMS extends UserDetailsService {

    public void saveUser(User user);
}
and its implementation:
EMSImpl.java:

@Service("emsImpl")
@Transactional(readOnly=true)
public class EMSImpl implements EMS {

    private final ...

5. transactions within spring beans    stackoverflow.com

my application conatians hibernate and spring frameworks, on tamcat server and mysql. i annotated a function as transactional, and i saw that it not behaves as transacitonal method (e.g i can see ...

6. Spring Bean Hangs on Method with @Transactional    stackoverflow.com

Just a little background , I'm a new developer who has recently taken over a major project after the senior developer left the company before I could develop a full understanding ...

7. Transactions not running in a bean created via a factory    forum.springsource.org

Transactions not running in a bean created via a factory I have a factory which is a static class, instantiated via Spring Code: @Component public class CommunicationFactory implements BeanFactoryAware { // ...

8. Error creating bean with name 'transactionManager'    forum.springsource.org

Jul 21st, 2011, 09:15 AM #1 Alex1 View Profile View Forum Posts Private Message Junior Member Join Date Jul 2011 Posts 4 Error creating bean with name 'transactionManager' Hi, I'm trying ...

9. WebSphereUowTransactionManager - No bean named 'transactionManager' is defined"    forum.springsource.org

WebSphereUowTransactionManager - No bean named 'transactionManager' is defined" Hi Forum Members, I think I am missing something, I really appreciate your help in advance, I have limited time to resolve this, ...





10. Anyway to configure an external singleton bean to be part of a transaction?    forum.springsource.org

Anyway to configure an external singleton bean to be part of a transaction? Hi, I've got a class that is part of a library to which I do not have access ...

11. Calling DAOs from a session bean, transaction problem    forum.springsource.org

Calling DAOs from a session bean, transaction problem Hi, I have a service class (POJO) that uses DAOs to access database. Here is the Spring config: Code:

12. TransactionProxyFactoryBean: beans created more than once    forum.springsource.org

TransactionProxyFactoryBean: beans created more than once I have a problem with the TransactionProxyFactoryBean. It looks like he is creating my KlantService two times. This is my code.. Code: ...

13. Remotely accessible & transaction-aware beans (XA)    forum.springsource.org

Hi all, (Context:: XA transaction through Caucho remoting protocol) I have a question regarding the transaction propagation when we use Spring for remoting. In fact I would like to use POJOs ...

14. how to set hibernate.transaction.factory_class to a bean?    forum.springsource.org

how to set hibernate.transaction.factory_class to a bean? how to set hibernate.transaction.factory_class to a bean? I implement a custom connectionProvider for hibernate . I want to use it . how to config ...

15. AutoProxied bean not propagating transaction rollback    forum.springsource.org

AutoProxied bean not propagating transaction rollback I've set up auto proxying and created a TransactionInterceptor to rollback on exceptions thrown from methods named "processMessage". It's configured with the following attribute: Code: ...

16. bean state synchronization    forum.springsource.org

Hi I'm new to Spring but have a 4 years of EJB experience. In short my question is if Spring offers some kind of control over persistent bean instance synchronization? In ...





17. Having same transaction for more than one bean    forum.springsource.org

Hai all I need to have the same transaction for two or 3 bean.Like the master-detail scenario.Can anyone help me in doing this. have a nice day Aniesh U.K

18. Transactions working on one bean, but not the other    forum.springsource.org

Transactions working on one bean, but not the other I am testing annotation-driven transactions in combination with Hibernate 2.0 m1 (and Hibernate 3.1, PostgreSQL 7.4.7, Tomcat 5.5). This seems to work ...

19. Transaction between session bean ans spring object    forum.springsource.org

20. how to test the bean which using JTA?    forum.springsource.org

Can you be more specific? If you want functional tests see the org.springframework.test package and AbstractTransactionalSpringContextTests. Instead of using a local TM you can use a JTA-based implementation. Note however, that ...

21.  transaction-manager property cannot see non-local beans    forum.springsource.org

Jun 29th, 2006, 07:19 AM #1 b-side View Profile View Forum Posts Private Message Visit Homepage Junior Member Join Date Jun 2006 Location Mons, Belgium Posts 2 transaction-manager property cannot ...

22. SPring2 (RC3) & JSF: how to synchronize beans with same scope?    forum.springsource.org

SPring2 (RC3) & JSF: how to synchronize beans with same scope? Hi, I am a big fan of the scoped beans of Spring2. I had hoped it would set Spring in ...

23. Error registering bean with name 'transactionManager' defined in ServletContext resou    forum.springsource.org

Error registering bean with name 'transactionManager' defined in ServletContext resou Hi from newbie I'm having this error: org.apache.jasper.JasperException: javax.servlet.jsp.JspException: javax.faces.FacesException: javax.faces.el.EvaluationException: javax.faces.FacesException: javax.faces.FacesException: Can't instantiate class: pkg.bean.ServiceLocatorBean'.. class pkg.bean.ServiceLocatorBean : org.springframework.beans.factory.BeanDefinitionSt ...

24. Transactions for non-spring-wired beans    forum.springsource.org

Is there any way to use Spring's declarative transactions for POJOs that are not Spring-managed - I mean declared in the context xml and accessed through getBean()? I have a neat ...

25. Does it matter if inner bean is used on for TransactionProxyFactoryBean?    forum.springsource.org

Does it matter if inner bean is used on for TransactionProxyFactoryBean? I'm wondering if using an inner bean for the TransactionProxyFactoryBean target is bad because it makes it a prototype instead ...

26. Sample Simple - optimistic locking and bean's version on contact list not updated    forum.springsource.org

Sample Simple - optimistic locking and bean's version on contact list not updated Hello, I modified Sample Simple example (Contact book) to use EJB3 persistence with optimistic locking (I added int ...

27. ClassCastException on TransactionProxyFactoryBean using prototype beans    forum.springsource.org

ClassCastException on TransactionProxyFactoryBean using prototype beans I'm trying to use a non-singleton (prototype) bean with transactional behavior. I have set singleton="false" for my bean, but with a call getBean I get ...

28. How to add Transaction advice to a Session scoped bean    forum.springsource.org

HTML Code: java.lang.ClassCastException: $Proxy0 at com.company.webClient.service.ExampleManagerImpl$$FastClassByCGLIB$$19ab4c9.invoke() at net.sf.cglib.proxy.MethodProxy.invoke(MethodProxy.java:149) at org.springframework.aop.framework.Cglib2AopProxy$CglibMethodInvocation.invokeJoinpoint(Cglib2AopProxy.java:674) at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:154) at org.springframework.aop.support.DelegatingIntroductionInterceptor.doProceed(DelegatingIntroductionInterceptor.java:126) at org.springframework.aop.support.DelegatingIntroductionInterceptor.invoke(DelegatingIntroductionInterceptor.java:114) at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:176) at org.springframework.aop.framework.Cglib2AopProxy$DynamicAdvisedInterceptor.intercept(Cglib2AopProxy.java:615) at com.company.webClient.service.ExampleManagerImpl$$EnhancerByCGLIB$$fe3d578e.someMethod() at com.company.webClient.app.ExampleController.handleRequestInternal(ExampleController.java:23) at org.springframework.web.servlet.mvc.AbstractController.handleRequest(AbstractController.java:153) at org.springframework.web.servlet.mvc.SimpleControllerHandlerAdapter.handle(SimpleControllerHandlerAdapter.java:45) at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:820) at ...

29. transaction scope and service beans    forum.springsource.org

transaction scope and service beans I have a struts action that calls two service beans' multiple methods (note: and the service beans call the daos...just clarifying): public class MyAction extends Action ...

30. AOP declarative transactions with Groovy bean in Spring 2.0.3    forum.springsource.org

I have written a blog on how to use AOP declarative transactions with Groovy bean which can avoid an AspectJ Exception on Groovy script bean. The problem is original raised by ...

31. Transaction notifications in beans ?    forum.springsource.org

Transaction notifications in beans ? Hi, I'm new to Spring's Transactions and I have a question. I want to build a service (bean) that will participate in a transaction, but I ...

32. PropertyNotFoundException at @Transactional annotated beans    forum.springsource.org

Hello, I have an application using Spring and JSF. JSF accesses to Spring's beans using the DelegatingVariableResolver. I am getting PropertyNotFoundException when try to reference @Transactionnal annotated bean from JSF page. ...

33. Creating a prototype for a transaction enabled bean.    forum.springsource.org

Creating a prototype for a transaction enabled bean. Hi All, I am trying to implement multithreading in a non-web/batch part of my application. I have classes that participate in Spring transactions. ...

34. New transaction within the same bean    forum.springsource.org

New transaction within the same bean Hi all, under certain circumstances, when we are in a bean method (say method1()), we have to call another method (say method2()) within the same ...

35. Multiple transaction advice on the same bean method    forum.springsource.org

Multiple transaction advice on the same bean method We are utilizing multiple transactional resources (DataSource and JMS resources) in an environment where there is no true JtaTransactionManager implementation. I want to ...

36. Problems using DWR with beans wrapped in transactions by AOP    forum.springsource.org

Problems using DWR with beans wrapped in transactions by AOP We have a project for SAP AS 6.4. It doesn't support Java 5 ( so we used aop for transactions. Now ...

37. Singleton bean and Synchronization Needed?    forum.springsource.org

Singleton bean and Synchronization Needed? Hello: I am using Spring in my web service application. I am trying use this example to clarify some concepts here... Say I have defined a ...

38. TransactionProxyFactoryBean and Bean Scope difficulties    forum.springsource.org

TransactionProxyFactoryBean and Bean Scope difficulties Hi folks, Just a quick question. I am trying to do some transaction management. I have the typical set up you see often in the applicationContext.xml ...

39. Decalrative Transactions Management in JavaConfig Beans    forum.springsource.org

Decalrative Transactions Management in JavaConfig Beans Hi, Chris! I observed very strange behavior of beans, which are configured in @Configuration class - they ignore @Transactional annotations. Scenario: I have DAO, which ...

40. Spring bean init-method and @Transactional    forum.springsource.org

Spring bean init-method and @Transactional Hi I've got a bunch of service objects that all have init-methods that are called when initializing the bean. I'm using Hibernate with LocalSessionFactoryBean and HibernateTransactionManager. ...

41. Transactions for runtime bean definitions    forum.springsource.org

I have a jdbc dao item writer class that should be adviced by the transaction advice to work in the same transaction that created by the ItemOrientedStep, Configuring this dao bean ...

42. Transactions for runtime bean definitions    forum.springsource.org

I have a jdbc dao item writer class that should be adviced by a transaction advice, Configuring this dao bean in the spring config xml file works fine while creating the ...

43. Transactions for runtime bean definitions    forum.springsource.org

I have a jdbc dao item writer class that should be adviced by a transaction advice, Configuring this dao bean in the spring config xml file works fine while creating the ...

44. Transactions for runtime bean definitions    forum.springsource.org

I have a jdbc dao item writer class that should be adviced by a transaction advice, Configuring this dao bean in the spring config xml file works fine while creating the ...

45. Transactions for runtime bean definitions    forum.springsource.org

I have a jdbc dao item writer class that should be adviced by a transaction advice, Configuring this dao bean in the spring config xml file works fine while creating the ...

46. @Transactional not working for sessio-scoped beans    forum.springsource.org

Jul 24th, 2008, 05:27 PM #1 malachii View Profile View Forum Posts Private Message Junior Member Join Date Aug 2007 Posts 17 @Transactional not working for sessio-scoped beans Hi, In a ...

47. Trouble with session-scoped beans and transactions    forum.springsource.org

Trouble with session-scoped beans and transactions Hello all, Basically I'm having problems with my @Transactional definition and the on-destroy method of my session-scoped bean. In general, I'm trying to do some ...

48. Spring 2.5 Transaction - Cannot resolve reference to bean 'transactionManager'    forum.springsource.org

New to Spring. Using Spring 2.5 to create example of using Transaction. Not using any database connection. But trying to see how to exercise Transaction. Any help will be appreciated. Getting ...

49. Transaction AOP on an advice bean doesn't work    forum.springsource.org

Transaction AOP on an advice bean doesn't work I have transaction advice declared on methods of sessionManager: Code:

50. Multiple EntityManagerFactory beans with JTA transaction manager    forum.springsource.org

Multiple EntityManagerFactory beans with JTA transaction manager Hi, I am trying to configure two entityManagerFactories in a single context file. While one of these is a bean managed transaction mode, the ...

51. Integration testing transactional beans with Propagation.REQUIRES_NEW    forum.springsource.org

Integration testing transactional beans with Propagation.REQUIRES_NEW We have some Spring bean components that necessarily need to commit their unit of work indepedantly of the larger business transaction. We mark the service ...

52. Testing transactional beans with Propagation.REQUIRES_NEW    forum.springsource.org

Testing transactional beans with Propagation.REQUIRES_NEW Apologies for the cross posting from the core container forum, but I received no replies there and on second look, though it might be more relevant ...

53. Error creating bean with name 'transactionManager' defined in ServletContext resource    forum.springsource.org

Error creating bean with name 'transactionManager' defined in ServletContext resource Hi, I am facing a problem while deploying AOP logging feature in the code. In my applicationContext.xml, I am using a ...

54. Cannot resolve reference to bean 'txManager' while setting bean property 'transaction    forum.springsource.org

Cannot resolve reference to bean 'txManager' while setting bean property 'transaction This is my problem: org.springframework.beans.factory.BeanCreationExce ption: Error creating bean with name 'org.springframework.transaction.interceptor.Trans actionInterceptor#0': Cannot resolve reference to bean 'txManager' while ...

55. @Resource referencing a transactional @Service Bean    forum.springsource.org

@Resource referencing a transactional @Service Bean Hi People, I have a service class annotated with @Service. In that I class I have a method annoated with @Transactional. So, nothing special and ...

56. Does @Transactional work when I instantiate the bean myself?    forum.springsource.org

Does @Transactional work when I instantiate the bean myself? Hi I basically want to junit test the transactional behaviour of a service class that is marked @Transactional. Everything works just fine ...

57. Error creating bean with name 'transactionManager'    forum.springsource.org

Oct 13th, 2009, 04:30 PM #1 tariqahsan View Profile View Forum Posts Private Message Member Join Date Apr 2009 Posts 85 Error creating bean with name 'transactionManager' Getting this error - ...

58. TransactionProxyFactoryBean only been applied on inner bean    forum.springsource.org

TransactionProxyFactoryBean only being applied on inner bean Hi There, I am a bit of a Spring n00b and am looking for an explantaion of what seems like strange behaviour to me. ...

59. Unable to share transaction between spring beans and stateless session beans.    forum.springsource.org

Dec 23rd, 2009, 01:33 AM #1 duanes View Profile View Forum Posts Private Message Junior Member Join Date Dec 2009 Posts 1 Unable to share transaction between spring beans and stateless ...

60. lock access to a bean method    forum.springsource.org

61. Why transactions not start when bean definitions moved to -servlet.xml    forum.springsource.org

Nov 11th, 2010, 10:54 PM #1 GSiri View Profile View Forum Posts Private Message Junior Member Join Date Nov 2010 Posts 5 Why transactions not start when bean definitions moved to ...