序
数据库的相关配置,一般来说是不会频繁变的,特别是当数据库连接使用的是域名而不是ip地址的时候,这样即使ip地址变化了,也不影响业务系统。这里呢,我们讲一下如果真的是迫不得已的时候,有没有不重启就可以更改配置的方法。
思路
有很多种方案,这里我们讲一下基于SpringCloud的RefreshScope的方案。
数据库配置实例
spring: datasource: platform: postgres url: jdbc:postgresql://192.168.99.100:5432/postgres driverClassName: org.postgresql.Driver username: postgres password: 123456 validation-query: SELECT 1 test-while-idle: true test-on-borrow: true
Java配置
@Configurationpublic class DbConfig { @Bean @RefreshScope //refresh @Primary @ConfigurationProperties(prefix = "spring.datasource") public DataSource dataSource() { return DataSourceBuilder.create().build(); }}
更新
调用一下服务的refresh端点就可以了
curl -i -X POST http://localhost:9001/refresh
验证
@Componentpublic class ScheduleTask { @Autowired UserRepository userRepository; @Scheduled(fixedDelay = 5*1000 /**ms**/,initialDelay = 5*1000) public void testDataSourceConn() { try{ System.out.println("call jdbc"); userRepository.findAll(); }catch (Exception e){ e.printStackTrace(); } }}
这里跑一个定时任务,不停地调用数据查询方法,然后中途改下密码,然后refresh一下,看是否报错