spring读取properties配置
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了spring读取properties配置相关的知识,希望对你有一定的参考价值。
@Component
public class BaseConfigPath {
private static final String configPath = System.getProperty("user.home")+"/code/config";
public String getConfigPath() {
return configPath;
}
}
根据配置文件路径解析properties
<context:property-placeholder location="file:#{baseConfigPath.configPath}/jdbc.properties"/>
获取properties的属性值
<bean id="dataSource" class="com.mchange.v2.c3p0.ComboPooledDataSource">
以上是关于spring读取properties配置的主要内容,如果未能解决你的问题,请参考以下文章
Spring Bootspring boot多环境配置及配置文件
spring 配置文件 引入外部的property文件的两种方法