how can i find out which class/method has called the actual method?
|
1
|
|||||||||
|
|
|
You could try to create an exception to get its stacktrace.
Now But beware (from Throwable.getStackTrace()):
|
||||||||||||||||||
|
|
|
Here's one way that I've used:
[3] is hardcoded because: [0] is Thread.dumpThreads() [1] is Thread.getStackTrace() [2] is the current method [3] is the one before the current method |
||||||
|
|
|
A faster but non-portable solution is to use the following. It does not create a stack trace and just gives you the information you need. However, not all JVMs will have this and future version of Java might not either.
|
||||
|
|
|
You can print a stack trace to do this. If you want to do this dynamically, I'm not really sure if this is possible (aside from printing and parsing a stack trace dynamically). |
||
|
|
|
|
You could use a debugger, or a profiler. Netbeans has both, but a lot of other options exists. Else, if you can modify the code you can throw a new exception() and have a stacktrace printed in the console. |
||
|
|
|
|
Is this for debugging, or to provide some functionality? |
||
|
|
|
To echo and elaborate on matt b and yishai's comments: If you are doing this because you are writing a logger or maintaining trace information or some such, okay, cool. I've used stack traces in production code exactly once, and even that was really a debugging issue: We had a problem with database connections not being properly closed, so I modified the "get database connection" function to save the identity of the caller, and then had a periodic sweep to look for dead connections and see where they had been created. Java's built-in logging function does stack traces so it can write who called the logger to the log file. I worry about the overhead of this as I understand that stack traces are expensive, but whatever. But if you're doing this because your function is going to behave differently depending on where it was called from, like "if called from class X update customer data else if called from class Y update employee data" or something like that: Really really bad idea. Pass a parameter or write separate functions. |
||
|
|
