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 + } +] +```