Interface ContextCustomizer

Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

@FunctionalInterface public interface ContextCustomizer
Strategy interface for customizing application contexts that are created and managed by the Spring TestContext Framework.

Customizers are created by ContextCustomizerFactory implementations.

WARNING: implementations must implement correct equals and hashCode methods since customizers form part of the MergedContextConfiguration which is used as a cache key.

Since:
4.3
Author:
Phillip Webb, Sam Brannen
See Also:
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    customizeContext(org.springframework.context.ConfigurableApplicationContext context, MergedContextConfiguration mergedConfig)
    Customize the supplied ConfigurableApplicationContext after bean definitions have been loaded into the context but before the context has been refreshed.
  • Method Details

    • customizeContext

      void customizeContext(org.springframework.context.ConfigurableApplicationContext context, MergedContextConfiguration mergedConfig)
      Customize the supplied ConfigurableApplicationContext after bean definitions have been loaded into the context but before the context has been refreshed.
      Parameters:
      context - the context to customize
      mergedConfig - the merged context configuration