The pointcut tag has no wiki summary.
7
votes
4answers
4k views
Spring AOP pointcut that matches annotation on interface
this is my first post here, so I apologize in advance for any stupidity on my side.
I have a service class implemented in Java 6 / Spring 3 that needs an annotation to restrict access by role.
I ...
4
votes
3answers
397 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
412 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
503 views
AspectJ pointcut on method variable, is it possible?
I have been using AspectJ for a while and it works great on object scope fields containing annotations. I just ran into a situation where I want to annotate a variable of method scope that will work ...
3
votes
2answers
247 views
Define pointcut to capture an interface but not parent or sub interfaces
I was wondering how to define a pointcut in aspecJ the captures any method of an interface but not the methods of any parent or sub interface.
pubic interface A {
void methodA();
}
pubic interface ...
2
votes
1answer
199 views
Aspects scanning too many classes and method cache fills memory
In our application we have several (actuall many, about 30) web services. Each web service resides in its own WAR file and has its own Spring context that is initialised when application starts.
We ...
1
vote
0answers
14 views
Spring AOP pointcut not applying to abstract methods
I have the following pointcut:
@Before(value="execution(* datasync.polling.Poller+.*(..))")
public void beforePoll() {
logger.info("DOING THIS");
}
And the following abstract class:
package ...
1
vote
1answer
85 views
Make a check on AOP pointcut expression
I need to make a check in my pointcut expression like.
I have this bean:
<bean id="logConfig"
class="com.celfocus.ufe.base.logging.domains.LoggingConfiguration">
<property ...
1
vote
1answer
110 views
Spring AOP - pointcut for every method with an annotation
I am trying to define a pointcut, that would catch every method that is annotated with (i.e.) @CatchThis. This is my own annotation.
Moreover, I'd like to have access to the first argument of the ...
1
vote
1answer
87 views
Clarification around Spring-AOP pointcuts and inheritance
Given the following example classes in my.package...
public class Foo {
public void logicNotInBar() {/*code*/}
public void logicBarOverrides() {/*code*/}
}
public class Bar extends Foo {
...
1
vote
1answer
256 views
Spring AOP pointcut is not well formed
Exception in thread "main" org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'org.springframework.aop.aspectj.AspectJPointcutAdvisor#0': Instantiation of bean ...
1
vote
1answer
103 views
Add aspect to implementation class not interface
We have a class which implements several interfaces. We would like to add some pointcut for the entire class - not for a particular interface of it.
How it can be done with Spring AOP? Is it possible ...
1
vote
1answer
427 views
Getting a return value or exception from AspectJ?
I am able to get the signature and arguments from advised method calls, but I cannot figure out how to get the return values or exceptions. I'm kind of assuming that it can be done in some way using ...
1
vote
2answers
211 views
Spring AOP ignores some methods of Hessian Service
I have an Aspect with the following pointcut definition
@Pointcut("execution(public de.company.project..* *(..))")
and a spring configuration containing the following
<aop:aspectj-autoproxy ...
0
votes
1answer
54 views
How to run aspect advice for a method which is called by another method in the same class
I am having a throuble about Spring AOP. I am trying to trigger a method using aspect but the method that will trigger the aspect is also the method of the same class and aspect is not working(No ...
0
votes
1answer
53 views
How to specify single pointcut for multiple packages
I am using Aspect for logging activities in my spring mvc based application.I am using @controller annotations to define any controller in my application.I have two different controller in two ...
0
votes
1answer
60 views
using annotations in spring pointcut
I am using annotation to indicate that an advice needs to be applied to the method.
I have the two methods in an interface called IMaintenanceDAOSupport
@AuditLogging
void insert(M domainobject, ...
0
votes
1answer
41 views
Policy enforcement to add a new item - ASPECTJ
I have to enforce a policy issuing a warning if items not belonging to a particular category are being added, apart from the three which are allowed and disallowing such additions.....
So far i am ...
0
votes
1answer
244 views
Help with around advice - AspectJ pointcuts
I'm stuck again.....
i have to enforce a policy issuing a warning if items not belonging to a particular category are being added, apart from the three which are allowed and disallowing such ...
0
votes
0answers
34 views
Pointcut for only unnested methods
How can I create a pointcut that only advises calls from methods that are not nested?
So when a class runs a method, and that method calls other methods... only the method that was called directly ...
0
votes
1answer
196 views
I need a Spring AOP pointcut explanation
I have seen two variations of pointcut patterns:
This
execution(* some.package.*.*(..))
and this
execution(* some.package.* *(..))
What is the meaning of the dot (or of it absence) between the ...
0
votes
1answer
156 views
using spring aop pointcut getting error although i had added aspectjrt.jar also
Not able to solve this problem
Error :
java.lang.IllegalStateException:
ContainerBase.addChild: start:
org.apache.catalina.LifecycleException:
javax.xml.parsers.FactoryConfigurationError:
...
0
votes
1answer
100 views
AspectJ join point with simple types
Are there defined join points in arithmetics that I can catch?
Something like:
int a = 4;
int b = 2;
int c = a + b;
Can I make a pointcut that catches any one of those lines? And what context will ...