spring 属性文件加载接口---PropertySourceLoader
org.springframework.boot.config
Interface PropertySourceLoader
public interface PropertySourceLoader
属性文件加载策略接口
-
PropertiesPropertySourceLoader:加载 .properties 文件
-
YamlPropertySourceLoader:加载 .yaml 文件
-
使用
@PropertySource({"classpath:config.properties"})
注解,或者
<context:property-placeholder location="classpath:application.yml"/>