Tagged Questions

Spring AOP is the Spring Framework's version of AOP, implemented in pure Java and using the @AspectJ annotations from the AspectJ project. Spring AOP works through dynamic JDK or CGLib Proxies.

learn more… | top users | synonyms

9
votes
3answers
819 views

AspectJ Load time weaver doesn't detect all classes

I am using Spring's declarative transactions (the @Transactional annotation) in "aspectj" mode. It works in most cases exactly like it should, but for one it doesn't. We can call it Lang (because ...
8
votes
3answers
2k views

Is using Spring AOP for logging a good idea?

I'm reading up on Spring at the moment and one of the examples used for a use of AOP is logging the start and end of method calls. I've also read that using AOP can impact performance. Is using ...
8
votes
4answers
4k views

@AspectJ pointcut for all methods of a class with specific annotation

I want to monitor all public methods of all Classes with specified annotation (say @Monitor) (note: Annotation is at class level). What could be a possible pointcut for this? Note: I am using @AspectJ ...
7
votes
3answers
2k views

Spring @Transaction method call by the method within the same class, does not work?

I 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 a caller method within the ...
6
votes
3answers
2k views

annotation equivalent of <aop:scoped-proxy>

I am moving from an xml config to annoations. i want to convert a session scoped bean that is <aop:scoped-proxy> can this be done with annotations, and if not, what can i do to still keep ...
5
votes
1answer
358 views

How do I apply AOP advice to a ConstraintValidator<A,T> in Spring?

I am attempting to write my own Validator (as per the JSR-303 specification) under Spring 3.0.x. I annotated the isValid(Serializable, CosntraintValidatorContext) method with @Transactional, but it ...
5
votes
1answer
284 views

Autowiring HibernateInterceptor as Advice

I am trying to use HibernateInterceptor as a Advice and I am trying to autowire it. The code is as follows, @Aspect public class InterceptorAdvice{ private HibernateInterceptor ...
5
votes
1answer
3k views

Spring AOP AfterThrowing vs. Around Advice

when trying to implement an Aspect, that is responsible for catching and logging a certain type of error, I initially thought this would be possible using the AfterThrowing advice. However it seems ...
5
votes
4answers
6k views

Implementing Audit Trail- Spring AOP vs.Hibernate Interceptor vs DB Trigger

I found couple of discussion threads on this- but nothing which brought a comparison of all three mechanism under one thread. So here is my question... I need to audit DB changes- ...
4
votes
2answers
49 views

Spring AOP creates extra bean

I 'm playing with Spring AOP. Here is a simple class public class CModel extends Car { private double torqueMeasure = 1; public CModel() { System.out.println(" C-Model ...
4
votes
1answer
80 views

Does order matter while injecting properties in ProxyFactoryBean

I am trying to inject the aspects in a service. For this service I am creating a proxied object using classic way. I have written a bean- baseProxy of type (ProxyFactoryBean) which contains a list of ...
4
votes
5answers
792 views

Why Spring AOP is not weaving external jars at runtime?

I have a java application build upon Spring 3. This project has another jar as a dependency. This dependency contains a @org.aspectj.lang.annotation.Aspect class (lets say, ...
4
votes
4answers
425 views

Any mature AOP library to use in .Net world?

The library should at least compared to AspectJ, any?
4
votes
4answers
876 views

Spring AOP slow startup time

We're using Spring (3.0.5) AOP with @AspectJ style annotations and <aop:aspectj-autoproxy/> . We use it for transactions, auditing, profiling etc. It works fine except that the startup time of ...
4
votes
3answers
3k views

Spring AOP Pointcut syntax for AND, OR and NOT

I'm having trouble with a pointcut definition in Spring (version 2.5.6). I'm trying to intercept all method calls to a class, except for a given method (someMethod in the example below). ...
3
votes
1answer
78 views

Spring @Transactional v Spring Security @Secured inconsistent behaviour

Spring documentation advises putting the @Transactional annotation on the concrete class/method rather than the interface. The reason for this has been covered on Stack Overflow many times, eg: ...
3
votes
1answer
133 views

Spring aop intercepting calls from within the same service class

I have a same scenario as mentioned in Spring @Transaction method call by the method within the same class, does not work? I was referring to answer #1 which i thought would work for my simple pojo ...
3
votes
2answers
111 views

Spring Aspect fails when join point is invoked in new thread

I'm using Spring 3.0.5 with an Around aspect. The @Around aspect works perfectly. The AOP expression targets the interfaces of a bunch of beans. The aspect executes some logic before and after the ...
3
votes
1answer
186 views

AOP pointcut expression for any public method of a service

What is the simplest pointcut expression that would intercept all public methods of all beans annotated with @Service? For instance, I expect it to affect both public methods of this bean: @Service ...
3
votes
2answers
112 views

Class Hierarchy problem using @Transactional

Project setup: Spring 3.0.5 / JPA 2 / Hibernate / @Transactional We work with several different Data Sources (and hence different transaction managers), but have common Service base classes, as a lot ...
3
votes
2answers
483 views

Spring AOP: Disadvantages when using it - Spring Features which use Spring AOP do not have this disadvantages?

Im working with the Spring Framework 3.0.5 and Spring Security 3.0.5 and Ive got questions to the aspect orientated programming. At the moment Im trying to figure out the disadvantages and advantages ...
3
votes
3answers
214 views

Whats the best way to inject same instance of service in service for Spring AOP

I'va a ServiceImpl with is annotated with @Service stereotype of Spring and have two methods in it each one is annotated with custom annotations which are intercepted by Spring. @Service public ...
3
votes
2answers
767 views

Spring AOP: get access to argument names

I'm using Spring 3.x, Java 6. I have an @Around aspect with the following joinpoint: @Around("execution(public * my.service.*.*Connector.*(..))") So, I'm basically interested in intercepting all ...
3
votes
1answer
1k views

injecting mock beans into spring context for testing

I know similar questions have been asked, e.g. here, but having done a search, I've come upon a solution I'm much happier with here My only problem however, is that I'm not sure how to implement this ...
3
votes
1answer
140 views

Spring AOP with anonymous inner classes

I use some anonymous inner classes like foo(){ A a = new A(arg1){ //it isn't spring bean yet public Smt bar(){ return new Smt(); } } } And now I ...
3
votes
1answer
558 views

spring tx:annotation-driven ignores mode when load time weaving is enabled in tomcat

I am trying to configure transactions using annotations. When I am running in an environment with load time weaving enabled (e.g., tc server or tomcat with the weaving classloader), it seems that my ...
3
votes
2answers
238 views

Invoke proxy AOP by calling method within the bean

lets say the I have got a bean called with two methods 'foo' and 'goo' and 'goo' is marked with AOP interception call. is it possible to write any piece of code inside 'foo' in order to invoke 'goo' ...
3
votes
2answers
3k views

Spring MVC Application - How do I set a session scoped bean value

In my application I need to gather information on one screen and then display it on the next. I have selected to store this information in a bean with a scope set as session ( it will be used in ...
3
votes
5answers
2k views

Do method profiling ( Basic execution time ) With Spring AOP

I'm looking for a feature or software, who will allow me to easily profile my method execution time. And choose what to profile by package filter. I know, it's profiler 101. I use the TPTP profiler. ...
2
votes
2answers
41 views

How can I run common code for most requests in my Spring MVC Web App?

i.e. I have various URLs mapped using Spring MVC RequestMapping @RequestMapping(value = "/mystuff", method = RequestMethod.GET) @RequestMapping(value = "/mystuff/dsf", method = RequestMethod.GET) ...
2
votes
2answers
88 views

Spring AOP: Annotation pointcut not causing advice to execute

I am using Spring AOP (with AspectJ annotation style support) and want to execute code if a method is annotated with a specific annotation (WsTransaction). Here is my aspect: @Aspect @Component ...
2
votes
2answers
55 views

Spring AOP and Exception Intercepting

I'm trying to configure Spring so that it executes advice when a specific exception subclass (MyTestException) is thrown: public class MyTestExceptionInterceptor implements ThrowsAdvice { public ...
2
votes
1answer
60 views

Spring AOP - How to prevent derived classes from being targeted

I have a base class with several derived classes that extend it. I want to restrict my Spring AOP Aspect to the superclass only, so that the AOP Proxy would be created for it only and not for the ...
2
votes
1answer
114 views

Aop Annotation at Spring Controllers Doesn't Work

I have made an annotation for aop. When I use it at any method rather than controller methods it works well. However when I use it at my controller's methods my controller stops working. It starts to ...
2
votes
3answers
73 views

How to test rollback is working as expected?

I am trying to write an integration/unit test where an exception is applied to a DAO after a save has been performed - in order to validate the rollback behaviour. My thoughts were to create a Spring ...
2
votes
2answers
44 views

How do I write useful unit/integration tests when using Spring AOP and @Transactional?

I have a logging aspect defined around a particular service. I am using Spring AOP and advising a number of service methods in order to log specific application events related to those method calls. ...
2
votes
1answer
73 views

Can we log inside a method using AOP?

I want to log some statements in my method using AOP. I am able to define the pointcuts, advice for method starting, ending, exception scenarios. Can we log in between the method at some point ...
2
votes
2answers
111 views

Spring AOP: advice is not triggered

Trying to design simple aspect,that will print word "logg" to console,when any of public methods executed. aspect: @Aspect public class LoggingAspect { @Pointcut("execution(public * *(..))") ...
2
votes
2answers
313 views

Mixing JDK and CGLIB proxies within Spring

I have an application running with Spring, and I'm using AOP in some places. Since I want to use the @Transactional annotation at interface level, I have to allow Spring to create JDK proxies. So, I ...
2
votes
2answers
65 views

Get AOP proxy from the object itself

Is possible to get the proxy of a given object in Spring? I need to call a function of a subclass. But, obviously, when I do a direct call, the aspects aren't applied. Here's an example: public class ...
2
votes
2answers
260 views

Spring 3.0 TransactionProxyFactoryBean preInterceptors AfterReturningAdvice not working

I have a requirement to log business activities that can also map to the audit trail data generated. I use Hibernate envers as the audit trail mechanism. The way I have implemented the activities log ...
2
votes
1answer
212 views

AOP expression problem

I need to do few things before any method on org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean getting called. Hence I'm using an expression @Around("execution. ...
2
votes
1answer
370 views

Spring AOP Logging Interceptor and JAXB issue

I am trying to implement logging aspect into my application. This is the first time I am attempting AOP, so please let me know if I am missing something obvious. In order to achieve weaving external ...
2
votes
1answer
53 views

Does @Transactional open a Session and binds it?

If I annotate a method that is executed in a thread with @Transactional, will a Session be created and bound to the thread?
2
votes
1answer
148 views

injected instance variables are null on aspect execution

I have this odd problem with Spring AOP and I am hoping someone can shed some light on it. I am using CGLIB proxies and when I execute the following aspect i get a null pointer: @Aspect @Component ...
2
votes
1answer
303 views

Spring AOP: Aspect triggering when configuration is in Servlet context, but not application context?

I'm using Spring 3.0.x with Spring AOP. So, I have the following Aspect: @Aspect public class TestAspect { @Pointcut(value="@annotation(Bar)", argNames="Bar") public void pointCutMethod(Bar ...
2
votes
4answers
102 views

Are Annotations generally realized with AOP and can they “do” Depedency Injection?

How are annotations in Spring Framework realized? Are they realized by using Dependency Injection or Aspect Oriented Programming? I thought they use AOP, well, because something annotated will do ...
2
votes
1answer
231 views

Custom Shortcut Annotations for @Transactional not working

I am trying to create custom annotations in order to shortcut, just as referenced in the documentation: @Target({ElementType.METHOD, ElementType.TYPE}) @Retention(RetentionPolicy.RUNTIME) ...
2
votes
2answers
1k views

Spring 3 MVC @Controller with AOP interceptors?

Anyone knows why apparently it is not possible to use AOP with annotated MVC Controllers? (see Post). I have a @Controller that stops working as soon as I add a pointcut to it. The problem is not that ...
2
votes
3answers
338 views

Make object spring managed

How can I get an already existing object spring managed? I would like to hook it up to Springs AoP capabilities using aspectj. I know this to be a challenge since Spring AoP uses dynamic proxies which ...

1 2 3 4 5