1

I am implementing a class that is supposed to have a instance in many different parts of a bigger project. How can I find out at runtime where an object of my class was created? For example in which class or in which package.

Christian
  • 1,209
  • 1
  • 16
  • 30

2 Answers2

1

Retrieve the stack of the call than access the single StackTraceElement as needed:

public YourConstructor() {
     ....
     StackTraceElement[] stackTraceElements = Thread.currentThread().getStackTrace();
     int depth = 1;   // Check for different depths is necessary.
     System.out.println(stackTraceElements[depth].getClassName());
     ...
}
Davide Lorenzo MARINO
  • 25,114
  • 4
  • 37
  • 52
0

Well you can use Java's stacktrace element.

Check here for that and more alternatives How do I find the caller of a method using stacktrace or reflection?

Community
  • 1
  • 1
saurav
  • 4,722
  • 9
  • 47
  • 87