Package org.springframework.boot.yaml

Examples of org.springframework.boot.yaml.YamlMapFactoryBean


  public SecurityChannelInterceptor(UserService userService) {
    this.userService = userService;
  }

  public void loadConfiguration(String filename) {
    YamlMapFactoryBean factory = new YamlMapFactoryBean();
    factory.setResources(new ClassPathResource[]{new ClassPathResource(filename)});
    this.securityDefinitions = factory.getObject();
  }
View Full Code Here

TOP

Related Classes of org.springframework.boot.yaml.YamlMapFactoryBean

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.