在 Spring Boot 中以编程方式配置数据源
2022-08-31 11:52:03
使用Spring Boot,我可以用以下内容实例化a:JdbcTemplate
法典:
@Autowired
private JdbcTemplate jdbcTemplate;
性能:
spring.datasource.url=jdbc:postgresql://my_url:my_port/my_other_stuff
spring.datasource.username=my_user_name
spring.datasource.password=my_password
spring.datasource.driver-class-name=org.postgresql.Driver
这将创建类的数据源:org.apache.tomcat.jdbc.pool.DataSource
如何以编程方式设置数据源用户名/密码?
我们有一个不以纯文本形式存储凭据的策略,我必须使用我工作的特定凭据提供程序。