Interface | Description |
---|---|
ServiceConnectionFactory |
Class | Description |
---|---|
AbstractCloudConfig |
JavaConfig base class for simplified access to the bound services.
|
CloudScanConfiguration |
Introduces beans for each bound service and one for
ApplicationInstanceInfo |
CloudServiceConnectionFactory | |
ServiceScanConfiguration |
Introduces beans for each bound service.
|
Annotation Type | Description |
---|---|
CloudScan |
Add this annotation to an @
Configuration class to have a bean for each
service bound to the app as well as one for ApplicationInstanceInfo added to
the application context. |
ServiceScan |
Add this annotation to an @
Configuration class to have the services bound
to the app scanned and bean for each one added to the application context:
@Configuration @ServiceScan public class CloudConfiguration { // may (optionally) extend AbstractCloudConfiguration } |