Make it easier to add new config options to ApplicationContextRunners

Closes gh-27690
This commit is contained in:
Andy Wilkinson 2021-08-17 12:15:30 +01:00
parent 456d741706
commit 228e4e3bc8
4 changed files with 217 additions and 83 deletions

View File

@ -1,5 +1,5 @@
/* /*
* Copyright 2012-2020 the original author or authors. * Copyright 2012-2021 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
@ -105,31 +105,49 @@ import org.springframework.util.Assert;
*/ */
public abstract class AbstractApplicationContextRunner<SELF extends AbstractApplicationContextRunner<SELF, C, A>, C extends ConfigurableApplicationContext, A extends ApplicationContextAssertProvider<C>> { public abstract class AbstractApplicationContextRunner<SELF extends AbstractApplicationContextRunner<SELF, C, A>, C extends ConfigurableApplicationContext, A extends ApplicationContextAssertProvider<C>> {
private final Supplier<C> contextFactory; private final RunnerConfiguration<C> runnerConfiguration;
private final boolean allowBeanDefinitionOverriding; private final Function<RunnerConfiguration<C>, SELF> instanceFactory;
private final List<ApplicationContextInitializer<? super C>> initializers;
private final TestPropertyValues environmentProperties;
private final TestPropertyValues systemProperties;
private final ClassLoader classLoader;
private final ApplicationContext parent;
private final List<BeanRegistration<?>> beanRegistrations;
private final List<Configurations> configurations;
/** /**
* Create a new {@link AbstractApplicationContextRunner} instance. * Create a new {@link AbstractApplicationContextRunner} instance.
* @param contextFactory the factory used to create the actual context * @param contextFactory the factory used to create the actual context
* @deprecated since 2.6.0 for removal in 2.8.0 in favor of
* {@link #AbstractApplicationContextRunner(Supplier, Function)}
*/ */
@Deprecated
protected AbstractApplicationContextRunner(Supplier<C> contextFactory) { protected AbstractApplicationContextRunner(Supplier<C> contextFactory) {
this(contextFactory, false, Collections.emptyList(), TestPropertyValues.empty(), TestPropertyValues.empty(), Assert.notNull(contextFactory, "ContextFactory must not be null");
null, null, Collections.emptyList(), Collections.emptyList()); this.runnerConfiguration = new RunnerConfiguration<>(contextFactory);
this.instanceFactory = this::legacyNewInstance;
}
/**
* Create a new {@link AbstractApplicationContextRunner} instance.
* @param contextFactory the factory used to create the actual context
* @param instanceFactory the factory used to create new instance of the runner
* @since 2.6.0
*/
protected AbstractApplicationContextRunner(Supplier<C> contextFactory,
Function<RunnerConfiguration<C>, SELF> instanceFactory) {
Assert.notNull(contextFactory, "ContextFactory must not be null");
Assert.notNull(contextFactory, "RunnerConfiguration must not be null");
this.runnerConfiguration = new RunnerConfiguration<>(contextFactory);
this.instanceFactory = instanceFactory;
}
/**
* Create a new {@link AbstractApplicationContextRunner} instance.
* @param configuration the configuration for the runner to use
* @param instanceFactory the factory used to create new instance of the runner
* @since 2.6.0
*/
protected AbstractApplicationContextRunner(RunnerConfiguration<C> configuration,
Function<RunnerConfiguration<C>, SELF> instanceFactory) {
Assert.notNull(configuration, "RunnerConfiguration must not be null");
Assert.notNull(instanceFactory, "instanceFactory must not be null");
this.runnerConfiguration = configuration;
this.instanceFactory = instanceFactory;
} }
/** /**
@ -143,7 +161,10 @@ public abstract class AbstractApplicationContextRunner<SELF extends AbstractAppl
* @param parent the parent * @param parent the parent
* @param beanRegistrations the bean registrations * @param beanRegistrations the bean registrations
* @param configurations the configuration * @param configurations the configuration
* @deprecated since 2.6.0 for removal in 2.8.0 in favor of
* {@link #AbstractApplicationContextRunner(Supplier, Function)}
*/ */
@Deprecated
protected AbstractApplicationContextRunner(Supplier<C> contextFactory, boolean allowBeanDefinitionOverriding, protected AbstractApplicationContextRunner(Supplier<C> contextFactory, boolean allowBeanDefinitionOverriding,
List<ApplicationContextInitializer<? super C>> initializers, TestPropertyValues environmentProperties, List<ApplicationContextInitializer<? super C>> initializers, TestPropertyValues environmentProperties,
TestPropertyValues systemProperties, ClassLoader classLoader, ApplicationContext parent, TestPropertyValues systemProperties, ClassLoader classLoader, ApplicationContext parent,
@ -153,15 +174,17 @@ public abstract class AbstractApplicationContextRunner<SELF extends AbstractAppl
Assert.notNull(systemProperties, "SystemProperties must not be null"); Assert.notNull(systemProperties, "SystemProperties must not be null");
Assert.notNull(configurations, "Configurations must not be null"); Assert.notNull(configurations, "Configurations must not be null");
Assert.notNull(initializers, "Initializers must not be null"); Assert.notNull(initializers, "Initializers must not be null");
this.contextFactory = contextFactory; RunnerConfiguration<C> configuration = new RunnerConfiguration<>(contextFactory);
this.allowBeanDefinitionOverriding = allowBeanDefinitionOverriding; configuration.allowBeanDefinitionOverriding = allowBeanDefinitionOverriding;
this.initializers = Collections.unmodifiableList(initializers); configuration.initializers = Collections.unmodifiableList(initializers);
this.environmentProperties = environmentProperties; configuration.environmentProperties = environmentProperties;
this.systemProperties = systemProperties; configuration.systemProperties = systemProperties;
this.classLoader = classLoader; configuration.classLoader = classLoader;
this.parent = parent; configuration.parent = parent;
this.beanRegistrations = Collections.unmodifiableList(beanRegistrations); configuration.beanRegistrations = Collections.unmodifiableList(beanRegistrations);
this.configurations = Collections.unmodifiableList(configurations); configuration.configurations = Collections.unmodifiableList(configurations);
this.runnerConfiguration = configuration;
this.instanceFactory = this::legacyNewInstance;
} }
/** /**
@ -173,9 +196,7 @@ public abstract class AbstractApplicationContextRunner<SELF extends AbstractAppl
* @see DefaultListableBeanFactory#setAllowBeanDefinitionOverriding(boolean) * @see DefaultListableBeanFactory#setAllowBeanDefinitionOverriding(boolean)
*/ */
public SELF withAllowBeanDefinitionOverriding(boolean allowBeanDefinitionOverriding) { public SELF withAllowBeanDefinitionOverriding(boolean allowBeanDefinitionOverriding) {
return newInstance(this.contextFactory, allowBeanDefinitionOverriding, this.initializers, return newInstance(this.runnerConfiguration.withAllowBeanDefinitionOverriding(allowBeanDefinitionOverriding));
this.environmentProperties, this.systemProperties, this.classLoader, this.parent,
this.beanRegistrations, this.configurations);
} }
/** /**
@ -186,9 +207,7 @@ public abstract class AbstractApplicationContextRunner<SELF extends AbstractAppl
*/ */
public SELF withInitializer(ApplicationContextInitializer<? super C> initializer) { public SELF withInitializer(ApplicationContextInitializer<? super C> initializer) {
Assert.notNull(initializer, "Initializer must not be null"); Assert.notNull(initializer, "Initializer must not be null");
return newInstance(this.contextFactory, this.allowBeanDefinitionOverriding, add(this.initializers, initializer), return newInstance(this.runnerConfiguration.withInitializer(initializer));
this.environmentProperties, this.systemProperties, this.classLoader, this.parent,
this.beanRegistrations, this.configurations);
} }
/** /**
@ -202,9 +221,7 @@ public abstract class AbstractApplicationContextRunner<SELF extends AbstractAppl
* @see #withSystemProperties(String...) * @see #withSystemProperties(String...)
*/ */
public SELF withPropertyValues(String... pairs) { public SELF withPropertyValues(String... pairs) {
return newInstance(this.contextFactory, this.allowBeanDefinitionOverriding, this.initializers, return newInstance(this.runnerConfiguration.withPropertyValues(pairs));
this.environmentProperties.and(pairs), this.systemProperties, this.classLoader, this.parent,
this.beanRegistrations, this.configurations);
} }
/** /**
@ -218,9 +235,7 @@ public abstract class AbstractApplicationContextRunner<SELF extends AbstractAppl
* @see #withSystemProperties(String...) * @see #withSystemProperties(String...)
*/ */
public SELF withSystemProperties(String... pairs) { public SELF withSystemProperties(String... pairs) {
return newInstance(this.contextFactory, this.allowBeanDefinitionOverriding, this.initializers, return newInstance(this.runnerConfiguration.withSystemProperties(pairs));
this.environmentProperties, this.systemProperties.and(pairs), this.classLoader, this.parent,
this.beanRegistrations, this.configurations);
} }
/** /**
@ -231,9 +246,7 @@ public abstract class AbstractApplicationContextRunner<SELF extends AbstractAppl
* @see FilteredClassLoader * @see FilteredClassLoader
*/ */
public SELF withClassLoader(ClassLoader classLoader) { public SELF withClassLoader(ClassLoader classLoader) {
return newInstance(this.contextFactory, this.allowBeanDefinitionOverriding, this.initializers, return newInstance(this.runnerConfiguration.withClassLoader(classLoader));
this.environmentProperties, this.systemProperties, classLoader, this.parent, this.beanRegistrations,
this.configurations);
} }
/** /**
@ -243,9 +256,7 @@ public abstract class AbstractApplicationContextRunner<SELF extends AbstractAppl
* @return a new instance with the updated parent * @return a new instance with the updated parent
*/ */
public SELF withParent(ApplicationContext parent) { public SELF withParent(ApplicationContext parent) {
return newInstance(this.contextFactory, this.allowBeanDefinitionOverriding, this.initializers, return newInstance(this.runnerConfiguration.withParent(parent));
this.environmentProperties, this.systemProperties, this.classLoader, parent, this.beanRegistrations,
this.configurations);
} }
/** /**
@ -280,9 +291,7 @@ public abstract class AbstractApplicationContextRunner<SELF extends AbstractAppl
* @return a new instance with the updated bean * @return a new instance with the updated bean
*/ */
public <T> SELF withBean(String name, Class<T> type, Object... constructorArgs) { public <T> SELF withBean(String name, Class<T> type, Object... constructorArgs) {
return newInstance(this.contextFactory, this.allowBeanDefinitionOverriding, this.initializers, return newInstance(this.runnerConfiguration.withBean(name, type, constructorArgs));
this.environmentProperties, this.systemProperties, this.classLoader, this.parent,
add(this.beanRegistrations, new BeanRegistration<>(name, type, constructorArgs)), this.configurations);
} }
/** /**
@ -320,10 +329,7 @@ public abstract class AbstractApplicationContextRunner<SELF extends AbstractAppl
*/ */
public <T> SELF withBean(String name, Class<T> type, Supplier<T> supplier, public <T> SELF withBean(String name, Class<T> type, Supplier<T> supplier,
BeanDefinitionCustomizer... customizers) { BeanDefinitionCustomizer... customizers) {
return newInstance(this.contextFactory, this.allowBeanDefinitionOverriding, this.initializers, return newInstance(this.runnerConfiguration.withBean(name, type, supplier, customizers));
this.environmentProperties, this.systemProperties, this.classLoader, this.parent,
add(this.beanRegistrations, new BeanRegistration<>(name, type, supplier, customizers)),
this.configurations);
} }
/** /**
@ -343,9 +349,7 @@ public abstract class AbstractApplicationContextRunner<SELF extends AbstractAppl
*/ */
public SELF withConfiguration(Configurations configurations) { public SELF withConfiguration(Configurations configurations) {
Assert.notNull(configurations, "Configurations must not be null"); Assert.notNull(configurations, "Configurations must not be null");
return newInstance(this.contextFactory, this.allowBeanDefinitionOverriding, this.initializers, return newInstance(this.runnerConfiguration.withConfiguration(configurations));
this.environmentProperties, this.systemProperties, this.classLoader, this.parent,
this.beanRegistrations, add(this.configurations, configurations));
} }
/** /**
@ -358,17 +362,24 @@ public abstract class AbstractApplicationContextRunner<SELF extends AbstractAppl
return customizer.apply((SELF) this); return customizer.apply((SELF) this);
} }
private <T> List<T> add(List<T> list, T element) { @Deprecated
List<T> result = new ArrayList<>(list); private SELF legacyNewInstance(RunnerConfiguration<C> configuration) {
result.add(element); return newInstance(configuration.contextFactory, configuration.allowBeanDefinitionOverriding,
return result; configuration.initializers, configuration.environmentProperties, configuration.systemProperties,
configuration.classLoader, configuration.parent, configuration.beanRegistrations,
configuration.configurations);
} }
@Deprecated
protected abstract SELF newInstance(Supplier<C> contextFactory, boolean allowBeanDefinitionOverriding, protected abstract SELF newInstance(Supplier<C> contextFactory, boolean allowBeanDefinitionOverriding,
List<ApplicationContextInitializer<? super C>> initializers, TestPropertyValues environmentProperties, List<ApplicationContextInitializer<? super C>> initializers, TestPropertyValues environmentProperties,
TestPropertyValues systemProperties, ClassLoader classLoader, ApplicationContext parent, TestPropertyValues systemProperties, ClassLoader classLoader, ApplicationContext parent,
List<BeanRegistration<?>> beanRegistrations, List<Configurations> configurations); List<BeanRegistration<?>> beanRegistrations, List<Configurations> configurations);
private SELF newInstance(RunnerConfiguration<C> runnerConfiguration) {
return this.instanceFactory.apply(runnerConfiguration);
}
/** /**
* Create and refresh a new {@link ApplicationContext} based on the current state of * Create and refresh a new {@link ApplicationContext} based on the current state of
* this loader. The context is consumed by the specified {@code consumer} and closed * this loader. The context is consumed by the specified {@code consumer} and closed
@ -378,12 +389,13 @@ public abstract class AbstractApplicationContextRunner<SELF extends AbstractAppl
*/ */
@SuppressWarnings("unchecked") @SuppressWarnings("unchecked")
public SELF run(ContextConsumer<? super A> consumer) { public SELF run(ContextConsumer<? super A> consumer) {
withContextClassLoader(this.classLoader, () -> this.systemProperties.applyToSystemProperties(() -> { withContextClassLoader(this.runnerConfiguration.classLoader,
try (A context = createAssertableContext()) { () -> this.runnerConfiguration.systemProperties.applyToSystemProperties(() -> {
accept(consumer, context); try (A context = createAssertableContext()) {
} accept(consumer, context);
return null; }
})); return null;
}));
return (SELF) this; return (SELF) this;
} }
@ -413,11 +425,11 @@ public abstract class AbstractApplicationContextRunner<SELF extends AbstractAppl
} }
private C createAndLoadContext() { private C createAndLoadContext() {
C context = this.contextFactory.get(); C context = this.runnerConfiguration.contextFactory.get();
ConfigurableListableBeanFactory beanFactory = context.getBeanFactory(); ConfigurableListableBeanFactory beanFactory = context.getBeanFactory();
if (beanFactory instanceof DefaultListableBeanFactory) { if (beanFactory instanceof DefaultListableBeanFactory) {
((DefaultListableBeanFactory) beanFactory) ((DefaultListableBeanFactory) beanFactory)
.setAllowBeanDefinitionOverriding(this.allowBeanDefinitionOverriding); .setAllowBeanDefinitionOverriding(this.runnerConfiguration.allowBeanDefinitionOverriding);
} }
try { try {
configureContext(context); configureContext(context);
@ -430,20 +442,20 @@ public abstract class AbstractApplicationContextRunner<SELF extends AbstractAppl
} }
private void configureContext(C context) { private void configureContext(C context) {
if (this.parent != null) { if (this.runnerConfiguration.parent != null) {
context.setParent(this.parent); context.setParent(this.runnerConfiguration.parent);
} }
if (this.classLoader != null) { if (this.runnerConfiguration.classLoader != null) {
Assert.isInstanceOf(DefaultResourceLoader.class, context); Assert.isInstanceOf(DefaultResourceLoader.class, context);
((DefaultResourceLoader) context).setClassLoader(this.classLoader); ((DefaultResourceLoader) context).setClassLoader(this.runnerConfiguration.classLoader);
} }
this.environmentProperties.applyTo(context); this.runnerConfiguration.environmentProperties.applyTo(context);
Class<?>[] classes = Configurations.getClasses(this.configurations); Class<?>[] classes = Configurations.getClasses(this.runnerConfiguration.configurations);
if (classes.length > 0) { if (classes.length > 0) {
((AnnotationConfigRegistry) context).register(classes); ((AnnotationConfigRegistry) context).register(classes);
} }
this.beanRegistrations.forEach((registration) -> registration.apply(context)); this.runnerConfiguration.beanRegistrations.forEach((registration) -> registration.apply(context));
this.initializers.forEach((initializer) -> initializer.initialize(context)); this.runnerConfiguration.initializers.forEach((initializer) -> initializer.initialize(context));
context.refresh(); context.refresh();
} }
@ -466,7 +478,7 @@ public abstract class AbstractApplicationContextRunner<SELF extends AbstractAppl
* *
* @param <T> the bean type * @param <T> the bean type
*/ */
protected final class BeanRegistration<T> { protected static final class BeanRegistration<T> {
Consumer<GenericApplicationContext> registrar; Consumer<GenericApplicationContext> registrar;
@ -486,4 +498,107 @@ public abstract class AbstractApplicationContextRunner<SELF extends AbstractAppl
} }
protected static final class RunnerConfiguration<C extends ConfigurableApplicationContext> {
private final Supplier<C> contextFactory;
private boolean allowBeanDefinitionOverriding = false;
private List<ApplicationContextInitializer<? super C>> initializers = Collections.emptyList();
private TestPropertyValues environmentProperties = TestPropertyValues.empty();
private TestPropertyValues systemProperties = TestPropertyValues.empty();
private ClassLoader classLoader;
private ApplicationContext parent;
private List<BeanRegistration<?>> beanRegistrations = Collections.emptyList();
private List<Configurations> configurations = Collections.emptyList();
private RunnerConfiguration(Supplier<C> contextFactory) {
this.contextFactory = contextFactory;
}
private RunnerConfiguration(RunnerConfiguration<C> source) {
this.contextFactory = source.contextFactory;
this.allowBeanDefinitionOverriding = source.allowBeanDefinitionOverriding;
this.initializers = source.initializers;
this.environmentProperties = source.environmentProperties;
this.systemProperties = source.systemProperties;
this.classLoader = source.classLoader;
this.parent = source.parent;
this.beanRegistrations = source.beanRegistrations;
this.configurations = source.configurations;
}
private RunnerConfiguration<C> withAllowBeanDefinitionOverriding(boolean allowBeanDefinitionOverriding) {
RunnerConfiguration<C> config = new RunnerConfiguration<>(this);
config.allowBeanDefinitionOverriding = allowBeanDefinitionOverriding;
return config;
}
private RunnerConfiguration<C> withInitializer(ApplicationContextInitializer<? super C> initializer) {
Assert.notNull(initializer, "Initializer must not be null");
RunnerConfiguration<C> config = new RunnerConfiguration<>(this);
config.initializers = add(config.initializers, initializer);
return config;
}
private RunnerConfiguration<C> withPropertyValues(String... pairs) {
RunnerConfiguration<C> config = new RunnerConfiguration<>(this);
config.environmentProperties = config.environmentProperties.and(pairs);
return config;
}
private RunnerConfiguration<C> withSystemProperties(String... pairs) {
RunnerConfiguration<C> config = new RunnerConfiguration<>(this);
config.systemProperties = config.systemProperties.and(pairs);
return config;
}
private RunnerConfiguration<C> withClassLoader(ClassLoader classLoader) {
RunnerConfiguration<C> config = new RunnerConfiguration<>(this);
config.classLoader = classLoader;
return config;
}
private RunnerConfiguration<C> withParent(ApplicationContext parent) {
RunnerConfiguration<C> config = new RunnerConfiguration<>(this);
config.parent = parent;
return config;
}
private <T> RunnerConfiguration<C> withBean(String name, Class<T> type, Object... constructorArgs) {
RunnerConfiguration<C> config = new RunnerConfiguration<>(this);
config.beanRegistrations = add(config.beanRegistrations,
new BeanRegistration<>(name, type, constructorArgs));
return config;
}
private <T> RunnerConfiguration<C> withBean(String name, Class<T> type, Supplier<T> supplier,
BeanDefinitionCustomizer... customizers) {
RunnerConfiguration<C> config = new RunnerConfiguration<>(this);
config.beanRegistrations = add(config.beanRegistrations,
new BeanRegistration<>(name, type, supplier, customizers));
return config;
}
private RunnerConfiguration<C> withConfiguration(Configurations configurations) {
Assert.notNull(configurations, "Configurations must not be null");
RunnerConfiguration<C> config = new RunnerConfiguration<>(this);
config.configurations = add(config.configurations, configurations);
return config;
}
private static <T> List<T> add(List<T> list, T element) {
List<T> result = new ArrayList<>(list);
result.add(element);
return result;
}
}
} }

