Top "Compile-time-weaving" questions

Compile time weaving is a technique which allows AOP aspects to be "woven in" at compile time mainly by modifying the compiled code (e.g. byte-code manipulation in Java).

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 …

java maven aop spring-aop compile-time-weaving
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 …

aspectj compile-time-weaving load-time-weaving
How to enable compile-time aspectj weaving for Eclipse embedded Tomcat

I'm having a problem trying to make eclipse and aspectj work for Dynamic Web Projects. I'm looking for compile time …

eclipse tomcat aspectj web-applications compile-time-weaving
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 …

java annotations compile-time-weaving annotation-processing