Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [aspectj-users] how to use AspectJ inside jsp files


Hi,


In order to keep as much code as possible out of your JSP files you might want to consider having all of your AspectJ and Java code in separate beans and servlets that are referenced by (and reference) the JSPs in your web application. You would then be able to code up your servlet and bean types using the AJDT AspectJ editor as usual.

If, for some reason, you judge that your cross-cutting concern(s) need to touch on code inside a JSP then you could consider a binary weave of your aspects against pre-compiled versions of the JSPs.

Best regards,
George
________________________________________
George C. Harley




Shubhangi Wakodikar <sswakodikar@xxxxxxxxx>
Sent by: aspectj-users-admin@xxxxxxxxxxx

20/04/2004 18:34

Please respond to
aspectj-users

To
aspectj-users@xxxxxxxxxxx
cc
Subject
Re: [aspectj-users] how to use AspectJ inside jsp files





hi,

I think I gave an incomplete specification of my
problem. Actually I am developing aspectJ applications
in eclipse presently. Now, I want to use aspects in
jsp page.

rgds,
Shubhangi

--- Shubhangi Wakodikar <sswakodikar@xxxxxxxxx> wrote:
> Hi,
>
> I am a new AspectJ user. I wanted to know if you can
> use AspectJ code inside JSP for server application.
> If
> yes, how?
> Please give links if you know any.
>
> Thanks and regards,
> Shubhangi.
>
>
>
>                  
>                                  
> __________________________________
> Do you Yahoo!?
> Yahoo! Photos: High-quality 4x6 digital prints for
> 25¢
> http://photos.yahoo.com/ph/print_splash
> _______________________________________________
> aspectj-users mailing list
> aspectj-users@xxxxxxxxxxx
>
http://dev.eclipse.org/mailman/listinfo/aspectj-users



               
                                 
__________________________________
Do you Yahoo!?
Yahoo! Photos: High-quality 4x6 digital prints for 25¢
http://photos.yahoo.com/ph/print_splash
_______________________________________________
aspectj-users mailing list
aspectj-users@xxxxxxxxxxx
http://dev.eclipse.org/mailman/listinfo/aspectj-users


Back to the top