83

使用 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 用户名/密码?

我们的政策是不以纯文本形式存储凭据,我必须在我工作的地方使用特定的凭据提供程序。

4

8 回答 8

92

DataSourceBuilder如果您使用的是启动器,则可以使用jdbc。此外,为了覆盖默认的自动配置 bean,您需要将 bean 标记为@Primary

datasource.postgres就我而言,我有以前缀开头的属性。

例如

@ConfigurationProperties(prefix = "datasource.postgres")
@Bean
@Primary
public DataSource dataSource() {
    return DataSourceBuilder
        .create()
        .build();
}

如果这对您不可行,那么您可以使用

@Bean
@Primary
public DataSource dataSource() {
    return DataSourceBuilder
        .create()
        .username("")
        .password("")
        .url("")
        .driverClassName("")
        .build();
}
于 2015-03-03T00:47:54.023 回答
26

在您的帮助下,我的 spring-boot 项目已经正常运行。yaml 数据源配置为:

spring:
  # (DataSourceAutoConfiguration & DataSourceProperties)
  datasource:
    name: ds-h2
    url: jdbc:h2:D:/work/workspace/fdata;DATABASE_TO_UPPER=false
    username: h2
    password: h2
    driver-class: org.h2.Driver

自定义数据源

@Configuration
@Component
public class DataSourceBean {

    @ConfigurationProperties(prefix = "spring.datasource")
    @Bean
    @Primary
    public DataSource getDataSource() {
        return DataSourceBuilder
                .create()
//                .url("jdbc:h2:D:/work/workspace/fork/gs-serving-web-content/initial/data/fdata;DATABASE_TO_UPPER=false")
//                .username("h2")
//                .password("h2")
//                .driverClassName("org.h2.Driver")
                .build();
    }
}
于 2016-07-15T06:05:58.260 回答
16

您需要做的就是用@Bean 注释一个返回DataSource 的方法。下面是一个完整的工作示例。

@Bean
public DataSource dataSource() {
    DataSourceBuilder dataSourceBuilder = DataSourceBuilder.create();
        dataSourceBuilder.url(dbUrl);
        dataSourceBuilder.username(username);
        dataSourceBuilder.password(password);
        return dataSourceBuilder.build();   
}
于 2015-10-08T19:24:19.400 回答
12

如果您使用的是最新的 spring boot(带有 jdbc starter 和 Hikari),您将遇到: java.lang.IllegalArgumentException: jdbcUrl is required with driverClassName. 要解决此问题:

  1. 在您的 application.properties 中:

datasource.oracle.url=youroracleurl

  1. 在您的应用程序中定义为 bean(@Primary是强制性的!):
@Bean
@Primary
@ConfigurationProperties("datasource.oracle")
public DataSourceProperties getDatasourceProperties() {
    return new DataSourceProperties();
}

@Bean
@ConfigurationProperties("datasource.oracle")
public DataSource getDatasource() {
    return getDatasourceProperties().initializeDataSourceBuilder()
           .username("username")
           .password("password")
           .build();
}
于 2018-09-18T15:34:24.930 回答
5

如果您想要更多日期源配置,例如

spring.datasource.test-while-idle=true 
spring.datasource.time-between-eviction-runs-millis=30000
spring.datasource.validation-query=select 1

你可以使用下面的代码

@Bean
public DataSource dataSource() {
    DataSource dataSource = new DataSource(); // org.apache.tomcat.jdbc.pool.DataSource;
    dataSource.setDriverClassName(driverClassName);
    dataSource.setUrl(url);
    dataSource.setUsername(username);
    dataSource.setPassword(password);
    dataSource.setTestWhileIdle(testWhileIdle);     
    dataSource.setTimeBetweenEvictionRunsMillis(timeBetweenEvictionRunsMills);
    dataSource.setValidationQuery(validationQuery);
    return dataSource;
}

参考:Spring boot jdbc 连接

于 2016-07-24T03:43:34.753 回答
2

作为替代方法,您可以使用 DriverManagerDataSource,例如:

public DataSource getDataSource(DBInfo db) {

    DriverManagerDataSource dataSource = new DriverManagerDataSource();

    dataSource.setUsername(db.getUsername());
    dataSource.setPassword(db.getPassword());
    dataSource.setUrl(db.getUrl());
    dataSource.setDriverClassName(db.getDriverClassName());

    return dataSource;
}

但是要小心使用它,因为:

注意:这个类不是一个实际的连接池;它实际上并不池连接。它只是作为成熟连接池的简单替代品,实现相同的标准接口,但在每次调用时创建新的连接。参考

于 2018-04-20T13:53:01.560 回答
1

我在Spring-Boot 2中自定义了Tomcat 数据源

依赖版本:

  • 弹簧启动:2.1.9.RELEASE
  • tomcat-jdbc:9.0.20

可能对某人有用。

应用程序.yml

spring:
    datasource:
        driver-class-name: org.postgresql.Driver
        type: org.apache.tomcat.jdbc.pool.DataSource
        url: jdbc:postgresql://${spring.datasource.database.host}:${spring.datasource.database.port}/${spring.datasource.database.name}
        database:
            host: localhost
            port: 5432
            name: rostelecom
        username: postgres
        password: postgres
        tomcat:
            validation-query: SELECT 1
            validation-interval: 30000           
            test-on-borrow: true
            remove-abandoned: true
            remove-abandoned-timeout: 480
            test-while-idle: true
            time-between-eviction-runs-millis: 60000
            log-validation-errors: true
            log-abandoned: true

爪哇

@Bean
@Primary
@ConfigurationProperties("spring.datasource.tomcat")
public PoolConfiguration postgresDataSourceProperties() {
    return new PoolProperties();
}

@Bean(name = "primaryDataSource")
@Primary
@Qualifier("primaryDataSource")
@ConfigurationProperties(prefix = "spring.datasource")
public DataSource primaryDataSource() {
    PoolConfiguration properties = postgresDataSourceProperties();
    return new DataSource(properties);
}

这样做的主要原因是应用程序中有多个数据源,其中一个需要标记为@Primary

于 2019-11-22T11:33:57.220 回答
1

对于使用 url 的 springboot 2.1.7 似乎不起作用。改为使用 jdbcUrl 更改。

在属性中:

security:
      datasource:
        jdbcUrl: jdbc:mysql://ip:3306/security
        username: user
        password: pass

在java中:

@ConfigurationProperties(prefix = "security.datasource")
@Bean("dataSource")
@Primary
public DataSource dataSource(){

    return DataSourceBuilder
            .create()
            .build();
}
于 2019-09-12T23:05:24.137 回答