I want to configure compile time weaving for classes marked with @Configurable
annotation to be able to inject spring dependencies to classes instatiated with new
operator. I don't want to use load-time weaving because I don't have access to run script of application server, so I can't modify it. Also I want to be able to use this classes in tests, I mean to run test cases from IDE . I found information only about load time weaving on the web and spring reference and nothing about configuration of compile-time weaving.
PS. I use spring with maven
Something like this in your pom should work...
Then make sure you have spring-aspects on your class path.
And for aspecting in Eclipse - install the AJDT