Tagged Questions
0
votes
1answer
14 views
Most used pointcuts
Regarding AspectJ and AOP in general:
What are the most used pointcut primitives?
Are there any statistics on this?
I think it could be execution and call, is that right?
Thanks.
0
votes
1answer
52 views
Different resolution scope for Named and Anonymous pointcut annotations?
I am using AspectJ annotations and for some reason it seems that the resolution scope of pointcuts differs for a named pointcut versus an anonymous pointcut.
For example in the code below an ...
1
vote
1answer
462 views
AspectJ : Issue when combining multiple pointcuts in @Around advice
I'm a beginner in AspectJ so please guide me to resolve the issue happening as per the below approach.
@Aspect
public class TestAop {
@Pointcut("execution(public * ...
7
votes
3answers
2k views
@AspectJ pointcut for methods that override an interface method with an annotation
How can I write an aspectj pointcut that applies to method executions which override an interface method with an annotation? For example:
interface A {
@MyAnnotation void method();
}
class B ...
3
votes
3answers
2k views
exposing previous value in AspectJ set-pointcut
I have to detect fields value changes. I want to compare the previous value with the new one. I don't know the field name or its type. (More background here.) For sample given class:
package ...
1
vote
1answer
478 views
UnsupportedPointcutPrimitiveException on simple AOP example
I try to run a simple aop example in this site. I have spring aop and aspectj, aspectjweaver jars:
@Aspect
public class StringAspect {
@Pointcut("call(* String.toLowerCase())")
public void ...
1
vote
3answers
147 views
AspectJ - Is it possible to catch execution of an advice?
I have a CachingAspect which performs some simple caching on properly annotated methods using an around advice. Now, what I want to do is to trace the caching and the around advice in particular.
So ...
1
vote
2answers
151 views
Enforcing Naming Convention with aspects
I just started AspectJ in university and in one of the labs we have a question where we need to enforce a naming convention across all classes which states that all variables must not include any ...
0
votes
1answer
519 views
AspectJ Pointcut to introspect a local method code and print a variable inside local method
I am trying to write a pointcut and advice which could print a string from following method -
public CustomerDto getCustomer(Integer customerCode){
CustomerDto customerDto = ...
1
vote
0answers
231 views
About Policy Enforcement with AspectJ
I am using Aspectj for project-wide policy enforcement.
One thing I am trying to implement now is that there should be no logic in any setter methods except simple validation with Guava's ...
1
vote
1answer
176 views
Can I amend the executed SQL before execution using an AspectJ pointcut
I'm trying to add a specific piece of SQL to all SQL executed in a system using AspectJ.
I've not used AspectJ before but I believe what I need to do is create a pointcut on
call(PreparedStatement ...
3
votes
1answer
236 views
AspectJ confusion with pointcut
How can I express a point cut that finds methods only when being called from within another method, but not directly?
For example:
Foo() calls Bar() calls object.Method()
also
NotFoo() calls Bar() ...
5
votes
2answers
2k views
AspectJ: How to get pointcuts to advise classes located in other projects
This should be simple.
Question
How do you get a pointcut in one project to advise the code/classes within another project?
Context
I'm working in eclipse with two projects. For ease of ...
0
votes
1answer
1k views
AspectJ, general pointcuts without constructors
I've made a profiling method:
@Around("tld.mycompany.business.aspects.SystemArchitecture.inServiceLayer() && !tld.mycompany.business.aspects.SystemArchitecture.publicConstructor()")
public ...
1
vote
1answer
1k views
Trying to match an AspectJ pointcut signature for any methods containing a variable
I want to create a pointcut that matches any method in my Web controller that contains a ModelMap:
pointcut addMenu(ModelMap modelMap) :
execution (public String example.web.MyController.*(..)) ...
2
votes
3answers
2k views
Please suggest some tutorial for learning pointcut expression [closed]
Please suggest some tutorial/cheatsheet for learning pointcut expression.
1
vote
1answer
192 views
Is there a way to improve this pointcut?
I have come up with the following pointcut that I use for tracing method entry/exit. It's not broken and also does what I want but: 1- I find it looks clumsy or could be more elegant; and 2- I don't ...
0
votes
1answer
138 views
Using join points call(* *.*(..)), can I expose the arguments to the advice if available?
With my aspect, I track the changes on certain collections by advising certain method calls on instances of java.util.Set, notably add(Object) and remove(Object). Since the changes are not reflected ...
