Tagged Questions
0
votes
2answers
84 views
Using Spring AOP 3.1.0 to set service instance using method argument
Hi i am new to Annotation and Spring AOP. below is what i am trying to achieve
public interface Service {
public void process(String ServiceName, Bean bean);
}
public class ServiceImpl1 ...
0
votes
1answer
53 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
86 views
AspectJ compiler DeclareMixin error
I'm using the @DeclareMixin provided by aspectjrt-1.6.11.
The situation is:
@Aspect
public class anAspect {
@DeclareMixin(value="@an.annotation.package.* *", interfaces = {
...
0
votes
0answers
46 views
how can annotated aspectJ realize AOP on annotated controller in Spring mvc?
I've searched a lot of methods from google, but none of them worked well! My code snippets are as follows:
Annotated Controller:
@Controller
@RequestMapping("/user")
public class UserController {
...
1
vote
0answers
54 views
@Around advice access to thisEnclosingJoinPointStaticPart
I'm trying to code an aspect using the annotation style. I am creating an "around" advice, but I can't seem to find any way to get access to thisEnclosingJoinPointStaticPart from within the advice ...
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
1answer
59 views
Eclipse misunderstands exception-throwing aspect
In Eclipse + AJDT, I implemented a method annotation to check for authorisation as follows.
Annotation:
@Retention(RetentionPolicy.RUNTIME)
public @interface Secured {}
Aspect:
public aspect ...
1
vote
1answer
85 views
Is it possible to parametrize Java Aspect
Is it possible to parametrize an Aspect? Right now I have an @Integration Aspect and my pointcuts are like:
@AfterReturning(pointcut = "@annotation(Integration)",returning = "result")
So, wherever ...
1
vote
2answers
148 views
What do .. and * mean in aspectj
My understanding is that .. is 0-Many args and * is one arg of any name. Is this correct?
Does aspectj support syntax like args(..,myArg,..)?
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:
...
1
vote
1answer
142 views
AOP AspectJ static field initialization with Annotated (marked) Classes
I have a static field public static Class[] items; I want it to be filled at the start of the application with classes which have @ItemExample annotaion. Example classes(simplified):
public class ...
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
1answer
503 views
AspectJ - Retrieve list of annotated parameters
From the following previous question (http://stackoverflow.com/questions/10554453/aspectj-presence-of-annotation-in-join-point-expression-not-recognized),
My goal:
In an aspect, i'd like to be able ...
1
vote
2answers
310 views
Targeting aspects based annotation on a class with Spring and AspectJ
How to make an aspect that targets all public methods that belong to a class that is marked with specific annotation? In following method1() and method2() should be processed by the aspect and ...
0
votes
1answer
204 views
Match argument with custom annotation on class - detect in runtime
I have annotation like @SecureObject, which might be applied to some classes. Additionally there is the ORM, which provides method like
public ObjectID get(Class paramClass, Object object);
Now I ...
4
votes
3answers
1k views
Why is Spring @Value incompatible with @Controller?
I'm looking for a better understanding of this problem. A workaround is pretty simple, namely move the configuration data to another class that does not have proxies/advice wrapped around it, but I ...
1
vote
1answer
1k views
Aspect not excecuting at runtime (Spring 3, AspectJ)
I have created an Aspect but it doesn't seem to be working, I see nothing in the log, also no error messages or anything in the log that help me.
The repository gets Autowired by Spring into another ...
1
vote
2answers
338 views
Reflection:get Object state from return type of method in runtime
Have annotated Java class with several methods:
@CustomAnnotation
public class MyService {
public List<MyObject> getMyObjects(){
...
}
public SomeObject getSomeObject(){
...
}
}
I should ...
0
votes
1answer
132 views
Check the arguments for all annotated methods at runtime
How can you perform a check at startup-time on all the usages of an annotation?
For instance, I have this aspect, that is applied to the methods annotated with @Protect, that applies some security ...
1
vote
2answers
526 views
Pointcut matching methods which have been annotated directly or in an inherited interface?
Consider this @PointCut which gets triggered if a method is annotated with an @Secure annotation:
@Pointcut("execution(@Secure * *(..)) && @annotation(secure)")
public void ...
7
votes
2answers
5k views
Syntax error, annotations are only available if source level is 5.0 - AspectJ in Maven
I am trying to use the aspectj-maven-plugin in a maven project. At compile time, I get:
Syntax error, annotations are only available if source level is 5.0
Syntax error, annotations are only ...
0
votes
1answer
425 views
How to filter the return values of a method with AspectJ?
I would like to filter return values of methods which have a @Filter annotation and return a Collection, an Array or a Map by a certain predicate.
I tried something like:
...
2
votes
1answer
336 views
How to match a method with an annotated argument in AspectJ
I'd like to match a method like this:
@Foo
public void boo(@Baz Bar bar) { ... }
Basically:
the method has a @Foo annotation (which I match with execution(@Foo * *(..)) && ...
1
vote
1answer
64 views
Using AOP or Annotations to extend a service functionality
I would like to know what is the best way in which I can extend an existing functionality (probably by using AOP or Annotations). The scenario which I am looking for is.
We have one service say ...
1
vote
1answer
392 views
How to add a method to a class where the method name is based on an existing, annotated method in AspectJ?
Consider this code:
class DatabaseCommands {
@Privilege(ADMIN)
public void delete(Something thingToDelete, User currentUser) {
/* ... */
}
}
Currently an access check is weaved ...
1
vote
1answer
800 views
How to get the value of an annotation parameter for usage in AspectJ?
Consider this method:
@Access(rights = GUEST)
public void foo() {
doSomething();
}
This pointcut basically matches if the method has an @Access annotation:
pointcut check() :
execution(@Access ...
4
votes
1answer
2k views
Get annotated parameters inside a pointcut
I have two annotation @LookAtThisMethod and @LookAtThisParameter, if I have a pointcut around the methods with @LookAtThisMethod how could I extract the parameters of said method which are annotated ...
1
vote
1answer
716 views
AspectJ annotation pointcut not triggered for interface annotations
How would one create a pointcut that matches methods that are annotated with an annotation or whose interface method is annotated with an annotation?
public interface IService {
@SomeAnnotation
...
1
vote
1answer
345 views
Unable to retrieve private annotation via reflection from aspectj advice
I have an annotation, defined as so:
public @interface RestletResourceVariable {
String name();
}
I have a restlet ServerResource defined as so:
public class QuestionResource extends ...
5
votes
1answer
434 views
Turning one annotation into many annotations with AspectJ
I have discovered a pattern in my JPA mappings that I would like to codify. A simple example follows:
@OneToMany(fetch=FetchType.EAGER)
@Sort(type=SortType.NATURAL)
private SortedSet<Item> ...
2
votes
1answer
787 views
aspectj - how to find a method of an annotated class is calling another method of same class. i.e. nested calls
I have an annotation @AppManaged which is used to signify classes that need to have certain behavior woven in. One behavior woven in is converting method calls into concurrent GPars(a groovy parallel ...
2
votes
1answer
656 views
@Profiled annotations (for using Perf4j logging) in Eclipse
Im trying to get the @Profiled annotation to time (and log) method calls using Perf4j in my eclipse project. This uses aspectj. Ive managed easily to get it to work in the Windows command line with ...
4
votes
2answers
3k views
Pointcut matching methods with annotated parameters
I need to create an aspect with a pointcut matching a method if:
it is annoted with MyAnnotationForMethod
One of its parameters (can have many) is annotated with @MyAnnotationForParam (but can have ...
2
votes
1answer
770 views
AOP with Local Variable Annotations
I want to use local variable annotations to do better AOP. One idea is to implement the Future<T> concept with a proxy using an annotation.
@NonBlocking ExpensiveObject exp = new ...
7
votes
1answer
3k views
Pointcut matching methods with annotated parameters
I need to create an aspect with a pointcut matching a method if:
Is public
Its class is annotated with @Controller (Finally does not)
One of its parameters (can have many) is annotated with ...
4
votes
3answers
1k views
Adding validations to Java Beans via Annotations
I want to add validations to a Java Bean. For example, I want to do the following:
@MaxLength(50)
@RequiredField
public void setEmployeeName(String name){
.....
}
I know I can write code that ...
5
votes
3answers
3k views
Configurable vs Component with Spring and AspectJ
When using AspectJ, why use @Component over @Configurable.
I've got Spring and AspectJ setup for @Transactional support, aspects on self-invocation, and injection into JPA entities. This works great. ...
