Examples of XdConfigLoggingInitializer


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

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

  @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
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.