[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
|
[aspectj-users] My first steps ..
|
- From: "Thomas Bauer" <xaidat@xxxxxxxxx>
- Date: Mon, 4 Jun 2007 07:36:20 +0200
- Delivered-to: aspectj-users@eclipse.org
- Dkim-signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=QZxFEHhhLbhUMCnqucmjZB/y4HQwiWCGqE9541hdSfWF9PXAAJ6UEDRk6Mn/EtHQzXbEVHdSPqCEk7rcykg3rfZWi1iFweerwPPXpZT9rY9yJmmDroD5bsDV9PMUMetmiI6k0DpxUJ5AFz3TzvJ1+ArWKGpCDH+vv6HS3alCCmQ=
- Domainkey-signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=qKJLlYPQrbWDSgj0uVw4pVN+Z66hER0P770z1rzdmSsnDXmN6bJAk+KRHPYktafkNGPWUEi8XMez1u+idtgJ6h+kp0SUu2mosIXpFYPmovJgalGvVSrcosO+/TyODlt6duQVOcY/TKLKhoHF50D8oz4hV+yoTg+Zy0u/eearKKc=
Hi list!
I have used aspects until now only with dynamic proxies. The bytecode
massage was always feeling a bit awkward to me.
But I recently I did the step and applied my first aspect .. and it was great!
The possibilities are much better with aspectj as with dynamic
proxies, don't know about the performance yet.
I have some basic questions. What I do and want to do is LTW. I'm also
using a tomcat environment and code my aspects in Java using
annotations.
I copied aspectjweaver.jar and aspectrt.jar into shared/lib and
created an aop.xml in shared/classes. I also copied my apsects into
shared/lib. After deploying my webapp the aspects are applied - fine.
What for are aspectjlib.jar and apsectjtool.jar?
Is there a way to have an extra aop.xml for every webapp or is it only
possible to have one global aop.xml file?
The <weaver><include> element in the config file, what does it do
excactly? Can I somehow specify on which classes (I want to weave just
my com.acme.* classes) my aspects are applied?
Whenever I use <weaver><include> the aspects won't get woven in.
Is it possible to only have the weaver apply the aspects when a given
classloader is used?
e.g. I want to weave when tomcat uses the classloader for the webapp
but not everytime a jsp gets loaded (I recognized the weaver kicks in
at every jsp being loaded)
I have multiple aspects and they get weaved in above each other. Is
there a way to tell my aspect not being applied to an aspect?
But I don't want a dependency between Aspect A and B. I managed to
exclude the whole package my aspects reside in, but what if I have an
aspect in another package?
That's all for now :-)
Thanks!
greetings from Asutria/Europe,
Thomas