java-sdk
java-sdk copied to clipboard
Dapr SDK for Java
## Expected Behavior `git clone [email protected]:dapr/java-sdk.git && cd java-sdk && mvn package` should work out of the box, but it doesn't if you have previously build the Java SDK with...
## Expected Behavior Implementation of DaprGrpcClient does not make blocking calls. ## Actual Behavior The DaprGrpcClient class has blocking calls in it. For example: ```java @Override public Mono getState(String actorType,...
## Ask your question here DAPR 1.6 uses spring-boot-starter-web/2.3.5.RELEASE which has vulnerability. Any plans to upgrade the Spring Boot Starter Web version without vulnerability as many organization don't allow any...
## Ask your question here I’ve seen Dapr includes spring-web and not webflux, even all methods build on project reactor types. - Is it possible to add Dapr to a...
Hi Dapr Team, We have been trying to use Dapr Java SDK in a KTOR based application. Most of the cases work out of the box, only caveat that we...
## background Since we have HTTP API and gRCP API in dapr, in Dapr Java sdk project, we both have some dependencies to support Dapr HTTP API and Dapr gRPC...
## Expected Behavior I have service A, and service A will call service B by the DaprClient. All thing works when service B returns the response with state code 200....
## Describe the proposal Add SDK support for the new bulk Pub/Sub API runtime issue: https://github.com/dapr/dapr/issues/2218
## Describe the proposal #Expected Behavior Exception's error message (not stacktrace) from Actor's method is surfaced to the caller. Add details like exception method, line number, exception type and generate...
The CloudEvent spec says we can specify the `type` in the metadata. The SDK allows metadata customization when publishing an event as below ```java Map metadata = new HashMap(); metadata.put("type",...