我正在尝试通过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);