You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: daprdocs/content/en/java-sdk-docs/_index.mdbak
+105-4
Original file line number
Diff line number
Diff line change
@@ -31,19 +31,19 @@ For a Maven project, add the following to your `pom.xml` file:
31
31
<dependency>
32
32
<groupId>io.dapr</groupId>
33
33
<artifactId>dapr-sdk</artifactId>
34
-
<version>1.4.0</version>
34
+
<version>1.5.0</version>
35
35
</dependency>
36
36
<!-- Dapr's SDK for Actors (optional). -->
37
37
<dependency>
38
38
<groupId>io.dapr</groupId>
39
39
<artifactId>dapr-sdk-actors</artifactId>
40
-
<version>1.4.0</version>
40
+
<version>1.5.0</version>
41
41
</dependency>
42
42
<!-- Dapr's SDK integration with SpringBoot (optional). -->
43
43
<dependency>
44
44
<groupId>io.dapr</groupId>
45
45
<artifactId>dapr-sdk-springboot</artifactId>
46
-
<version>1.4.0</version>
46
+
<version>1.5.0</version>
47
47
</dependency>
48
48
...
49
49
</dependencies>
@@ -72,7 +72,7 @@ You can fix this by specifying a compatible OkHttp version in your project to ma
72
72
<dependency>
73
73
<groupId>com.squareup.okhttp3</groupId>
74
74
<artifactId>okhttp</artifactId>
75
-
<version>1.4.0</version>
75
+
<version>1.5.0</version>
76
76
</dependency>
77
77
```
78
78
@@ -239,5 +239,106 @@ public interface DemoActor {
239
239
- For a full guide on actors visit [How-To: Use virtual actors in Dapr]({{< ref howto-actors.md >}}).
240
240
- Visit [Java SDK examples](https://github.com/dapr/java-sdk/tree/master/examples/src/main/java/io/dapr/examples/actors) for code samples and instructions to try actors
241
241
242
+
### Get & Subscribe to application configurations
243
+
244
+
> Note this is a preview API and thus will only be accessible via the DaprPreviewClient interface and not the normal DaprClient interface
- For a full list of configuration operations visit [How-To: Manage configuration from a store]({{< ref howto-manage-configuration.md >}}).
270
+
- Visit [Java SDK examples](https://github.com/dapr/java-sdk/tree/master/examples/src/main/java/io/dapr/examples/configuration) for code samples and instructions to try out different configuration operations.
271
+
272
+
### Query saved state
273
+
274
+
> Note this is a preview API and thus will only be accessible via the DaprPreviewClient interface and not the normal DaprClient interface
0 commit comments