Merge pull request #4801 from mbenson

* gh-4801:
  Add mainApplicationClass accessor to SpringApplication
This commit is contained in:
Andy Wilkinson 2016-01-21 10:49:55 +00:00
commit 2039ed48c1
1 changed files with 8 additions and 0 deletions

View File

@ -914,6 +914,14 @@ public class SpringApplication {
&& "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
* obtain version information. By default the main application class will be deduced.