Commit 34b1de6c authored by Matt Benson's avatar Matt Benson Committed by Andy Wilkinson

Add mainApplicationClass accessor to SpringApplication

Closes gh-4801
parent 03669002
...@@ -914,6 +914,14 @@ public class SpringApplication { ...@@ -914,6 +914,14 @@ public class SpringApplication {
&& "main".equals(currentThread.getThreadGroup().getName()); && "main".equals(currentThread.getThreadGroup().getName());
} }
/**
* Returns the main application class that has been deduced or explicitly configured.
* @return the main application class or {@code null}
*/
public Class<?> getMainApplicationClass() {
return this.mainApplicationClass;
}
/** /**
* Set a specific main application class that will be used as a log source and to * Set a specific main application class that will be used as a log source and to
* obtain version information. By default the main application class will be deduced. * obtain version information. By default the main application class will be deduced.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment