如何让 Springboot JPA 数据源在尝试连接之前等待配置文件

问题描述

我正在尝试使用 application.properties 文件中的以下内容连接到 Spring 数据源

spring.datasource.driver-class-name=org.postgresql.Driver
spring.datasource.url=jdbc:postgresql://localhost:5432/postgres
spring.jpa.properties.hibernate.dialect=org.hibernate.dialect.Postgresql10Dialect
spring.jpa.hibernate.ddl-auto=update
spring.jpa.properties.hibernate.generate_statistics=true
spring.jpa.show-sql=true
DBUsernameId=RDS_USERNAME
DBPasswordId=RDS_PASSWORD

我不想将用户名/密码放在我的 application.properties 文件中,而是希望通过这样的配置进行配置:

@Value("${DBUsernameId}")
private String dataSourceUsername;

@Value("${DBPasswordId}")
private String dataSourcePassword;

@Bean
@postconstruct
public void setProperties() {
     System.setProperty("spring.datasource.username",secretProvider.getSecret(dataSourceUsername));
     System.setProperty("spring.datasource.password",secretProvider.getSecret(dataSourcePassword));
}

如何在获取用户名和密码后触发数据库连接?

解决方法

暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!

如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。

小编邮箱:dio#foxmail.com (将#修改为@)