Example usage for org.springframework.beans.factory.config DestructionAwareBeanPostProcessor interface-usage

List of usage examples for org.springframework.beans.factory.config DestructionAwareBeanPostProcessor interface-usage

Introduction

In this page you can find the example usage for org.springframework.beans.factory.config DestructionAwareBeanPostProcessor interface-usage.

Usage

From source file org.n52.aviation.aviationfx.spring.LifecycleBeanPostProcessor.java

public class LifecycleBeanPostProcessor implements DestructionAwareBeanPostProcessor, PriorityOrdered {
    private static final Logger LOG = LoggerFactory.getLogger(LifecycleBeanPostProcessor.class);

    private int order = Ordered.LOWEST_PRECEDENCE;

    @Override

From source file org.springframework.beans.factory.annotation.InitDestroyAnnotationBeanPostProcessor.java

/**
 * {@link org.springframework.beans.factory.config.BeanPostProcessor} implementation
 * that invokes annotated init and destroy methods. Allows for an annotation
 * alternative to Spring's {@link org.springframework.beans.factory.InitializingBean}
 * and {@link org.springframework.beans.factory.DisposableBean} callback interfaces.
 *

From source file org.springframework.integration.config.IntegrationManagementConfigurer.java

/**
 * Configures beans that implement {@link IntegrationManagement}.
 * Configures counts, stats, logging for all (or selected) components.
 *
 * @author Gary Russell
 * @author Artem Bilan

From source file org.jahia.modules.gateway.mail.MailDecoderRegistrator.java

/**
 * Bean post processor class that is aimed for registering and unregistering {@link MailDecoder}s.
 * 
 * @author Sergiy Shyrkov
 */
public class MailDecoderRegistrator implements BeanPostProcessor, DestructionAwareBeanPostProcessor {

From source file org.springframework.scheduling.annotation.ScheduledAnnotationBeanPostProcessor.java

/**
 * Bean post-processor that registers methods annotated with @{@link Scheduled}
 * to be invoked by a {@link org.springframework.scheduling.TaskScheduler} according
 * to the "fixedRate", "fixedDelay", or "cron" expression provided via the annotation.
 *
 * <p>This post-processor is automatically registered by Spring's