1. Wicket with Spring declarative transaction stackoverflow.comIt is possible to use the Spring Framework's @Transactional support outside of a Spring container. In reference documentation is chapter about AspectJ aspect. I'm trying to use it in my ... |
2. Applying additional aspectj around advice to a spring transactional method stackoverflow.comI have a spring 2.5 + hibernate webapp with transaction annotations and everything works fine. I now want to add a fairly basic aspect with 'around' advice and apply it to my ... |
3. Spring Optimistic Locking:How to retry transactional method till commit is successful stackoverflow.comI use Spring 2.5 and Hibernate JPA implementation with Java and "container" managed Transactions. I have a "after user commit" method that updates data in background and need to be committed ... |
4. Spring @Transaction method call by the method within the same class, does not work? stackoverflow.comI am new to Spring Transaction. Some thing that I found really odd, probably I did understand this properly. I wanted to have a transactional around method level and I have ... |
5. @Transactional on aspect advice possible? stackoverflow.comCan I apply the @Transactional tag to an aspect advice? I'm trying to wrap all calls to the service layer (com.mycompany.app.myapp.service.*) in a transaction using aspects. My aspect is ... |
6. Custom Shortcut Annotations for @Transactional not working stackoverflow.comI am trying to create custom annotations in order to shortcut, just as referenced in the documentation:
|
7. Nothing was stored in database when mode=aspectj stackoverflow.comI build an application which use Hibernate JPA2 + Spring. I have problem with transaction. I'm using declarative transaction in my POJO classes. In context config I have next line:
|
8. Spring Annotation driver Transaction with AspectJ problem stackoverflow.comi am using AspectJ compile time weaving and spring 3.O. and Hibernate 3.0...AspectJ weaving is working fine for simple things like logging but this is not working correctly for Transaction
|
9. No Transaction Applied when using AspectJ with iBatis, Spring stackoverflow.comI am using iBatis 2.3.4 being called by an Axis 2 web service. I am using AspectJ weaving during the build. I have the following Spring application context:
|
10. org.hibernate.HibernateException: load is not valid without active transaction stackoverflow.comI am getting the following error while load a user data.
I am using AspectJ compile time weaving and spring 3.O. and Hibernate 3.0
Below is ... |
11. Spring @transactional behaving strangely with mode=aspectj stackoverflow.comI've been trying to get Spring transactions working properly in my application for days, and now I have nowhere to turn but to the community. Thanks in advance for your help. My ... |
12. Null pointer exception for request scoped bean using AspectJ-style Spring AOP (@Around advising an @Transactional webservice method) stackoverflow.comI am using Spring 3.1.0.RC1. I have an Apache CXF based web service. I am trying to advise each @Transactional annotated service method. I have an aspect with some Around ... |
13. Transactions with aspectj on Virgo forum.springsource.orgTransactions with aspectj on Virgo Hello everyone Our OSGi based application builds on Virgo 2.1.0, Spring 3.0.5, Eclipselink 2.2 and JPA 2. We have separate bundles for the domain classes, the ... |
14. AspectJ: set @Transactional last forum.springsource.orgAspectJ: set @Transactional last Hi, I use AspectJ compile-time-weaving to weave Spring's @Transactional to my service methods. Furthermore I weave an own aspect to handle Exceptions and logging (with an own ... |
15. Spring @transactional behaving strangely with mode=aspectj forum.springsource.orgSpring @transactional behaving strangely with mode=aspectj I've been trying to get Spring transactions working properly in my application for days, and now I have nowhere to turn but to the community. ... |
16. Using AspectJ for the declartive transaction forum.springsource.orgHi All: Can someone have an example of using AspectJ for the declartive transaction in spring .I am trying to see whether we can use AspectJ instead of Spring AOP for ... |
17. AspectJ, Spring AOP and transaction annotations forum.springsource.orgAspectJ, Spring AOP and transaction annotations Hello, Im using Spring 2.0-m3, Hibernate 3.1.1 and AspectJ 5 My app layers are : Web (Spring MVC) with OpenSessionInViewFilter -> Services -> DAOs All ... |
18. AspectJ Transactional vs. |
19. @Transactional annotation with Aspectj LTW forum.springsource.org@Transactional annotation with Aspectj LTW Hi, When using @Transactional annotation with LTW (Spring 2rc3 and Hibernate transaction manager) I am getting the following stack trace ** Exception 1 of 1 has ... |
20. Are @Transactional semantics the same when using Spring AOP and AspectJ AOP ? forum.springsource.orgAre @Transactional semantics the same when using Spring AOP and AspectJ AOP ? Hi, After investigating some crash issues on a webapp init that was mysteriously calling TransactionAspectSupport:createTransactionIfNecess ary (NullPointerException on ... |
21. ReflectionWorldException with transactionManager & AspectJ forum.springsource.orgReflectionWorldException with txManager & AspectJ (with JBoss) I'm trying to add AspectJ capabalities into my spring(2.0.2)-JBoss(4.05) application and have some problems. when the application is started i get the following exception: ... |
22. JDK 1.4 + AspectJ + self-invocation + transaction forum.springsource.orgJDK 1.4 + AspectJ + self-invocation + transaction Hi. I try to use declarative transaction management with spring. In applicationContext.xml, i have define: |
23. @Transactional + AspectJ -> Problem forum.springsource.orgAug 4th, 2007, 01:21 AM #1 vijaynairis View Profile View Forum Posts Private Message Senior Member Join Date Dec 2006 Posts 108 @Transactional + AspectJ -> Problem Hi, Thanks for the ... |
24. @Transactional and aspectj CTW not working forum.springsource.org@Transactional and aspectj CTW not working I'm Compile Time weaving the @Transactional advice using native AspectJ compilation but no runtime method interception is occurring! I follow the steps outlined in the ... |
25. Spring 2.5.5 / Tx-annotation aspectj: JPA error - no transaction is currently active forum.springsource.orgSpring 2.5.5 / Tx-annotation aspectj: JPA error - no transaction is currently active Hi, I have an issue with aspectj enabled annotated transactions. In my use case I have an operation ... |
26. AspectJ and Transaction problem (works with Java5, breaks in Java6) forum.springsource.orgSep 11th, 2008, 04:11 AM #1 oliver3 View Profile View Forum Posts Private Message Junior Member Join Date Sep 2008 Posts 1 AspectJ and Transaction problem (works with Java5, breaks in ... |
27. Confused about AspectJ and @Transactional forum.springsource.orgConfused about AspectJ and @Transactional In the spring documentation it is stated under section '9.5.9. Using @Transactional with AspectJ' that "The aspect must also be configured with a transaction manager." and ... |
28. @Transactional - AspectJ - afterPropertiesSet forum.springsource.org@Transactional on init methods don't work because they are called BEFORE the creation of (transactional) proxies. If you want to get around this, implement BeanFactoryAware (or ApplicationContextAware) and do a lookup ... |