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 com.jotadeveloper.dojo.BayeuxInitializer.java

@Component
public class BayeuxInitializer implements DestructionAwareBeanPostProcessor, ServletContextAware {
    private BayeuxServer bayeuxServer;
    private ServerAnnotationProcessor processor;

    @Inject

From source file org.jsecurity.spring.LifecycleBeanPostProcessor.java

/**
 * <p>Bean post processor for Spring that automatically calls the <tt>init()</tt> and/or
 * <tt>destroy()</tt> methods on JSecurity objects that implement the {@link org.jsecurity.util.Initializable}
 * or {@link org.jsecurity.util.Destroyable} interfaces, respectfully.  This post processor makes it easier
 * to configure JSecurity beans in Spring, since the user never has to worry about whether or not if they
 * have to specify init-method and destroy-method bean attributes.</p>

From source file org.springframework.context.support.ApplicationListenerDetector.java

/**
 * {@code BeanPostProcessor} that detects beans which implement the {@code ApplicationListener}
 * interface. This catches beans that can't reliably be detected by {@code getBeanNamesForType}
 * and related operations which only work against top-level beans.
 *
 * <p>With standard Java serialization, this post-processor won't get serialized as part of

From source file org.cometd.oort.spring.OortConfigurator.java

@Configuration
public class OortConfigurator implements DestructionAwareBeanPostProcessor, ServletContextAware {
    private ServletContext servletContext;
    private ServerAnnotationProcessor processor;

    @PostConstruct

From source file org.cometd.primer.BayeuxInitializer.java

@Component
public class BayeuxInitializer implements DestructionAwareBeanPostProcessor, ServletContextAware {
    private BayeuxServer bayeuxServer;
    private ServerAnnotationProcessor processor;

    @Inject

From source file com.styx.asyncservice.BayeuxInitializer.java

@Component
public class BayeuxInitializer implements DestructionAwareBeanPostProcessor, ServletContextAware {
    private BayeuxServer bayeuxServer;
    private ServerAnnotationProcessor processor;

    @Inject

From source file org.sculptor.framework.event.annotation.SubscribeBeanPostProcessor.java

public class SubscribeBeanPostProcessor
        implements DestructionAwareBeanPostProcessor, ApplicationContextAware, InitializingBean, Ordered {

    private final Logger log = LoggerFactory.getLogger(getClass());

    private ApplicationContext applicationContext;

From source file org.croteau.jmssubscriber.cometd.BayeuxInitializer.java

@Component
public class BayeuxInitializer implements DestructionAwareBeanPostProcessor, ServletContextAware {
    private BayeuxServer bayeuxServer;
    private ServerAnnotationProcessor processor;

    @Inject

From source file org.fornax.cartridges.sculptor.framework.event.annotation.SubscribeBeanPostProcessor.java

public class SubscribeBeanPostProcessor
        implements DestructionAwareBeanPostProcessor, ApplicationContextAware, InitializingBean, Ordered {

    private final Logger log = LoggerFactory.getLogger(getClass());

    private ApplicationContext applicationContext;

From source file org.solmix.runtime.support.spring.ResourceBeanPostProcessor.java

/**
 * 
 * @author solmix.f@gmail.com
 * @version $Id$  2014729
 */