The pointcut tag has no wiki summary.
0
votes
1answer
28 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
31 views
How can I make this @Pointcut expression work?
I'm really having problem in advicing methods with pointcuts expressions.
I have the following configuration:
Spring 3.1.2.RELEASE
pom.xml
<dependency>
...
0
votes
2answers
41 views
AspectJ pointcut for constructor using java.lang.reflection
The following example is a reduction of the real problem in that it tries to simplify is as much as possible.
I have a java interface, and several objects that implement that interface, like:
public ...
0
votes
2answers
50 views
How to ensure order advice for two point cuts matching the same join point in Aspectj and AOP
I'm planning on using Spring Security using Spring AOP. It will have it's own point cuts for all public methods on controller classes. The methods will be picked out by class name and public method, ...
2
votes
3answers
287 views
Spring AOP: What's the difference between JoinPoint and PointCut ?
I'm learning Aspect Oriented Programming concepts and Spring AOP. I'm failing to understand the difference between a Pointcut and a Joinpoint - both of them seem to be the same for me. A Pointcut is ...
0
votes
1answer
84 views
Access private fields in aspectj
I am trying to get the name of the private field of an object. When i use the same point-cut for the public fields of my package it works just right. My aspect is set to privileged. I want the fields ...
0
votes
2answers
49 views
Legacy Spring application - what does the pointcut value mean?
I have "inherited" an old legacy Spring application. Currently it is using Spring 2.5 (just upgraded it once), and am looking to further upgrade it to Spring 3.
I understand most of the application ...
0
votes
1answer
904 views
java.lang.IllegalArgumentException: error at ::0 can't find referenced pointcut
I'm really very new to Spring AOP. In my application, I had configured HiddenHttpMethodFilter that converts method parameters into HTTP methods and enables Spring to handle other HTTP methods like ...
0
votes
1answer
433 views
A simple pointcut expression in Spring
I'm using Spring security 3.2.0 with the same version of the Spring framework. Spring security works well in my project. In order to protect methods in my DAO classes (and others), I want to use the ...
0
votes
0answers
88 views
AspectJ Pointcut expression to intercept enum methods
Using AspectJ, I want to intercept every toString() invocation on an enum construct.
For example, Assuming GridVisible is an enum that does NOT implement toString():
GridVisible gv = GridVisible.FE;
...
0
votes
0answers
64 views
Why am I losing my @PathVariable if my Controller method is intercepted by @AfterReturning?
My code is as follows:
@Controller
public interface SomeController {
@RequestMapping("/{arg}")
public ModelAndView someMethod(String arg);
}
@Component
public class SomeControllerImpl {
...
2
votes
1answer
105 views
Aspectj matching pointcut whilst not caring about method-level annotation parameters
I have stumped myself with a problem involving Aspectj. What I am looking to do is have an "after() throwing" match against a call annotated with a method-level annotation.
@MyAnnotation
public ...
0
votes
2answers
79 views
How to modify the attributes of a returned object using AspectJ?
I have a class that looks like follows (from Spring Roo DataOnDemand) which returns a new transient (not persisted) object for use in unit testing. This is what the code looks like after we do a ...
2
votes
2answers
100 views
AspectJ expession '@within' doesn't effect on concrete class which doesn't have public members
Here are my sample classes:
public abstract class AbstractAgent {
public void count(List<Movie> movies) {
sum(movies);
}
protected abstract void sum(List<Movie> ...
0
votes
0answers
73 views
aspectj method not found error
Hi i have written an aspect piontcut and advice method, and i exported the project as jar with aspectj support from my WASDIE 5.
I have an ear file which will use this jar. Jar is moved to server ...
1
vote
1answer
1k views
AspectJ expression gives formal unbound in pointcut error
I have within aspectJ the expression:
@Pointcut("within(com.param.cpms.dao.impl.ProjectMetaDaoImpl)")
public void daoExceptionHandle() {
}
At Spring 3.0 startup, I am getting the following error :
...
3
votes
1answer
89 views
How to avoid hitting pointcut twice when the cut is on a superclass, but a derived class overrides?
It's tough to make a concise title for this.
Anyway, imagine I have a parent class:
public class Shape {
public Dimensions getDimensions() {
// Does some generic stuff.
...
1
vote
3answers
1k views
How to define an aspectj pointcut that picks out all constructors of a class that has a specific annotation?
Here is the annotation:
@Target(value = ElementType.TYPE)
@Retention(value = RetentionPolicy.RUNTIME)
@Inherited
public @interface MyAnnotation {
String name();
}
Here is one annotated class:
...
0
votes
2answers
251 views
How to intercept proceed() in another AspectJ aspect?
I have a situation as follows: I have a LoggingAspect with several pointcuts matching specific method executions in my main application. The corresponding advice bodies basically all look similar, ...
0
votes
2answers
508 views
Two Pointcuts for two methods with the same name but different arguments
Hei.
I'm writing an @Aspect for the logging of my persistence layer.
First some code which may show the error to an experienced developer ;)
/** Interface of the class to observe. */
public ...
4
votes
2answers
668 views
AspectJ pointcut expression match parameter annotations at any position
I'm trying to define a pointcut expression to match methods which contain a parameter annotated with a specific annotation, regardless of what position the parameter is in. In my case I'm looking for ...
0
votes
0answers
73 views
Eclipse AspectJ special syntax highlighting in source code if pointcut matches
I just got into a big project that makes use of aspects. Aspects doesn't make it easier to understand since a pointcut definition could match on any method. Is there a plug-in out there for eclipse ...
2
votes
0answers
103 views
Spring AOP advice - conditional in debug mode [closed]
I want to use the AOP advice/pointcuts, etc in debug mode only (as a master global config: e.g. when log4j is in DEBUG threshold).
How can I do this in the application.xml config or elsewhere?
I am ...
1
vote
1answer
92 views
Abstract types in pointcuts
I'd like to intercept method calls with a certain signature with an Aspect.
My pointcut should look something like this:
execution(public Result * (Input))"
But Result and Input are abstract.
...
0
votes
1answer
210 views
is it possible to pointcut on a third party class and how?
I use spring and ibatis in my project, here is my question.
I want to trace all changes like add/update/delete and log them into table T_TRACE_LOG. The table has columns: operation_type, ...
3
votes
1answer
139 views
How to match methods which do not have a specific Annotation in AspectJ
I have a custom Annotation called @Invisible.
Now I want to match all calls an a method which DOESN'T HAVE an @Invisible Annotation. How can i do this? (with annotation style development)
My first ...
0
votes
0answers
265 views
Pointcut for all methods of a class including inherited ones
I am playing around with aop and aspectj and discovered an (for me) unexpected behavior.
In the aspectj-docs I found the following example-pointcut:
execution(public void Middle.*())
for the ...
0
votes
2answers
139 views
Pointcut confusion with inheritance
I am confused by writing a pointcut that matches all executions of a method. I tried the pointcut that should match all method-executions of class Alpha:
execution(* Alpha.*(..))
with the following ...
1
vote
0answers
101 views
how to pass context(ApplicationContext) as an argument to logBefore Method(Method of Aspect)?
I want to implement an aspect to avoid lazy Loading problems .
so how to pass context(Application Context) as an argument for logBefore Method?
What is the signature pointcut defines the method ...
3
votes
3answers
594 views
Spring AOP pointcut for annotated argument
Say I have a method like so:
public void method(@CustomAnnotation("value") String argument)
Is there a pointcut expression that could select all methods with arguments annotated with ...
0
votes
1answer
450 views
Pointcut to Spring @RequestMapping
I'm just now trying to enable AOP on my Spring project. I want to execute code (a session cleaning) AFTER the @RequestMapping has completed. Here is my applicationContext.xml (simply load referenced ...
1
vote
0answers
171 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 ...
0
votes
1answer
137 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
2k 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
2answers
194 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, ...
1
vote
1answer
249 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 ...
3
votes
1answer
1k 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
766 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 {
...
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 ...
4
votes
1answer
2k 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 ...
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
454 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 ...
0
votes
1answer
88 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
2k 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 ...
2
votes
1answer
3k 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 ...
0
votes
1answer
799 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 ...
1
vote
2answers
433 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 ...
3
votes
2answers
1k 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
1answer
464 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 ...
0
votes
1answer
234 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:
...
