Solved Developing Java code in VSCode

I wanted to try out VSCode on FreeBSD 13 since there are extensions that should essentially make VSCode a full-featured IDE on par (most functionality) with Intellij.

The extensions available, that I have installed are:

Code:
gabrielbb.vscode-lombok
vscjava.vscode-java-pack
pivotal.vscode-boot-dev-pack

The issue I'm running into when attempting to run a primitive Java project is that it just hangs when trying to run it. I tried to see if there were any logs and I don't see any.

Has anyone had any luck with Java in VSCode? Was there any special setup that I missed? I have OpenJDK8, 11, 16, and 17 all installed and 11 is the default.
 
It appears to be working, I needed to create a launch.json file. Once I did that, it appears to be up and running.
 
Back
Top