spring.turbo.util.propertysource.YamlPropertySourceFactory Maven / Gradle / Ivy
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* ____ _ _____ _
* / ___| _ __ _ __(_)_ __ __ |_ _| _ _ __| |__ ___
* \___ \| '_ \| '__| | '_ \ / _` || || | | | '__| '_ \ / _ \
* ___) | |_) | | | | | | | (_| || || |_| | | | |_) | (_) |
* |____/| .__/|_| |_|_| |_|\__, ||_| \__,_|_| |_.__/ \___/
* |_| |___/ https://github.com/yingzhuo/spring-turbo
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
package spring.turbo.util.propertysource;
import org.springframework.boot.env.YamlPropertySourceLoader;
import spring.turbo.lang.Recommended;
/**
* @author 应卓
* @see HoconPropertySourceFactory
* @see TomlPropertySourceFactory
* @since 1.2.2
*/
@Recommended
public class YamlPropertySourceFactory extends AbstractPropertySourceFactory {
/**
* 默认构造方法
*/
public YamlPropertySourceFactory() {
super(new YamlPropertySourceLoader());
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy