Hello,
Sorry for the noise but I am new to VSCode. I have a running Java program and I need to attach to it with cusor for debugging. I do this all of the time with intellij so I know my running app is configured correctly for remote debugging.
I created a launch.json file that looks like:
{
// 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": "Attach to Remote Java",
"request": "attach",
"hostName": "localhost",
"port": 9090
}
]
}
But the option doesn’t show in my run menu.
I have the following extensions installed:
Debugger for Java
Java (Oracle)
Language support for Java (Oracle)
Thanks for the help!