diff --git a/daprdocs/content/en/java-sdk-docs/_index.md b/daprdocs/content/en/java-sdk-docs/_index.md index 07a89e66b8..b1d83869f2 100644 --- a/daprdocs/content/en/java-sdk-docs/_index.md +++ b/daprdocs/content/en/java-sdk-docs/_index.md @@ -65,6 +65,17 @@ dependencies { } ``` +If you are also using Spring Boot, you may run into a common issue where the OkHttp version that the Dapr SDK uses conflicts with the one specified in the Spring Boot _Bill of Materials_. +You can fix this by specifying a compatible OkHttp version in your project to match the version that the Dapr SDK uses: + +```xml + + com.squareup.okhttp3 + okhttp + 4.9.0 + +``` + ## Building blocks The Java SDK allows you to interface with all of the [Dapr building blocks]({{< ref building-blocks >}}).