Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [aspectj-users] List of main users

So far the implementation of AspectJ here has been pretty small.  But also
very effective. I basically use it instead of a servlet filter. Each Struts action in a site usually requires authentication. So instead of having every
action's "execute" method actually running a common action's "secureExecute"
I write an "around" for it.

As I said, the same thing could be accomplished with a servlet filter, but I
like the way the aspect is so plug and play.

Oh yeah, and I use aspectj to change functionality in existing jar files.  I
need something set one way in one project, but set another way in another
project. So weaving on precompiled jars and changing their nature is awesome.


Charlie



Russell Miles said the following on 6/2/2004 3:32 PM:

Hi Thierry,

I've been using AspectJ for a while now and I can safely say that it has proved incredibly useful on various projects I have worked on. General Dynamics UK have used AOP through AspectJ and others in various data minining systems and, along with Eclipse, the approach is proving to be one of the most valuable and productive new (ish) technologies we are using.

Don't be worried too much about picking up AspectJ, it's a very mature and reliable piece of work coming from a very proactive and professional bunch of people.

Cheers,


Russ

On Tuesday, June 01, 2004, at 03:21AM, TIC spam <spam@xxxxxxxxxxxxxxxx> wrote:

As all of you know, companies do not like to pionneer in new
technologies... It just does not pass the Risk Management step.

So, it would be interesting to know which major projects/companies are
using Aspectj or more generally AOP. Does such kind of list exist?

Thanks!

Thierry

_______________________________________________
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