Skip to content

Instantly share code, notes, and snippets.

@fud
Created October 2, 2019 03:45
Show Gist options
  • Save fud/958b781dcf949e842da138b769d4f45e to your computer and use it in GitHub Desktop.
Save fud/958b781dcf949e842da138b769d4f45e to your computer and use it in GitHub Desktop.
Remote debug
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "java",
"name": "Debug (Launch) - Current File",
"request": "launch",
"mainClass": "${file}"
},
{
"type": "java",
"name": "Remote Debug",
"request": "attach",
"hostName": "localhost",
"port": 8787
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment