Interface AutoConfigurationImportListener

All Superinterfaces:
EventListener
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 AutoConfigurationImportListener extends EventListener
Listener that can be registered with spring.factories to receive details of imported auto-configurations.

An AutoConfigurationImportListener may implement any of the following Aware interfaces, and their respective methods will be called prior to onAutoConfigurationImportEvent(AutoConfigurationImportEvent):

Since:
1.5.0
Author:
Phillip Webb
  • Method Details

    • onAutoConfigurationImportEvent

      void onAutoConfigurationImportEvent(AutoConfigurationImportEvent event)
      Handle an auto-configuration import event.
      Parameters:
      event - the event to respond to