Update vscode-debug-settings-collection.md

This commit is contained in:
Alex Wellnitz 2023-09-29 10:54:44 +02:00 committed by GitHub
parent 688230661f
commit c9c18dad91
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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