Add an accessor for webEnvironment to SpringApplication

Closes gh-6241
This commit is contained in:
Matt Benson 2016-06-28 10:58:57 -05:00 committed by Andy Wilkinson
parent 92bb24e365
commit 687199e688
1 changed files with 9 additions and 0 deletions

View File

@ -928,6 +928,15 @@ public class SpringApplication {
this.mainApplicationClass = mainApplicationClass;
}
/**
* Returns whether this {@link SpringApplication} is running within a web environment.
* @return {@code true} if running within a web environment, otherwise {@code false}.
* @see #setWebEnvironment(boolean)
*/
public boolean isWebEnvironment() {
return this.webEnvironment;
}
/**
* Sets if this application is running within a web environment. If not specified will
* attempt to deduce the environment based on the classpath.