Tagged Questions

6
votes
3answers
509 views

What is AspectJ good for?

First let me note, that I use AspectJ and I like it, but what else can I do with it. I know AspectJ can be/is used for Logging. In some cases it is used for Transaction controlling – mostly ...
2
votes
1answer
42 views

Which are the most suitable languages to apply Aspect's Theme approach?

I am thinking about reading Aspect-Oriented Analysis and Design: The Theme Approach, yet I am hesitant. Is it possible to use what's taught in the book with AspectJ (for Java) or Post# in C#? Maybe ...
2
votes
0answers
69 views

Using aspects from other jars

What I'm trying to accomplish is the following: I have a server with the following structure. bin ... apis services ... etc... So I want to define an API that contains an aspect to be used by ...
1
vote
2answers
132 views

AspectJ - why use annotations instead of ajc compiler?

We can use both @AspectJ annotation style to define aspects, as well as the AspectJ Java extension language, which requires us to use the ajc compiler. What are the reasons that one would want to use ...
1
vote
3answers
257 views

Aspectj. Creating innter type methods in multiple classes

If I put: public CountryState CountryState.find(long id) { return (CountryState) findById(CountryState.class, id); } I'm creating a method find in the class CountryState. Is there a way to ...
0
votes
1answer
67 views

@AspectJ syntax for “after() : staticinitialization(*)”

I'm trying to implement a tracing aspect using the pertypewithin instantiation model. In this way, I'll be able to use one logger per class per type. From some examples arround the we I can find this ...
0
votes
1answer
276 views

Spring AOP Aspect not executing

I've been trying to figure out why my simple aspect is not getting executed. I looked at the answers of similar problems but i still can't get it to work. My intention is to wrap the execution of a ...
0
votes
1answer
190 views

Help create AspectJ equivellent to @PrePersist and @PreUpdate for audit use case

In JPA, there is @PrePersist and @PreUpdate annotations that allow operations before CRUD operations. I am trying to find out the ApsectJ equivalent to this. My use case is a JPA application that was ...
0
votes
1answer
66 views

Polymorphism in AspectJ

I am trying to decide which is the better way to dispatch on a type in AspectJ. Suppose I am performing a computation on a tree with three kinds of nodes. I could then write a simple Java method: ...