View File

@ -1,5 +1,5 @@
/* /*
* Copyright 2012-2020 the original author or authors. * Copyright 2012-2021 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
@ -55,9 +55,14 @@ public class ApplicationContextRunner extends
* @param contextFactory a supplier that returns a new instance on each call * @param contextFactory a supplier that returns a new instance on each call
*/ */
public ApplicationContextRunner(Supplier<ConfigurableApplicationContext> contextFactory) { public ApplicationContextRunner(Supplier<ConfigurableApplicationContext> contextFactory) {
super(contextFactory); super(contextFactory, ApplicationContextRunner::new);
} }
private ApplicationContextRunner(RunnerConfiguration<ConfigurableApplicationContext> runnerConfiguration) {
super(runnerConfiguration, ApplicationContextRunner::new);
}
@Deprecated
private ApplicationContextRunner(Supplier<ConfigurableApplicationContext> contextFactory, private ApplicationContextRunner(Supplier<ConfigurableApplicationContext> contextFactory,
boolean allowBeanDefinitionOverriding, boolean allowBeanDefinitionOverriding,
List<ApplicationContextInitializer<? super ConfigurableApplicationContext>> initializers, List<ApplicationContextInitializer<? super ConfigurableApplicationContext>> initializers,
@ -69,6 +74,7 @@ public class ApplicationContextRunner extends
} }
@Override @Override
@Deprecated
protected ApplicationContextRunner newInstance(Supplier<ConfigurableApplicationContext> contextFactory, protected ApplicationContextRunner newInstance(Supplier<ConfigurableApplicationContext> contextFactory,
boolean allowBeanDefinitionOverriding, boolean allowBeanDefinitionOverriding,
List<ApplicationContextInitializer<? super ConfigurableApplicationContext>> initializers, List<ApplicationContextInitializer<? super ConfigurableApplicationContext>> initializers,

View File

@ -1,5 +1,5 @@
/* /*
* Copyright 2012-2020 the original author or authors. * Copyright 2012-2021 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
@ -55,9 +55,15 @@ public final class ReactiveWebApplicationContextRunner extends
* @param contextFactory a supplier that returns a new instance on each call * @param contextFactory a supplier that returns a new instance on each call
*/ */
public ReactiveWebApplicationContextRunner(Supplier<ConfigurableReactiveWebApplicationContext> contextFactory) { public ReactiveWebApplicationContextRunner(Supplier<ConfigurableReactiveWebApplicationContext> contextFactory) {
super(contextFactory); super(contextFactory, ReactiveWebApplicationContextRunner::new);
} }
private ReactiveWebApplicationContextRunner(
RunnerConfiguration<ConfigurableReactiveWebApplicationContext> configuration) {
super(configuration, ReactiveWebApplicationContextRunner::new);
}
@Deprecated
private ReactiveWebApplicationContextRunner(Supplier<ConfigurableReactiveWebApplicationContext> contextFactory, private ReactiveWebApplicationContextRunner(Supplier<ConfigurableReactiveWebApplicationContext> contextFactory,
boolean allowBeanDefinitionOverriding, boolean allowBeanDefinitionOverriding,
List<ApplicationContextInitializer<? super ConfigurableReactiveWebApplicationContext>> initializers, List<ApplicationContextInitializer<? super ConfigurableReactiveWebApplicationContext>> initializers,
@ -69,6 +75,7 @@ public final class ReactiveWebApplicationContextRunner extends
} }
@Override @Override
@Deprecated
protected ReactiveWebApplicationContextRunner newInstance( protected ReactiveWebApplicationContextRunner newInstance(
Supplier<ConfigurableReactiveWebApplicationContext> contextFactory, boolean allowBeanDefinitionOverriding, Supplier<ConfigurableReactiveWebApplicationContext> contextFactory, boolean allowBeanDefinitionOverriding,
List<ApplicationContextInitializer<? super ConfigurableReactiveWebApplicationContext>> initializers, List<ApplicationContextInitializer<? super ConfigurableReactiveWebApplicationContext>> initializers,

View File

@ -1,5 +1,5 @@
/* /*
* Copyright 2012-2020 the original author or authors. * Copyright 2012-2021 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
@ -59,9 +59,14 @@ public final class WebApplicationContextRunner extends
* @param contextFactory a supplier that returns a new instance on each call * @param contextFactory a supplier that returns a new instance on each call
*/ */
public WebApplicationContextRunner(Supplier<ConfigurableWebApplicationContext> contextFactory) { public WebApplicationContextRunner(Supplier<ConfigurableWebApplicationContext> contextFactory) {
super(contextFactory); super(contextFactory, WebApplicationContextRunner::new);
} }
private WebApplicationContextRunner(RunnerConfiguration<ConfigurableWebApplicationContext> configuration) {
super(configuration, WebApplicationContextRunner::new);
}
@Deprecated
private WebApplicationContextRunner(Supplier<ConfigurableWebApplicationContext> contextFactory, private WebApplicationContextRunner(Supplier<ConfigurableWebApplicationContext> contextFactory,
boolean allowBeanDefinitionOverriding, boolean allowBeanDefinitionOverriding,
List<ApplicationContextInitializer<? super ConfigurableWebApplicationContext>> initializers, List<ApplicationContextInitializer<? super ConfigurableWebApplicationContext>> initializers,
@ -73,6 +78,7 @@ public final class WebApplicationContextRunner extends
} }
@Override @Override
@Deprecated
protected WebApplicationContextRunner newInstance(Supplier<ConfigurableWebApplicationContext> contextFactory, protected WebApplicationContextRunner newInstance(Supplier<ConfigurableWebApplicationContext> contextFactory,
boolean allowBeanDefinitionOverriding, boolean allowBeanDefinitionOverriding,
List<ApplicationContextInitializer<? super ConfigurableWebApplicationContext>> initializers, List<ApplicationContextInitializer<? super ConfigurableWebApplicationContext>> initializers,