public interface

ApplicationContextInitializer

org.springframework.context.ApplicationContextInitializer<C extends org.springframework.context.ConfigurableApplicationContext>

Class Overview

Callback interface for initializing a Spring ConfigurableApplicationContext prior to being refreshed.

ApplicationContextInitializer processors are encouraged to detect whether Spring's Ordered or PriorityOrdered interfaces are also implemented and sort instances accordingly if so prior to invocation.

Summary

Public Methods
abstract void initialize(C applicationContext)
Initialize the given application context.

Public Methods

public abstract void initialize (C applicationContext)

Initialize the given application context.

Parameters
applicationContext the application to configure