Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

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. ...
4
votes
4answers
3k views

How do you use Java 1.6 Annotation Processing to perform compile time weaving?

I have created an annotation, applied it to a DTO and written a Java 1.6 style annotationProcessor. I can see how to have the annotationProcessor write a new source file, which isn't what I want to ...
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 ...
2
votes
1answer
420 views

Ant target for compile-time code instrumentation with Spring aspects

I have developed a web application using Netbeans 6.7 and Ant. The webapp works, but I would like to refactor the code to use @Configurable Spring annotation for cleaner dependency injection. I was ...
2
votes
2answers
1k views

Startup performance of Spring @Configurable with Compile Time Weaving

this is my first question on stack overflow, so please be kind. i am running an app with spring 2.5.x Configurable Annotations Compile time weaving (CTW) maven eclipse/ajdt I use CTW and ...
1
vote
2answers
199 views

Let eclipse use maven to compile/weave my code

I am using compile time weaving with aspectj to weave in Spring's transactional code so I can use @Transactional. When i run maven compile from inside Eclipse (which uses the aspectj-maven-plugin), ...
1
vote
0answers
72 views

iajc fails to weave aspects from a jar but succeedes from class files

So I defined iajc task for my project that does intertype declarations just fine, then there is a separate jar task that creates a project.jar. Then there is iajc task for junit test target, this ...
1
vote
0answers
104 views

Static Weaving for EclipseLink with Eclipse WTP

I've got a project running on Tomcat within Eclipse WTP that deploys with some JPA entities. I would like to enable ChangeTracking on these entities, but this requires enabling weaving. Since Tomcat ...
0
votes
1answer
783 views

AspectJ - Compile-time vs load-time weaving

I am having trouble understanding aspectJ's compile-time and load-time weaving and figuring out what to use(and how to use ajc) to compile and build my project. Here's my project structure:- ...
0
votes
1answer
630 views

spring aspectj - compile time weaving external jar

I have a project which uses compile time weaving of aspects. this project depends on another project, which is a included as a jar. I want to weave a class in the jar file while compiling. How can i ...