From c9c18dad9104f996a3c17d784ee466fe51e5461b Mon Sep 17 00:00:00 2001 From: Alex Wellnitz Date: Fri, 29 Sep 2023 10:54:44 +0200 Subject: [PATCH] Update vscode-debug-settings-collection.md --- .../blog/vscode-debug-settings-collection.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/src/content/blog/vscode-debug-settings-collection.md b/src/content/blog/vscode-debug-settings-collection.md index 9f0496d..a897e49 100644 --- a/src/content/blog/vscode-debug-settings-collection.md +++ b/src/content/blog/vscode-debug-settings-collection.md @@ -29,3 +29,19 @@ description: In this post, we will show you how to create a MySQL server backup ] } ``` + +### Java Remote VSCode debugging +**launch.json:** +```json +"version": "0.2.0", +"configurations": [ + { + "type": "java", + "name": "Debug (Attach)", + "projectName": "MyApplication", + "request": "attach", + "hostName": "localhost", + "port": 8787 + } +] +```