File tree Expand file tree Collapse file tree 1 file changed +20
-1
lines changed Expand file tree Collapse file tree 1 file changed +20
-1
lines changed Original file line number Diff line number Diff line change @@ -13,6 +13,25 @@ This is the Dapr SDK for Java, including the following features:
1313
1414## Getting Started
1515
16+ ### Architecture Overview
17+
18+ The diagram below shows how a Java application interacts with the Dapr runtime through the Java SDK:
19+
20+ ``` mermaid
21+ flowchart LR
22+ A[End User Application] -->|HTTP or gRPC| B[Dapr Java SDK]
23+ B -->|Dapr API calls| C[Dapr Sidecar]
24+ C -->|Components| D[State Stores, Pub/Sub, Services, etc.]
25+
26+ %% Optional grouping for clarity
27+ subgraph R[Dapr Runtime]
28+ C
29+ D
30+ end
31+ ```
32+
33+ For the full list of available APIs, see the [ Dapr API reference] ( https://docs.dapr.io/reference/api/ )
34+
1635### Pre-Requisites
1736* SDKMAN! installed (recommended):
1837 * [ SDKMAN!] ( https://sdkman.io )
@@ -278,4 +297,4 @@ Once the project has been imported, the individual tests can be run normally as
278297
279298> Sometimes when the `sdk-tests` project does not build correctly, try `File > Invalidate Caches...` and try restarting IntelliJ.
280299
281- You should be able to set breakpoints and Debug the test directly from IntelliJ itself as seen from the above image.
300+ You should be able to set breakpoints and Debug the test directly from IntelliJ itself as seen from the above image.
You can’t perform that action at this time.
0 commit comments