Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[aspectj-dev] Queries from a newbie..

Hello guys,

I am new to AOP - and my initial work with it have
been so awesome. It looks to be really powerful.

I have 2 major queries (for now :) ) - thanks so much
to anyone who can help me :

1. I want to create an aspect in Eclipse. I got the
ajdt plugins - but they create only .aj files. How do
I deploy this file with my java servers ?

2. We are developing EJBs in JBoss and want to see how
the performance of a bean method is.  For example, our
CMP bean defines a method called findPersonByName() -
can I define a pointcut when this method starts
executing as :

pointcut FindPerson() : execute(*
findPersonByName(..));

before() : FindPerson() {...}

Are there limitations in a J2EE server ? I did read
the FAQ in the web-site but I was not very clear on
what it is saying.

Thanks in advance.

=====
Happiness is purely a state of mind that is in no way related to external factors.


	
		
__________________________________
Do you Yahoo!?
New and Improved Yahoo! Mail - 100MB free storage!
http://promotions.yahoo.com/new_mail 


Back to the top