Skip to content

Commit 1382b13

Browse files
Updated spring boot integration samples (#2079)
Co-authored-by: [email protected] <matthias@W-5CG3323MK3>
1 parent e292562 commit 1382b13

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

java/spring-boot-integration.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,10 +77,10 @@ None of the listed features will be available out of the box in case you choose
7777

7878
| Bean | Description | Example
7979
| :---------------------------------------------------- | :----------------------------------------------------- | :----------------------------------------------------- |
80+
| [Service](https://www.javadoc.io/doc/com.sap.cds/cds-services-api/latest/com/sap/cds/services/Service.html) | All kinds of CDS services, application services, and technical services | `@Autowired`<br>`CatalogService catService;`<br><br>`@Autowired`<br>`CatalogService.Draft catServiceDraft;`<br><br>`@Autowired`<br>`PersistenceService ps;`
81+
| [ServiceCatalog](https://www.javadoc.io/doc/com.sap.cds/cds-services-api/latest/com/sap/cds/services/ServiceCatalog.html) | The catalog of all available services | `@Autowired`<br>`ServiceCatalog catalog;`
8082
| [CdsRuntime](https://www.javadoc.io/doc/com.sap.cds/cds-services-api/latest/com/sap/cds/services/runtime/CdsRuntime.html) | Runtime instance (singleton) | `@Autowired`<br>`CdsRuntime runtime;`
8183
| [CdsRuntimeConfigurer](https://www.javadoc.io/doc/com.sap.cds/cds-services-api/latest/com/sap/cds/services/runtime/CdsRuntimeConfigurer.html) | Runtime configuration instance (singleton) | `@Autowired`<br>`CdsRuntimeConfigurer configurer;`
82-
| [Service](https://www.javadoc.io/doc/com.sap.cds/cds-services-api/latest/com/sap/cds/services/Service.html) | All kinds of CDS services, application services, and technical services | `@Autowired`<br>`@Qualifier(CatalogService_.CDS_NAME)`<br>`private ApplicationService cs;`<br><br>`@Autowired`<br>`private PersistenceService ps;`
83-
| [ServiceCatalog](https://www.javadoc.io/doc/com.sap.cds/cds-services-api/latest/com/sap/cds/services/ServiceCatalog.html) | The catalog of all available services | `@Autowired`<br>`ServiceCatalog catalog;`
8484
| [CdsModel](https://javadoc.io/doc/com.sap.cds/cds4j-api/latest/com/sap/cds/reflect/CdsModel.html) | The current model | `@Autowired`<br>`CdsModel model;`
8585
| [UserInfo](https://www.javadoc.io/doc/com.sap.cds/cds-services-api/latest/com/sap/cds/services/request/UserInfo.html) | Information about the authenticated user | `@Autowired`<br>`UserInfo userInfo;`
8686
| [AuthenticationInfo](https://www.javadoc.io/doc/com.sap.cds/cds-services-api/latest/com/sap/cds/services/authentication/AuthenticationInfo.html) | Authentication claims | `@Autowired`<br>`AuthenticationInfo authInfo;`

0 commit comments

Comments
 (0)