I'm having a bit of a problem defining my aspects. I've got a bunch of entities that I'd like to profile the get-methods in, so I've written the following pointcut and method
@Pointcut("execution(* tld.myproject.data.entities.*.get*()")
public void getEntityProperty() {}
@Around("getEntityProperty()")
public Object profileGetEntityProperty(ProceedingJoinPoint pjp) throws Throwable {
long start = System.currentTimeMillis();
String name = pjp.getSignature().getName();
Object output = pjp.proceed();
long elapsedTime = System.currentTimeMillis() - start;
if(elapsedTime > 100)
System.err.println("profileGetEntityProperty: Entity method " + name + " execution time: " + elapsedTime + " ms.");
return output;
}
I've got weaving turned on in my configuration, and aspects weaving into the business layer work just fine. Is my pointcut correctly written? Or is there something about entities that make them non-weavable? (my entity is prefixed with @Entity before the class definition)
Cheers
Nik
You're only a parenthesis away actually!
@Pointcut("execution(* tld.myproject.data.entities..get())")
If you're using Eclipse, I will recommend developing with AspectJ compile-time weaving. It's the simplest way.
With the AJDT plugin, you get lots of help! I just pasted in your pointcut and got an compilation error. Added a parenthesis and it worked!
Screenshot of visual support with the AJDT plugin:
The orange arrow to the left of the getHello() method indicates that is's advised by an around advice. See here for a larger example.
Yes, there is. The entities are created by you, using the new
operator, and hence they are not part of the spring context.
If you want to use this, you'd need to enable weaving (I prefer load-time via <context:load-time-weaver/>
), and to annotate your entity classes with @Configurable
.
I, personally, wouldn't prefer this practice. Alas, there aren't any alternatives that are so generic. If your persistence provider is Hibernate, you can create a custom proxy of your entities - see here, but this is even more awkward.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With