Package org.springframework.xd.dirt.util

Examples of org.springframework.xd.dirt.util.XdConfigLoggingInitializer


    return new HttpPutFormContentFilter();
  }

  @Bean
  public ApplicationListener<?> xdInitializer(ApplicationContext context) {
    XdConfigLoggingInitializer delegate = new XdConfigLoggingInitializer(false);
    delegate.setEnvironment(context.getEnvironment());
    return new SourceFilteringListener(context, delegate);
  }
View Full Code Here


  @Autowired
  private ZooKeeperConnection zooKeeperConnection;

  @Bean
  public ApplicationListener<?> xdInitializer(ApplicationContext context) {
    XdConfigLoggingInitializer delegate = new XdConfigLoggingInitializer(true);
    delegate.setEnvironment(context.getEnvironment());
    delegate.setContainerAttributes(containerAttributes);
    return new SourceFilteringListener(context, delegate);
  }
View Full Code Here

TOP

Related Classes of org.springframework.xd.dirt.util.XdConfigLoggingInitializer

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.