Browse Source

Remove use of deprecated `web` methods

Closes gh-13231
pull/13270/head
Stephane Nicoll 8 years ago
parent
commit
a124379dd9
  1. 7
      spring-boot-project/spring-boot/src/main/java/org/springframework/boot/builder/SpringApplicationBuilder.java

7
spring-boot-project/spring-boot/src/main/java/org/springframework/boot/builder/SpringApplicationBuilder.java

@ -189,7 +189,7 @@ public class SpringApplicationBuilder { @@ -189,7 +189,7 @@ public class SpringApplicationBuilder {
// It's not possible if embedded web server are enabled to support web contexts as
// parents because the servlets cannot be initialized at the right point in
// lifecycle.
web(false);
web(WebApplicationType.NONE);
// Probably not interested in multiple banners
bannerMode(Banner.Mode.OFF);
@ -208,8 +208,9 @@ public class SpringApplicationBuilder { @@ -208,8 +208,9 @@ public class SpringApplicationBuilder {
*/
public SpringApplicationBuilder parent(Class<?>... sources) {
if (this.parent == null) {
this.parent = new SpringApplicationBuilder(sources).web(false)
.properties(this.defaultProperties).environment(this.environment);
this.parent = new SpringApplicationBuilder(sources)
.web(WebApplicationType.NONE).properties(this.defaultProperties)
.environment(this.environment);
}
else {
this.parent.sources(sources);

Loading…
Cancel
Save