houzhongjian
2025-03-12 e03505135d9816c8b6ea67a91a7e1f493e662b6f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.iailab.sdk.auth.factory;
 
import org.springframework.boot.env.YamlPropertySourceLoader;
import org.springframework.core.env.PropertySource;
import org.springframework.core.io.support.EncodedResource;
import org.springframework.core.io.support.PropertySourceFactory;
 
import java.io.IOException;
 
public class YamlPropertySourceFactory implements PropertySourceFactory {
    @Override
    public PropertySource<?> createPropertySource(String name, EncodedResource resource) throws IOException {
        YamlPropertySourceLoader loader = new YamlPropertySourceLoader();
        return loader.load(resource.getResource().getFilename(), resource.getResource()).get(0);
    }
}