Package org.springframework.xd.dirt.module

Examples of org.springframework.xd.dirt.module.ResourceModuleRegistry


      ((ConfigurableEnvironment) environment).getPropertySources().addFirst(new MapPropertySource("foo", map));
    }

    @Bean
    public ModuleRegistry moduleRegistry() {
      return new ResourceModuleRegistry("file:../modules");
    }
View Full Code Here


      ((ConfigurableEnvironment) environment).getPropertySources().addFirst(new MapPropertySource("foo", map));
    }

    @Bean
    public ModuleRegistry testModuleRegistry() {
      return new ResourceModuleRegistry("classpath:testmodules");
    }
View Full Code Here

  @ComponentScan(basePackageClasses = CompletionProvider.class)
  public static class Config {

    @Bean
    public ModuleRegistry moduleRegistry() {
      return new ResourceModuleRegistry("file:../modules");
    }
View Full Code Here

TOP

Related Classes of org.springframework.xd.dirt.module.ResourceModuleRegistry

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.