Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [aspectj-users] load-time weaving with applet

#: Joanne (sent by Nabble.com) changed the world a bit at a time by saying on  10/5/2005 11:19 PM :#
Hi, does anyone know if we can apply load-time weaving to applet class loader with java 1.4?  When I apply the LTW on java class directly, I need to pass in some options such as -Xbootclasspath/p:_boot/awaj-boot.jar to JVM, how can I pass these options to the JVM that applet is using?  Thanks a lot.
--
Sent from the AspectJ - users forum at Nabble.com:
http://www.nabble.com/load-time-weaving-with-applet-t378730.html#a1045932



Nope, because an applet will use the JVM on the client, so you should request every visitor to download your classloader and set the prepanding bootclasspth.

You should use instead compile time weaving.

./alex
--
.w( the_mindstorm )p.



Back to the top