Some aspects of system implementation, such as logging, error handling, standards enforcement and feature variations are notoriously difficult to implement in a modular way. The result is that code is tangled across a system and leads to quality, productivity and maintenance problems. AspectJ is a seamless aspect-oriented extension to the Java programming language that enables clean modularization of these 'crosscutting concerns'.
26
votes
6answers
500 views
How can I make external methods interruptable?
The Problem
I'm running multiple invocations of some external method via an ExecutorService. I would like to be able to interrupt these methods, but unfortunately they do not check the interrupt flag ...
15
votes
6answers
569 views
Code Analysis Tools and Inter-Type-Declarations
I have a maven project generated by Spring Roo and use several tools (checkstyle, pmd etc.) to collect information about my project. (namely I am using codehaus' sonar for this)
Roo makes heavy use ...
9
votes
3answers
3k views
Which maven plugin do I use for AspectJ?
I am trying to add aspectj to a maven project using java 6.0. Browsing around I found 2 maven plugins, none of which works the way I would expect.
The first one ...
9
votes
3answers
822 views
AspectJ Load time weaver doesn't detect all classes
I am using Spring's declarative transactions (the @Transactional annotation) in "aspectj" mode. It works in most cases exactly like it should, but for one it doesn't. We can call it Lang (because ...
8
votes
4answers
4k views
@AspectJ pointcut for all methods of a class with specific annotation
I want to monitor all public methods of all Classes with specified annotation (say @Monitor) (note: Annotation is at class level). What could be a possible pointcut for this?
Note: I am using @AspectJ ...
7
votes
3answers
2k views
Spring @Transaction method call by the method within the same class, does not work?
I am new to Spring Transaction. Some thing that I found really odd, probably I did understand this properly. I wanted to have a transactional around method level and I have a caller method within the ...
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 ...
6
votes
1answer
100 views
Performance Overhead of AOP
I was wondering if there are any major performance issues with using AspectJ if it is being used to intercept every (or just most) method in an application. Of course, performance would also be ...
6
votes
3answers
140 views
Determine which aspects hook into a given class
Is it possible to determine which aspects hook into a given class and to gain access to their instances?
Something like:
Foo foo = new Foo();
List<Object> aspects = getAllAspectsOf(foo);
6
votes
1answer
321 views
Spring: Standard Logging aspect (interceptor)
I've found a lot of examples on how to create a custom aspect for logging using the Spring framework like this or this but did not find standard/common Spring implementation for this situation and ...
6
votes
1answer
146 views
Proceed with variable arguments with AspectJ
I'm trying to normalize URIs across an application using AspectJ. I'm catching every call that is made to a method passing in a java.net.URI parameter using this code:
Object around() : execution(* ...
6
votes
3answers
255 views
Scala: Implementing Java's AspectJ around advice or Python decorators
I have been using Java + AspectJ extensively for my startup. I would love to switch to Scala but I have a common design pattern that I am not sure entirely the best way to implement in Scala.
A ...
6
votes
3answers
514 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 ...
6
votes
3answers
8k views
Why doesn't AspectJ compile-time weaving of Spring's @Configurable work?
Update 5: I've downloaded the latest Spring ToolsSuite IDE based on the latest Eclipse. When I import my project as a Maven project, Eclipse/STS appears to use the Maven goals for building my project. ...
5
votes
2answers
157 views
How to prune a Java program
Let's me start from what I want to do then raising some questions I have.
I want to develop a general Java program which is a superset of a number of programs (let's call them program variants). In ...
5
votes
2answers
2k views
Spring AOP Advice on Annotated Controllers
I am trying to use AOP to do some processing after an annotated controller. Everything is running with no errors, but the advice is not being executed.
Here is the controller code:
@Controller
...
5
votes
3answers
1k views
Spring Optimistic Locking:How to retry transactional method till commit is successful
I use Spring 2.5 and Hibernate JPA implementation with Java and "container" managed Transactions.
I have a "after user commit" method that updates data in background and need to be committed ...
5
votes
1answer
1k 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 ...
5
votes
1answer
4k views
Maven vs. AspectJ - Example?
MY aspect works great from Eclipse with AspectJ plugin, however if I try to use it with Maven I get .... nothing.
I tried this http://mojo.codehaus.org/aspectj-maven-plugin/includeExclude.html
I ...
5
votes
3answers
431 views
Which static analysis tool for Java is easiest to extend?
Which static analysis tools for Java has easiest extension mechanism. I checked PMD
But the process of writing custom rules appears to be very involved.
Specifically, I want to know whether there is ...
4
votes
4answers
119 views
Eclipse: contradicting warnings
Here's the code snippet:
class MyClass {
private native void foo();
}
For the above, Eclipse (namely, 3.7.0) gives a warning
The method foo() from the type MyClass is never used locally
...
4
votes
1answer
196 views
Ignoring Aspectj during junit tests
Here is situation:
We have class with defined aspect to it's methodA;
We have JUnit test for this methodA;
When I run JUnit test it activates Aspect as well. Any thoughts how to ignore Aspects ...
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
48 views
converting class with aspect into single source
Is there some tool for appying aspect to some class and generating final source into existing java source?
I want my initial class
public class HelloWorld {
public static void main(String[] args) ...
4
votes
5answers
798 views
Why Spring AOP is not weaving external jars at runtime?
I have a java application build upon Spring 3. This project has another jar as a dependency.
This dependency contains a @org.aspectj.lang.annotation.Aspect class (lets say, ...
4
votes
1answer
244 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> ...
4
votes
1answer
289 views
Aspect oriented programming - what is 'cflow'?
I have referred to the AspectJ reference here it states that the 'cflow' is
cflow(Pointcut) - every join point in
the control flow of each join point P
picked out by Pointcut, including P
...
4
votes
3answers
481 views
Mixing AspectJ and Scala in an Eclipse Project
Any one been able to get a Scala and AspectJ (AJDT) to play nicely together in Eclipse 3.6?
It seems Scala's weaver conflicts with AspectJ's weaver.
I'm hoping I'm just missing something.
Edit: ...
4
votes
1answer
1k views
Is there any way to get rid of these spring/aspectj warnings when building the project?
I've frequently put up with this for a long time, but I'm a little worried that it's slowing my build process down now. There are a good few seconds that are taken up as Spring/AspectJ reports these ...
4
votes
2answers
502 views
spring + aspectj, define an aspect @Around
i want to define an @Around aspect for a method of my @Entity
All my entities are in package data.entity
A define an aspect like this:
@Aspect
public class TestAspect {
@Around("execution(* ...
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 ...
4
votes
3answers
758 views
Insert code into a method - Java
Is there a way to automatically insert code into a method?
I have the following typical field with a getter and setter and I would like to insert the indicated code into the setter method that ...
4
votes
4answers
4k views
Maven: compile aspectj project containing Java 1.6 source
Primary Question
What I want to do is fairly easy. Or so you would think. However, nothing is working properly.
Requirement:
Using maven, compile Java 1.6 project using AspectJ compiler.
Note:
...
4
votes
1answer
1k views
Why do my aspects get executed in their original setting and not when packed as a separate jar and called from elsewhere?
I am a newbie to aspectj...
I have written the following aspect which is intended to add logging to function calls of type public * doSomething*(..). If my main class is part of the same project the ...
4
votes
2answers
1k 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. ...
4
votes
2answers
1k views
AspectJ load-time weaving in production systems
Does anyone have an experience with pure AspectJ load time weaving in production systems (mostly interesting Tomcat related activities)? I'm slightly worrying regarding memory footprint and cpu ...
3
votes
1answer
37 views
AspectJ CTW weaving works everywhere except for deployed WAR?
I've added AspectJ CTW to a project and things (appear) to work wonderfully. I can run the code in tests and it demonstrates that AspectJ is intercepting the appropriate methods. Once I package the ...
3
votes
1answer
35 views
Aspect pointcut to match Annotation property
I'm trying to use Spring AOP with AspectJ support to weave methods with a certain annotation. I know it's easy to do so by using a pointcut @annotation(classname)
But I need to create weavers based ...
3
votes
1answer
76 views
Any AspectJ code generation library (like Sun's codemodel for Java code generation)?
Is there any free library to generate AspectJ code at compile-time (at the annotation processing step for example)? I am looking for something similar to codemodel, but to generate AspectJ code.
3
votes
2answers
155 views
@AspectJ pointcut for subclasses of a class with an annotation
I'm looking for a pointcut that matches method executions in classes that subclass a class with a specific annotation. The excellent AspectJ cheat sheet helped me to create the following pointcut:
...
3
votes
1answer
192 views
AOP pointcut expression for any public method of a service
What is the simplest pointcut expression that would intercept all public methods of all beans annotated with @Service? For instance, I expect it to affect both public methods of this bean:
@Service
...
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
1answer
349 views
How should aspect weaving be limited to classes referenced by aop:advisor pointcuts?
I'm trying to trace execution of an app running on ServiceMix 3.2 which uses spring 2.5 under the hood. I'm using CGLIB (advising classes, not interfaces) and I would like to direct tracing using ...
3
votes
1answer
154 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 ...
3
votes
1answer
257 views
IntelliJ IDEA: verbose aspectj compiler output
I wonder if there any way to make compiler's output in IntelliJ IDEA more verbose. IDEA automatically sets up compiler to ajc from maven dependencies.
I assume that it can be not IntelliJ IDEA's ...
3
votes
1answer
358 views
Maven, Scala, Spring, AspectJ
Does anyone know if you can weave scala classes at compile time with aspectJ & spring. I have compile time weaving working for all my java classes but I can't seem to get it to work for my scala ...
3
votes
2answers
487 views
Spring AOP: Disadvantages when using it - Spring Features which use Spring AOP do not have this disadvantages?
Im working with the Spring Framework 3.0.5 and Spring Security 3.0.5 and Ive got questions to the aspect orientated programming. At the moment Im trying to figure out the disadvantages and advantages ...
3
votes
1answer
175 views
What's the current state of AspectJ?
A new version of AspectJ was released a few weeks ago. But most of the official documentation is really old, dating before the AspectWerkz merge. Books are similarly dated. It's difficult to figure ...
3
votes
1answer
185 views
aspectj-maven-plugin multi module project
I'm trying to use aspectj-maven-plugin in a multi-module project and can't understand where aspects have to be placed. I want to crosscut in-module and between-modules calls. Where .aj files should be ...
3
votes
1answer
598 views
Spring with AspectJ compile-time weaving causing: java.lang.VerifyError: Illegal use of nonvirtual function call
I am trying to use Spring's @AspectJ compile-time weaving instead of <aop:autoproxy/> and it is causing some errors.
First there are some warnings during the compilation phase:
[WARNING] can ...