Package org.springframework.amqp.helloworld.async

Source Code of org.springframework.amqp.helloworld.async.Producer

package org.springframework.amqp.helloworld.async;

import org.springframework.context.annotation.AnnotationConfigApplicationContext;

public class Producer {

  public static void main(String[] args) throws Exception {
    new AnnotationConfigApplicationContext(ProducerConfiguration.class);
  }

}
TOP

Related Classes of org.springframework.amqp.helloworld.async.Producer

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.