How spring cloud defines validation interval under the Pivotal Cloud Foundry?
问题 I'm working on application that get the DS from PCF (Pivotal Cloud FoundrY) User provided services. It's working properly but I want to understand how the validation interval is defined. As Spring and PCF are managing my connection pool. I'd like to understand how that works. public DataSource getProfileDS() { PoolConfig poolConfig = new PoolConfig(5, 10, 30000); DataSourceConfig dsConfig = new DataSourceConfig(poolConfig, null); return connectionFactory().dataSource("profileDS", dsConfig); }