Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
RE: [aspectj-users] JBoss AOP Released

My interest in AOP centers on object persistence.  Specifically:
-Detecting when a field is dirty and should be written back to storage.
-Lazy fetching of fields from storage.

Both AspectJ and JBoss AOP provide good support, however, neither can
support pointcuts of elements within an array.  I like the JBoss AOP
framework, however, I want to be able to pre-compile the classes so that
I do not have to use the system class loader that JBoss AOP requires.

Thanks... Sean 

-----Original Message-----
From: aspectj-users-admin@xxxxxxxxxxx
[mailto:aspectj-users-admin@xxxxxxxxxxx] On Behalf Of Toñi Reina
Quintero
Sent: Wednesday, June 04, 2003 11:51 AM
To: aspectj-users@xxxxxxxxxxx
Subject: Re: [aspectj-users] JBoss AOP Released

I haven't tried JBoss, but know I have been working with Cocoon, and I
am
working also on comparing Aspect and XML, so I think it's interesting
your
comments.

And I will also know a bit more about your work, if you are doing
something
with XML/Aspect.

Best regards,
    Toñi Reina
----- Original Message -----
From: "Sean R. Drucker" <sean.drucker@xxxxxxxxxxxx>
To: <aspectj-users@xxxxxxxxxxx>
Sent: Wednesday, June 04, 2003 6:21 PM
Subject: [aspectj-users] JBoss AOP Released


> JBoss AOP has been released and is available as a standalone download:
>
http://www.jboss.org/index.html?module=html&op=userdisplay&id=downloads.
> There are some good discussions under the forums section on JBoss AOP
> vs. AspectJ.  Basically, JBoss is a subset of AspectJ that avoids the
> creation of aspect classes and moves the class weaving to runtime via
a
> system class loader.  Instead of an aspect class, the aspect
definition
> is done in an XML file and an Interceptor framework is introduced to
use
> plain old java objects instead of an aspect class.  This limits the
> pointcut definitions, avoids compiling, and makes it easier for
> beginners to understand.
>
> My question is:  Has anyone attempted to duplicate the JBoss AOP
> framework using AspectJ (basically using an Aspect vs. an XML file)?
>
>
>
>
> _______________________________________________
> aspectj-users mailing list
> aspectj-users@xxxxxxxxxxx
> http://dev.eclipse.org/mailman/listinfo/aspectj-users
>
>


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




Back to the top