Since AspectJ LoadTime-Weaving needs to load the JVM with an agent/it's own classloader - is there a way to load/make changes in the user's JVM from my applet? or maybe just before loading the applet (with a parent applet?)
...
            
           
          
            
            Using Spring I've had some issues with doing a dependency injection on an annotated Aspect class.  CacheService is injected upon the Spring context's startup, but when the weaving takes place, it says that the cacheService is null.  So I am forced to relook up the spring context manually and get the bean from there.
Is there another way ...
            
           
          
            
            Hi all, I'm having some problems getting load-time weaving to work with Spring in my Tomcat 6 webapp. I only want to use it for transactions (so that self-invocation respects transactional annotations, which it doesn't with AOP proxying). It appears that the weaver is being loaded, but my annotated classes aren't actually being woven. Wh...