微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

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

如何解决如何让 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 举报,一经查实,本站将立刻删除。