Class | Description |
---|---|
AbstractCloudConfig |
JavaConfig base class for simplified access to the bound services.
|
ServiceScanConfiguration |
Introduces beans for each bound service.
|
Annotation Type | Description |
---|---|
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 } |