Package org.springframework.integration.samples.cafe.xml

Source Code of org.springframework.integration.samples.cafe.xml.CafeDemoAppBaristaHotAmqp

/*
* Copyright 2002-2012 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
*      http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

package org.springframework.integration.samples.cafe.xml;

import java.io.IOException;

import org.springframework.context.support.AbstractApplicationContext;

/**
* Provides the 'main' method for running the Cafe Demo Hot Drink
* Barista application using AMQP. Before running, be sure to have a
* RabbitMQ broker started on localhost:5672 configured with the default
* guest | guest client credentials on the / vHost. When a drink order
* is placed on the hot-drinks queue, the Barista will prepare the drink
* and reply to the reply-to queue set by the sender.
* <p/>
* The relevant components are defined within the configuration files:
* ("cafeDemo-amqp-baristaHot-xml.xml", "cafeDemo-amqp-config-xml.xml").
* <p/>
* If deploying in SpringSource dmServer, the relevant ApplicationContext
* configuration is in the META-INF/spring directory instead.
*
* @author Tom McCuch
*/
public class CafeDemoAppBaristaHotAmqp {

  public static void main(String[] args) {
    AbstractApplicationContext context =
        CafeDemoAppUtilities.loadProfileContext(
          "/META-INF/spring/integration/amqp/cafeDemo-amqp-baristaHot-xml.xml",
          CafeDemoAppBaristaHotAmqp.class,CafeDemoAppUtilities.DEV);

    System.out.println("Press Enter/Return in the console to exit the Barista Hot App");

    try {
      System.in.read();
    }
    catch (IOException e) {
      context.close();
    }
    context.close();
  }
}
TOP

Related Classes of org.springframework.integration.samples.cafe.xml.CafeDemoAppBaristaHotAmqp

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.