使用 Spring Boot,我可以JdbcTemplate
使用以下内容实例化 a:
代码:
@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
这将创建一个 DataSource 类:org.apache.tomcat.jdbc.pool.DataSource
如何以编程方式设置 DataSource 用户名/密码?
我们的政策是不以纯文本形式存储凭据,我必须在我工作的地方使用特定的凭据提供程序。