Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[aspectj-users] AspectJ Performance toward the pointcut definition

Hello,

I want to know whether more definitive pointcut definition have different impact toward a generic one.

For example:

after(): execution(void Hello.helloWorld()) {
}

and 

after(): execution(* Hello.hello*()) {
}

Assuming there is only one method that fulfill the definition, does they have different impact to application performance?

I used compile-time weaving and no runtime weaving.

Thanks!
--
Muhammad Adinata
13509022 - Informatika ITB 2009

Back to the top