diff --git a/spring-cloud-connectors.html b/spring-cloud-connectors.html index 0d06ba8..dea61bc 100644 --- a/spring-cloud-connectors.html +++ b/spring-cloud-connectors.html @@ -506,25 +506,34 @@ table.CodeRay td.code>pre{padding:0}
Table of Contents
-
+
+

Introduction

-
+

Spring Cloud Connectors provides a simple abstraction for JVM-based applications running on cloud platforms to discover bound services and deployment information at runtime, and provides support for registering discovered services as Spring beans. It is based on a plugin model so that the identical compiled application can be deployed locally or on any of multiple cloud platforms, and it supports custom service definitions through Java SPI.

Spring Cloud Connectors provides out-of-the-box support for discovering common services on Heroku and Cloud Foundry clouds, as well as a properties-based connector that can supply configuration for development and testing.

+
+

Concepts

The core Connectors concepts are:

@@ -552,6 +561,9 @@ table.CodeRay td.code>pre{padding:0} +
+
+

Submodules

The project contains three major submodules.

@@ -583,6 +595,7 @@ table.CodeRay td.code>pre{padding:0}
+

Getting Started

@@ -590,7 +603,7 @@ table.CodeRay td.code>pre{padding:0}

See below for examples of how to include the appropriate dependencies using your build system.

-

Including cloud connectors

+

Including Cloud Connectors

Include the connector for each cloud platform you want to be discoverable. Including multiple connectors is perfectly fine; each connector will determine whether it should be active in a particular environment.

@@ -642,7 +655,7 @@ table.CodeRay td.code>pre{padding:0}
-

Spring applications

+

Spring Applications

If you’re writing a Spring application, include the spring-service-connector in addition to your cloud connectors.

@@ -675,7 +688,7 @@ table.CodeRay td.code>pre{padding:0}
-

Non-Spring applications

+

Non-Spring Applications

The spring-cloud-core dependency is included by each cloud connector, so simply include the connectors for the platforms you want.

@@ -688,7 +701,7 @@ table.CodeRay td.code>pre{padding:0}