Java配置方式读取外部的资源配置文件

通过@PropertySource可以指定读取的配置文件,通过@Value注解获取值,具体用法:

package cn.qlq; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.ComponentScan; import org.springframework.context.annotation.Configuration; import org.springframework.context.annotation.PropertySource; @Configuration // 通过该注解来表明该类是一个Spring的配置,相当于一个xml文件 @ComponentScan(basePackages = "cn.qlq") // 配置扫描包 @PropertySource(value = https://www.it610.com/article/{"classpath:jdbc.properties", "xxxxx", "yyyyy" }, ignoreResourceNotFound = true) public class SpringConfig {@Bean // 通过该注解来表明是一个Bean对象,相当于xml中的 public UserDao getUserDAO() { return new UserDao(); // 直接new对象做演示 }}


问题:
1.读取多个配置文件:


2.如果文件不存在忽略错误:



打开@PropertySource注解源码可以看到:




--------------------配置数据库连接池例子-------------
0.目录:


db.properties
; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; DataBaseConnection; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; jdbc.driverClassName=com.mysql.jdbc.Driver jdbc.url=jdbc:mysql://localhost:3306/maven jdbc.username=sa jdbc.password=123456




1. 导入依赖:
com.jolbox bonecp-spring 0.8.0.RELEASE


之前的Spring xml配置连接池:


2. 参考xml配置改造成java配置方式:
SpringConfig .java

package cn.qlq; import javax.sql.DataSource; import org.springframework.beans.factory.annotation.Value; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.ComponentScan; import org.springframework.context.annotation.Configuration; import org.springframework.context.annotation.PropertySource; import com.jolbox.bonecp.BoneCPDataSource; @Configuration // 通过该注解来表明该类是一个Spring的配置,相当于一个xml文件 @ComponentScan(basePackages = "cn.qlq") // 配置扫描包 @PropertySource(value = https://www.it610.com/article/{"classpath:db.properties", "xxxxx", "yyyyy" }, ignoreResourceNotFound = true) public class SpringConfig {@Bean // 通过该注解来表明是一个Bean对象,相当于xml中的 public UserDao getUserDAO() { return new UserDao(); // 直接new对象做演示 } @Value("${jdbc.url}") private String jdbcUrl; @Value("${jdbc.driverClassName}") private String jdbcDriverClassName; @Value("${jdbc.username}") private String jdbcUsername; @Value("${jdbc.password}") private String jdbcPassword; @Bean(destroyMethod = "close") public DataSource dataSource() { BoneCPDataSource boneCPDataSource = new BoneCPDataSource(); // 数据库驱动 boneCPDataSource.setDriverClass(jdbcDriverClassName); // 相应驱动的jdbcUrl boneCPDataSource.setJdbcUrl(jdbcUrl); // 数据库的用户名 boneCPDataSource.setUsername(jdbcUsername); // 数据库的密码 boneCPDataSource.setPassword(jdbcPassword); // 检查数据库连接池中空闲连接的间隔时间,单位是分,默认值:240,如果要取消则设置为0 boneCPDataSource.setIdleConnectionTestPeriodInMinutes(60); // 连接池中未使用的链接最大存活时间,单位是分,默认值:60,如果要永远存活设置为0 boneCPDataSource.setIdleMaxAgeInMinutes(30); // 每个分区最大的连接数 boneCPDataSource.setMaxConnectionsPerPartition(100); // 每个分区最小的连接数 boneCPDataSource.setMinConnectionsPerPartition(5); return boneCPDataSource; }}



注意:方法名字为Bean放入spring的Id,因此一般不加get
解释:
@Bean(destroyMethod = "close")是定义一个Bean,同时其销毁方法为close(),类似于xml配置中的destroyMethod,打开Bean注解可以看到:


思考: 如何使用该DataSource对象?
【Java配置方式读取外部的资源配置文件】放入spring中,使用方法类似于平时的使用方法。
3.测试:
package cn.qlq; import javax.sql.DataSource; import org.springframework.context.annotation.AnnotationConfigApplicationContext; /** * 测试类 * * @author liqiang * */ public class Test {public static void main(String[] args) { // 通过Java配置来实例化Spring容器 AnnotationConfigApplicationContext context = new AnnotationConfigApplicationContext(SpringConfig.class); DataSource dataSource = context.getBean(DataSource.class); System.out.println(dataSource); // 销毁该容器 context.destroy(); }}

结果:
JDBC URL = jdbc:mysql://localhost:3306/maven, Username = sa, partitions = 1, max (per partition) = 100, min (per partition) = 5, idle max age = 30 min, idle test period = 60 min, strategy = DEFAULT



注意:实例化容器是AnnotationConfigApplicationContext
以前是:
BeanFactory
ApplicationContext
ClassPathXmlApplicationContext
FileSystemXmlApplicationContext
XmlWebApplicationContext

    推荐阅读