Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [aspectj-dev] Load-time weaving


For post-compile time binary weaving:

ajc -inpath path-to-class-files TestAspect.aj

For load-time weaving, compile TestAspect.aj into an aspect library:

ajc -outjar testaspectlib.jar TestAspect.aj

and then use the "aj" script in the bin directory  with ASPECTPATH set to contain testaspectlib.jar....

-- Adrian
Adrian_Colyer@xxxxxxxxxx



Valerio Schiavoni <ervalerio@xxxxxxxxxx>
Sent by: aspectj-dev-admin@xxxxxxxxxxx

11/02/2005 14:20

Please respond to
aspectj-dev@xxxxxxxxxxx

To
aspectj-dev@xxxxxxxxxxx
cc
Subject
[aspectj-dev] Load-time weaving





Hello
does load-time weaving require source code of base classes?
If not, given the aspect TestAspect, and the java-compiled class
JavaClass.class, what should i do ?

Run-time weaving is not available yet, right? Will it be when AspectWrektz
will fully merged in the AspectJ world ?

thanks,
Valerio
_______________________________________________
aspectj-dev mailing list
aspectj-dev@xxxxxxxxxxx
http://dev.eclipse.org/mailman/listinfo/aspectj-dev


Back to the top