[JBoss-dev] [AOP on JBoss (Aspects/JBoss)] - Re: Unbound field advice binding

2004-11-04 Thread Bill Burke
The console is a little weird...

It will only show bindings for LOADED classes.  If you execute the code, you should 
see the bindings.

If you execute the code, and the aspect is is UNBOUND in the webconsole, then there is 
a bug in the webconsole.


ANOTHER THING:

By default, class load time transformations are turned off, so your aspect may not be 
instrumenting the code.  Either use the precompiler or read this doco:

http://docs.jboss.org/aop/aspect-framework/reference/en/html/running.html#jboss

I suggest using the precompiler because currently, load-time transformation is a HUGE 
memory hog.

Let me know if any of these fix the problem

Regards

Bill

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3853873#3853873

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3853873


---
This SF.Net email is sponsored by:
Sybase ASE Linux Express Edition - download now for FREE
LinuxWorld Reader's Choice Award Winner for best database on Linux.
http://ads.osdn.com/?ad_id=5588&alloc_id=12065&op=click
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [AOP on JBoss (Aspects/JBoss)] - Re: Unbound field advice binding

2004-11-04 Thread skellen
Bill Burke wrote : It will only show bindings for LOADED classes.  If you execute the 
code, you should see the bindings.
  | 
You are right, my advice is bound when I instantiate a class and everything works as 
expected.

Bill Burke wrote : I suggest using the precompiler because currently, load-time 
transformation is a HUGE memory hog.
  | 
I see. Is this memory used only during transformation and then released? Or once 
allocated is never freed?

BTW: I'm really impressed by JBossAOP / JDK 1.5 / Annotations combination :-)


Best regards,

Szczepan Kuzniarz

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3853885#3853885

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3853885


---
This SF.Net email is sponsored by:
Sybase ASE Linux Express Edition - download now for FREE
LinuxWorld Reader's Choice Award Winner for best database on Linux.
http://ads.osdn.com/?ad_id=5588&alloc_id=12065&op=click
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [AOP on JBoss (Aspects/JBoss)] - Re: Unbound field advice binding

2004-11-04 Thread KevinConner
anonymous wrote : I suggest using the precompiler because currently, load-time 
transformation is a HUGE memory hog. 

I'm nearly finished an alternative load-time which has a much better memory footprint. 
 I've been working on a different version of the classpool that doesn't store the same 
information.

Kev


View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3853894#3853894

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3853894


---
This SF.Net email is sponsored by:
Sybase ASE Linux Express Edition - download now for FREE
LinuxWorld Reader's Choice Award Winner for best database on Linux.
http://ads.osdn.com/?ad_id=5588&alloc_id=12065&op=click
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [AOP on JBoss (Aspects/JBoss)] - Re: Unbound field advice binding

2004-11-04 Thread Bill Burke
The memory is not released.  What is created is Javassist data structures.  I can't 
release the memory because class transformation happens at class load time.  A class 
may be transformed, then another class that references that transformed class may have 
joinpoints affected by that transformation. 

Bill

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3853925#3853925

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3853925


---
This SF.Net email is sponsored by:
Sybase ASE Linux Express Edition - download now for FREE
LinuxWorld Reader's Choice Award Winner for best database on Linux.
http://ads.osdn.com/?ad_id=5588&alloc_id=12065&op=click
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development