Spring Cloud Connectors 1.2.1 released
I’m pleased to announce the availability of Spring Cloud Connectors 1.2.1. This is a maintenance release with a few new features and a few bug fixes.
Here are the highlights:
Heroku Connector
Relational Databases
- The Heroku cloud connector now recognizes the
DATABASE_URLenvironment variable when detecting PostgreSQL database.
Redis
- Heroku Redis is now supported.
Spring Connector
Relational Databases
- When creating a
DataSource, Spring Cloud Connectors will look for a poolingDataSourceimplementation on the classpath and choose one based on a default priority. The priority of detection has been changed to more closely match the order used in Spring Boot. - Applications can customize the priority order of pooled
DataSourceimplementations using either Java configuration or XML configuration. DataSourceConfigwill now accept a map of key/value pairs to allow setting arbitrary properties of the createdDataSource. This allows overriding of the default JDBC driver class name and validation query set up by Connectors, in addition to other properties of theDataSource…