Dapr SDK for Java
Go to file
Artur Souza 05eb058492 Documentation on how to debug Java apps or SDK. 2019-12-11 00:05:51 -08:00
.github Update question.md 2019-10-11 10:34:56 -07:00
examples New example for Dapr's Grpc invoke using Java. 2019-12-08 00:55:09 -08:00
proto New example for Dapr's Grpc invoke using Java. 2019-12-08 00:55:09 -08:00
sdk Remove . in description for pom.xml 2019-12-06 11:17:59 -08:00
.gitignore Renames project to . Fixes examples. Adds proto files from release-0.3. 2019-12-05 18:30:13 -08:00
.gitmodules Renames project to . Fixes examples. Adds proto files from release-0.3. 2019-12-05 18:30:13 -08:00
CONTRIBUTING.md Adding Contribution guidance in java sdk repo 2019-10-15 17:53:20 -07:00
LICENSE Initial commit 2019-10-09 10:30:20 -07:00
README.md Documentation on how to debug Java apps or SDK. 2019-12-11 00:05:51 -08:00
pom.xml Renames project to . Fixes examples. Adds proto files from release-0.3. 2019-12-05 18:30:13 -08:00

README.md

Dapr SDK for Java

This is the Dapr SDK for Java, based on the auto-generated proto client.

For more info on Dapr and gRPC, visit this link.

Installing

Clone this repository including the submodules:

git clone https://github.com/dapr/java-sdk.git

Then head over to build the Maven project:

# make sure you are in the `java-sdk` directory.
mvn install

Running the examples

Try the following examples to learn more about Dapr's Java SDK:

Creating and publishing the artifacts to Nexus Repository

From the root directory:

mvn package
mvn deploy:deploy-file -DgeneratePom=false -DrepositoryId=nexus -Durl=http://localhost:8081/repository/maven-releases -DpomFile=pom.xml -Dfile=target/client-0.1.0-preview.jar

For more documentation reference :

https://maven.apache.org/plugins/maven-deploy-plugin

https://help.sonatype.com/repomanager3/user-interface/uploading-components

Maven Module version management

To increase the version of all modules and pom files, run the following commands:

mvn versions:set -DnewVersion="0.1.0-preview02"
mvn versions:commit

Debug Java application or Dapr's Java SDK

If you have a Java application or an issue on this SDK that needs to be debugged, follow the steps below:

Install Pen Load Balancer or your preferred load balancer utility:

sudo apt-get install pen

Note: Pen is also available on Windows and MacOS.

Then run Dapr with the load balancer process listening on port 3001 and forwarding to port 3000. For Pen Load Balancer, it would be:

dapr run --app-id testapp --app-port 3001 --port 3500 -- pen -b 99999999 -f localhost:3001 localhost:3000

The command below will start a load balancer listening on port 3001 that forwards connections to port 3000, while Dapr's app identifier is testapp and listening port is 3500. If you try to make a HTTP call to any URL on localhost:3001, it will fail until you have an application listening on localhost:3000.

Now you can go to your IDE (like IntelliJ, for example) and debug your Java application, using port 3500 to call Dapr while also listening to port 3000 to expose Dapr's callback endpoint.

Calls to Dapr's APIs on http://localhost:3500/* should work now and trigger breakpoints in your code.

Reminder: for Dapr, your application is listening to port 3001 and not 3000 since it can only see the load balancer's port.