1.使用@Value(“${XXX.XXX}”)
(1)spring 默认读取application.yml(或properties),直接使用@Value 注解即可,
例如:
@Value("${token.valid-time:30}") :30表示配置文件未获取到值时,使用默认值30
protected Integer idTokenValidTime;
(2)读取自定义配置文件定义属性
添加类注解
@ConfigurationProperties(prefix = "token") //指定前缀,使用@Value 不指定应该也行,未测试过
@PropertySource(value = { "classpath:token-config.yml" })//指定自定义配置文件的位置、名字,这里默认在resource下面
具体使用见(1)
2.使用@PropertySource,并将配置文件属性自动对应带类属性
@Component
@Data
@ConfigurationProperties(prefix = "test")
//指定配置文件路径、名字---为获取到的值忽略掉,---指定编码格式,防止获取的内容乱码,特别是中文。
@PropertySource(value = "classpath:test.properties", ignoreResourceNotFound = true, encoding = "UTF-8")
public class CommonTest {
private String name;
private String id;
}
配置文件内容:
test.name=123
spring 会自动将配置文件的属性读取到这个类中,并封装为一个bean,使用时直接用@Autowired注入即可,bean的名字默认为类名,首字母小写。
如上,bean里面只有name=123,id=null
-----------------------------------------------------------------
但是,如果自定义配置文件如果为yml格式,如下图
上述方法就失效了,此时必须要搭配@value使用:
spring 会自动将配置文件的属性读取到这个类中,并封装为一个bean,使用时直接用@Autowired注入即可,bean的名字默认为类名,首字母小写。
3.直接使用${XXX}获取
例如:
@RequestMapping("${managerPath}/ap_resource"),
配置文件:
managerPath: /console
注意:@RequestMapping指定的路径是会继承的!!!
4.自定义加载
(1)方法一未测试
<1>private static String[] errConfigFiles = new String[]{"errors.properties"};
<2>PropertiesLoader propertiesLoader = new PropertiesLoader(errConfigFiles);
<3> String value = propertiesLoader.getString(XXX);
(2)方法2 自定义key-value ,
使用ResourceLoader 加载到内存中,使用时,根据code值从内存中读取
public class ResponseDefaultMsg {
private static final String msgCodeFileName = "msg-code-file.yml";
private static Properties properties;
public Properties getProperties() {
return properties;
}
/**
* 加载配置文件的属性
*
* @param location
* @return
*/
public static void loadProperties(String location) {
ResourceLoader loder = new PathMatchingResourcePatternResolver();
Resource resource = loder.getResource(location);
properties = new Properties();
try {
//防止中文乱码
// EncodedResource encodedResource=new EncodedResource(resource,"UTF-8");
//InputStream inputStream = encodedResource.getInputStream();
/**
* 主要是properties.load 加载时乱码,reader 是可以指定字符集的,并且默认utf-8
*/
properties.load(new InputStreamReader(resource.getInputStream()));
//properties.load(inputStream);
// System.out.println(properties);
} catch (IOException io) {
log.error("Could not load properties from path:" + location + io.getMessage());
}
}
/**
* 获取默认信息
*
* @param code
* @return
*/
public static String getDefaultMsg(Integer code) {
if (properties == null) {
loadProperties(msgCodeFileName);
}
if (properties != null) {
return properties.getProperty(code.toString());
} else {
return null;
}
}
}
详细代码请移步我的github毕设项目:
https://github.com/CorbinY/tingjian-back-api
配置类在tingjian-back-api/common/src/main/java/org/corbin/common/base/Response/包中
码字西裤,觉得不错请点个赞,谢谢!