Browse Source

Merge pull request #6241 from Matt Benson

* gh-6241:
  Add an accessor for webEnvironment to SpringApplication
pull/6304/head
Andy Wilkinson 10 years ago
parent
commit
fdc2e8407e
  1. 9
      spring-boot/src/main/java/org/springframework/boot/SpringApplication.java

9
spring-boot/src/main/java/org/springframework/boot/SpringApplication.java

@ -928,6 +928,15 @@ public class SpringApplication { @@ -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.

Loading…
Cancel
Save