尝试通过PCF使用云连接器连接到DB2

时间:2017-04-25 20:18:53

标签: spring spring-boot cloudfoundry pivotal-cloud-foundry spring-cloud-connectors

我正在尝试通过PCF使用Spring Cloud Connectors连接到DB2,但我的DB2是双向SSL。任何人都能告诉我如何使用Spring Cloud Connectors配置SSL吗?

通常我没有使用Spring Cloud Connectors

就这样使用
DB2SimpleDataSource dataSource = new DB2SimpleDataSource(); //NOSONAR

    dataSource.setUser(userName);
    dataSource.setPassword(password);
    dataSource.setServerName(server);
    dataSource.setPortNumber(Integer.parseInt(port));
    dataSource.setDatabaseName(name);
    dataSource.setDriverType(4);
    dataSource.setSslConnection(true);
    dataSource.setSslTrustStoreLocation("keystore/pas_ist_db.jks");
    dataSource.setSslTrustStorePassword(sslPassword);

0 个答案:

没有答案