Skip to content

Commit 909e0f9

Browse files
Added section about Java plugin technique (#625)
* added section about Java plugin technique * Update plugins/index.md --------- Co-authored-by: René Jeglinsky <[email protected]>
1 parent 4fbf0c1 commit 909e0f9

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

plugins/index.md

+23
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,31 @@ For Node.js all these plugins are implemented using the [`cds-plugin`](../node.j
6060

6161
> → audit logs are written to Audit Log service in production.
6262
63+
## As Plugin for CAP Java
64+
65+
The [CAP Java plugin technique](../java/plugins) makes use of _jar_-files which are distributed as Maven packages.
66+
By adding an additional Maven dependency to the project, the plugin automatically adds functionality or extensions to the CDS model.
67+
For [Audit Logging V2](../java/auditlog#handler-v2) it looks like this:
68+
69+
1. Add the Maven dependency (in _srv/pom.xml_):
70+
```xml
71+
<dependency>
72+
<groupId>com.sap.cds</groupId>
73+
<artifactId>cds-feature-auditlog-v2</artifactId>
74+
<scope>runtime</scope>
75+
</dependency>
76+
```
77+
2. Add annotations to your model:
6378

79+
```cds
80+
annotate Customer with @PersonalData ...;
81+
```
82+
> → audit logs are written to console in dev mode.
83+
84+
3. Bind the platform service.
6485

86+
> → audit logs are written to SAP Audit Log service.
87+
6588

6689

6790
## GraphQL Adapter

0 commit comments

Comments
 (0)