Example usage for org.springframework.jms.listener AbstractMessageListenerContainer afterPropertiesSet

List of usage examples for org.springframework.jms.listener AbstractMessageListenerContainer afterPropertiesSet

Introduction

In this page you can find the example usage for org.springframework.jms.listener AbstractMessageListenerContainer afterPropertiesSet.

Prototype

@Override
public void afterPropertiesSet() 

Source Link

Document

Delegates to #validateConfiguration() and #initialize() .

Usage

From source file:org.springframework.integration.jms.JmsDestinationBackedMessageChannel.java

@Override
public void afterPropertiesSet() throws Exception {
    super.afterPropertiesSet();
    AbstractMessageListenerContainer container = this.getListenerContainer();
    this.configureDispatcher(container.isPubSubDomain());
    container.setMessageListener(this);
    if (!container.isActive()) {
        container.afterPropertiesSet();
    }/*w  ww . java  2  s  .c o m*/
}