Package org.springframework.xd.dirt.server.options

Examples of org.springframework.xd.dirt.server.options.ContainerOptions


  public ContainerServerApplication run(String... args) {
    System.out.println(BannerUtils.displayBanner(getClass().getSimpleName(), null));

    try {
      ContainerBootstrapContext bootstrapContext = new ContainerBootstrapContext(new ContainerOptions());

      this.containerContext = new SpringApplicationBuilder(ContainerOptions.class, ParentConfiguration.class)
          .logStartupInfo(false)
          .profiles(XdProfiles.CONTAINER_PROFILE)
          .listeners(bootstrapContext.commandLineListener())
View Full Code Here

TOP

Related Classes of org.springframework.xd.dirt.server.options.ContainerOptions

Copyright © 2018 www.massapicom. 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.