vote up 2 vote down star

I want to determine the class name where my application started, the one with the main() method, at runtime, but I'm in another thread and my stacktrace doesn't go all the way back to the original class.

I've searched System properties and everything that ClassLoader has to offer and come up with nothing. Is this information just not available?

Thanks.

flag
3  
I'm curious if you could explain why you are looking for this..? – matt b Jun 2 at 14:41
For setting log levels in a common config file for multiple applications. – Erik R. Jun 2 at 14:55
I agree with matt b. In my opinion that should never be necessary. It sounds as if your system tries to be more self-aware than is good for itself. – Joachim Sauer Jun 2 at 14:56
1  
@Erik: then why don't you simply set the log level in the respective main classes or pass some argument to the class responsible for setting the log level? – Joachim Sauer Jun 2 at 14:57
@Joachim: to allow changing of log level at runtime (via file modification) without restarting the JVM. – Erik R. Jun 2 at 15:00
show 2 more comments

5 Answers

vote up 0 vote down

I suggest to put this information into a system property. This is usually simple to do when you start your application from a script.

If you can't do that, I suggest to set the property in the main() method of every application. The most simple way here would be to have every app derive it's "main class" from a common base class and run an init step in there. I often do this for command line processing:

public class Demo extends Main {
    main(String[] args) {
        Main._main(new Demo (), args);
    }

    // This gets called by Main._main()
    public void run (String[] args) {
    }
}
link|flag
vote up 1 vote down

Given the clarification, I suggest using "Parameterisation from Above". You have the information to start with, keep hold of it.

I did put in an RFE 4827318 (six years ago!) for something like this for use with test runners.

link|flag
vote up 1 vote down check

I figured it out. Can anyone tell me if this environment variable will always be around in other java implementations across operating systems?

public static String getMainClassName()
{
  for(final Map.Entry<String, String> entry : System.getenv().entrySet())
  {
    if(entry.getKey().startsWith("JAVA_MAIN_CLASS"))
      return entry.getValue();
  }
  throw new IllegalStateException("Cannot determine main class.")
}
link|flag
Why not simply System.getenv("JAVA_MAIN_CLASS")? – mmyers Jun 2 at 15:02
Mine had a number (pid?) tacked onto the end of the key. e.g. "JAVA_MAIN_CLASS_13833" Hence the startsWith(). – Erik R. Jun 2 at 15:04
That's not available on IBM 1.5.0 JRE, which I'm using – Harry Lime Jun 2 at 15:08
for IBM it is available in IBM_JAVA_COMMAND_LINED though, but you'd have to parse the string. This is exactly what's in the value: D:\path-to\javaw.exe -classpath D:\workspace\bin com.mypackage.Runner – Harry Lime Jun 2 at 15:13
Is that your IDE doing that? – Tom Hawtin - tackline Jun 2 at 15:23
show 2 more comments
vote up 0 vote down

How about something like:

Map<Thread,StackTraceElement[]> stackTraceMap = Thread.getAllStackTraces();
for (Thread t : stackTraceMap.keySet())
{
	if ("main".equals(t.getName()))
	{
		StackTraceElement[] mainStackTrace = stackTraceMap.get(t);
		for (StackTraceElement element : mainStackTrace)
		{
			System.out.println(element);
		}
	}
}

This will give you something like

java.lang.Object.wait(Native Method)
java.lang.Object.wait(Object.java:231)
java.lang.Thread.join(Thread.java:680)
com.mypackage.Runner.main(Runner.java:10)

The main thread is probably not guarenteed to be called "main" though - might be better to check for a stack trace element that contains (main

Edit if the main thread has exited, this is no good!

link|flag
I've tried this. It's not in my stack. This was my first guess, too. – Erik R. Jun 2 at 14:52
I added an edit as you posted this comment. If the thread doesn't exist anymore, I'm not sure there's much that can be done – Harry Lime Jun 2 at 14:54
vote up 2 vote down

Try using Thread.getAllStackTraces(). It returns a Map of the stack traces from all running threads, not just the current one.

link|flag
That doesn't really help, since the thread that initially ran the main class need not be running any more. – Joachim Sauer Jun 2 at 14:55
2  
(Doesn't help in every conceivable case) != (doesn't help at all). – Bill the Lizard Jun 2 at 15:13
1  
I agree and realized that after posting the comment. Still it's good to be aware of the limits of a solution. – Joachim Sauer Jun 2 at 15:43
No hard feelings. :) After reading the revised question and several comments on other answers I realize this isn't going to solve the OP's problem. Still, I think it might be helpful to other people going down the same path. – Bill the Lizard Jun 2 at 15:53

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.