Commit 687199e6 authored by Matt Benson's avatar Matt Benson Committed by Andy Wilkinson

Add an accessor for webEnvironment to SpringApplication

Closes gh-6241
parent 92bb24e3
......@@ -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.
......
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