From 39ea56b5815447dd9010fa5a412add3f43fb42da Mon Sep 17 00:00:00 2001 From: Ben Klein Date: Tue, 1 Mar 2016 11:16:16 -0600 Subject: [PATCH] Add connector summaries to main docs page --- docs/src/main/asciidoc/spring-cloud-connectors.adoc | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/docs/src/main/asciidoc/spring-cloud-connectors.adoc b/docs/src/main/asciidoc/spring-cloud-connectors.adoc index c4fe0f5..6e337cc 100644 --- a/docs/src/main/asciidoc/spring-cloud-connectors.adoc +++ b/docs/src/main/asciidoc/spring-cloud-connectors.adoc @@ -178,15 +178,21 @@ DataSource ds = cloud.getServiceConnector(serviceId, DataSource.class, == Spring Service Connector -See <>. +The Spring Service Connector creates service connection objects for Spring applications. It allows for Java or XML configuration of connection beans and currently supports relational databases such as MySQL and PostgreSQL via `javax.sql.DataSource`, SMTP via `org.springframework.mail.MailSender`, RabbitMQ via Spring AMQP, and MongoDB and Redis via Spring Data projects. It also provides support for connecting to generic (e.g., private) services. + +For details on this service connector, see <>. == Cloud Foundry Connector -See <>. +The Cloud Foundry Connector discovers services bound to an application running in a Cloud Foundry environment. As it consumes bound service information in Cloud Foundry's standard format, it is provider-agnostic; it currently is aware of application monitoring, DB2, MongoDB, MySQL, Oracle, PostgreSQL, RabbitMQ, Redis, SMTP, and SQL Server services. + +For details on this cloud connector, see <>. == Heroku Connector -See <>. +The Heroku Connector discovers services bound to an application running in Heroku. It currently is aware of PostgreSQL (provided by Heroku), MySQL (provided by ClearDB), Redis (provided by Redis To Go, Redis Cloud, RedisGreen, openredis, and Heroku), MongoDB (provided by MongoLab, MongoHQ, and MongoSoup), and RabbitMQ (provided by CloudAMQP). It can be extended to support additional providers for these services. + +For details on this cloud connector, see <>. == local-configuration Connector