Questions tagged «credential-providers»

8
在Spring Boot中以编程方式配置DataSource
使用Spring Boot,我可以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 如何以编程方式设置DataSource用户名/密码? 我们有一项政策,不要以纯文本格式存储凭据,我必须在工作的地方使用特定的凭据提供程序。
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.