Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
3answers
332 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 ...
4
votes
2answers
884 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 ...
3
votes
3answers
371 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 ...
3
votes
2answers
103 views

Pointcuts and Aspect-Oriented Programming

How are pointcuts used in aspect-oriented programming language to add functionality into an existing program? To my understanding, from this Wikipedia article - http://en.wikipedia.org/wiki/Pointcut ...
3
votes
1answer
105 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() ...
2
votes
1answer
60 views

Using conditional join points in spring

How do we use conditional join points in spring In my requirement, the point cut has to be applied if the method name is insert OR the method name is update OR method name is delete AND the method ...
2
votes
2answers
727 views

Spring aop pointcut expression to access method return type

I have a service interface with many methods, all of which take a Request object and return a Response object. All request objects have a common ancestor and all response objects have a different ...
1
vote
2answers
34 views

Pointcut not well Formatted

What is the format problem with this pointcut? @Around("execution(* @myPackage.SafetyCritical.*(*))&& @annotation(deny)") .i forgot to add: exception is "Pointcut is not well-formed: ...
1
vote
2answers
49 views

Matching pointcuts with specific arguments

In Spring, I want an expression that matches a method with specific arguments. Right now I have this expression execution(* delete(..)) But I want to match specific arguments since there are ...
1
vote
1answer
153 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
2answers
80 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 ...
1
vote
0answers
111 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
99 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 ...
1
vote
1answer
330 views

Spring.Net public property setter pointcut

Do you know any pointcut definition in spring.net to intercept only public property setter (standard properties and auto-implement properties)? Is there a way after this to remove some property by ...
1
vote
1answer
334 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.*(..)) ...
1
vote
3answers
611 views

Please suggest some tutorial for learning pointcut expression

Please suggest some tutorial/cheatsheet for learning pointcut expression.
1
vote
1answer
145 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
0answers
59 views

Pointcut not getting triggered in Spring AOP

In our project, there is a root domain object that is extended by other objects. class abstract DomainObject { int identifier; } This is extendted by other objects like User, Role etc., Now we ...
0
votes
2answers
55 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 ...
0
votes
1answer
161 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 = ...
0
votes
1answer
135 views

Spring AOP-dynamic pointcuts

What is de purpose of CONTROLFLOWPOINTCUTS, for what purpose it is intended for, where and all it can be used? What are the advantages of dynamic pointcuts?? Explain CONTROLFLOW POINTCUT with an ...
0
votes
1answer
452 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 ...
0
votes
1answer
106 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 ...