Package org.springone.push

Source Code of org.springone.push.Bootstrap

package org.springone.push;

import org.springframework.context.annotation.AnnotationConfigApplicationContext;

public class Bootstrap {

  /**
   * @param args
   * @throws InterruptedException
   */
  public static void main(String[] args) throws InterruptedException {
    AnnotationConfigApplicationContext context = new AnnotationConfigApplicationContext(Config.class);
    context.registerShutdownHook();
   
    while(true) {
      Thread.sleep(Long.MAX_VALUE);
    }
  }

}
TOP

Related Classes of org.springone.push.Bootstrap

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.