IntelliJ

    When developing Dapr applications, you typically use the Dapr CLI to start your ‘Daprized’ service similar to this:

    This uses the default components yaml files (created on ) so that your service can interact with the local Redis container. This is great when you are just getting started but what if you want to attach a debugger to your service and step through the code? This is where you can use the dapr cli without invoking an app.

    One approach to attaching the debugger to your service is to first run dapr run -- from the command line and then launch your code and attach the debugger. While this is a perfectly acceptable solution, it does require a few extra steps (like switching between terminal and IDE) and some instruction to developers who might want to clone your repo and hit the “play” button to begin debugging.

    This document explains how to use dapr directly from IntelliJ. As a pre-requisite, make sure you have initialized the Dapr’s dev environment via dapr init.

    Let’s get started!

    First, quit IntelliJ before modifying the configurations file directly.

    For versions 2020.1 and above the configuration files for tools should be located in:

    1. %USERPROFILE%\AppData\Roaming\JetBrains\IntelliJIdea2020.1\tools\
    1. ~/Library/Application Support/JetBrains/IntelliJIdea2020.1/tools/

    Change the version of IntelliJ in the path if needed.

    Create or edit the file in <CONFIG PATH>/tools/External\ Tools.xml (change IntelliJ version in path if needed). The <CONFIG PATH> is OS dependennt as seen above.

    Add a new <tool></tool> entry:

    Optionally, you may also create a new entry for a sidecar tool that can be reused across many projects:

    1. <toolSet name="External Tools">
    2. ...
    3. <tool name="dapr with app-port" description="Dapr sidecar" showInMainMenu="false" showInEditor="false" showInProject="false" showInSearchPopup="false" disabled="false" useConsole="true" showConsoleOnStdOut="true" showConsoleOnStdErr="true" synchronizeAfterRun="true">
    4. <exec>
    5. <option name="COMMAND" value="c:\dapr\dapr.exe" />
    6. <!-- 3. Prompts user 4 times (in order): app id, app port, Dapr's http port, Dapr's grpc port. -->
    7. <option name="PARAMETERS" value="run --app-id $Prompt$ --app-port $Prompt$ --dapr-http-port $Prompt$ --dapr-grpc-port $Prompt$" />
    8. <!-- 4. Use the folder where the `components` folder is located -->
    9. <option name="WORKING_DIRECTORY" value="$ProjectFileDir$" />
    10. </exec>
    11. </tool>
    12. <!-- 1. Reusable entry for apps without app port. -->
    13. <tool name="dapr without app-port" description="Dapr sidecar" showInMainMenu="false" showInEditor="false" showInProject="false" showInSearchPopup="false" disabled="false" useConsole="true" showConsoleOnStdOut="true" showConsoleOnStdErr="true" synchronizeAfterRun="true">
    14. <exec>
    15. <option name="COMMAND" value="c:\dapr\dapr.exe" />
    16. <!-- 3. Prompts user 3 times (in order): app id, Dapr's http port, Dapr's grpc port. -->
    17. <!-- 4. Use the folder where the `components` folder is located -->
    18. <option name="WORKING_DIRECTORY" value="$ProjectFileDir$" />
    19. </exec>
    20. </tool>
    21. ...
    22. </toolSet>

    Now, create or edit the run configuration for the application to be debugged. It can be found in the menu next to the main() function.

    Now, add the program arguments and environment variables. These need to match the ports defined in the entry in ‘External Tool’ above.

    • Command line arguments for this example: -p 3000
    • Environment variables for this example: DAPR_HTTP_PORT=3005;DAPR_GRPC_PORT=52000

    Once the one-time config above is done, there are two steps required to debug a Java application with Dapr in IntelliJ:

    1. Start dapr via Tools -> External Tool in IntelliJ.

    Run dapr as ‘External Tool’

    1. Start your application in debug mode.

    After debugging, make sure you stop both dapr and your app in IntelliJ.

    Happy debugging!