Out of the box, I'm not aware of a better way to do this.
One thing to consider perhaps would be aspects - you could weave an aspect into the code that fired around all method invocations and pushed the current Method object to a ThreadLocal (based on the reflective information available from the joinpoint).
This would be probably prohibitively expensive if it really fired on all methods, but depending on what you're doing with the results, you may be able to constrain the capturing down to certani packages/classes, which would help. You may be able to defer the actual lookup of the Method too until such time as it's used, and instead store the name of the method and arguments etc.
I have my doubts whether there's going to be a particularly cheap way to achieve this, though.
Methodobject. i.e. Why do you need it? – Peter Lawrey Feb 28 '11 at 9:12%Lor%Moptions) but warn that it's very slow, because IIRC they're just callingThread.currentThread().getStackTrace()as well. – Andrzej Doyle Feb 28 '11 at 9:28sun.reflect.Reflection.getCallerClass(int)This can more efficient, but platform dependant and it doesn't give you the method. – Peter Lawrey Feb 28 '11 at 9:33