Debugging Java in VS Code
Visual Studio Code is great at debugging Java applications through the Debugger for Java extension.
It's a lightweight Java debugger based on Java Debug Server which extends the Language Support for Java by Red Hat.
Here's a list of supported debugging features:
- Launch/Attach
- Breakpoints
- Exceptions
- Pause & Continue
- Step In/Out/Over
- Variables
- Call Stacks
- Threads
- Debug Console
The Java debugger is an open source project which welcomes contributors to collaborate through GitHub repositories:
To run and debug JUnit test, you can also install the Java Test Runner extensions, which is another lightweight extension you can use to manage tests in your projects.
Install
For the debugger to work, you also need to have the Language Support for Java(TM) by Red Hat extension installed. To make it easier, there is a Java Extension Pack which bundles the Language Support for Java(TM) by Red Hat, the Debugger for Java and several other popular Java extensions.
You can manually install the extension pack from the Extensions view (⇧⌘X (Windows, Linux Ctrl+Shift+X)) by typing vscode-java-pack in the search box. You will also be prompted to install the Java Extension Pack when you edit a Java file in VS Code for the first time.
Use
It's very easy to run and debug your Java application:
- Launch VS Code.
- Open a Java project (Maven/Gradle/Eclipse).
- Open a Java file to activate the extensions.
- (Optional) Add debug configurations and edit the
launch.jsonconfiguration file. - Press F5.

If there's no debug configuration file launch.json in your project, the debugger will automatically find the main class and generate the configuration for you to launch your application.

You can also configure the launch.json yourself to set customized settings or attach to another Java process.
Debugging single files
VS Code can run and debug single Java files without any project.

Debugging external files
The Java debugger also supports external source files. This lets you debug third party classes when they are inside a JAR or a source attachment. Set your breakpoints in those classes before you start debugging. Java 9 is supported with VS Code as well.

Debug session inputs
The default Debug Console in VS Code doesn't support inputs. If your program need inputs from a terminal, you can use the Integrated Terminal (⌃` (Windows, Linux Ctrl+`)) within VS Code or an external terminal to launch it.

Step filtering
Step filter is supported by the extension to filter out types that you do not wish to see or step through while debugging. With this feature, you can configure the packages to filter within your launch.json so they could be skipped when you step through.

The debugger also lets you evaluate expressions in the WATCH window as well as the Debug Console. You can also use this feature for conditional breakpoint setting.

Hot Code replacement
Another advanced feature the debugger supports is 'Hot Code' replacement. Hot code replacement (HCR) is a debugging technique whereby the Java debugger transmits new class files over the debugging channel to another Java Virtual Machine (JVM). HCR facilitates experimental development and fosters iterative trial-and-error coding. With this new feature, you can start a debugging session and change a Java file in your development environment, and the debugger will replace the code in the running JVM. No restart is required, which is why it’s called "hot". Below is an illustration of how you can use HCR with Debugger for Java in VS Code.

Configuration
There are many options and settings available to configure the debugger. For example, configuring the current working directory (cwd) and environment variables is easily done with launch options.

Consult the documentation for the Language Support for Java by Red Hat extension for help in setting up your project.
Launch
mainClass(required) - The main class of the program (fully qualified name, e.g. [mymodule/]com.xyz.MainClass).args- The command line arguments passed to the program.sourcePaths- The extra source directories of the program. The debugger looks for source code from project settings by default. This option allows the debugger to look for source code in extra directories.modulePaths- The modulepaths for launching the JVM. If not specified, the debugger will automatically resolve from current project.classPaths- The classpaths for launching the JVM. If not specified, the debugger will automatically resolve from current project.encoding- Thefile.encodingsetting for the JVM. If not specified, 'UTF-8' will be used. Possible values can be found in Supported Encodings.vmArgs- The extra options and system properties for the JVM (e.g. -Xms<size> -Xmx<size> -D<name>=<value>).projectName- The preferred project in which the debugger searches for classes. There could be duplicated class names in different projects. This setting also works when the debugger looks for the specified main class when launching a program. It is required for expression evaluation.cwd- The working directory of the program.env- The extra environment variables for the program.stopOnEntry- Automatically pause the program after launching.console- The specified console to launch the program. Defaults tointernalConsole.internalConsole- VS Code Debug Console (input stream not supported).integratedTerminal- VS Code Integrated Terminal.externalTerminal- External terminal that can be configured in user settings.
stepFilters- Skip specified classes or methods when stepping.classNameFilters- Skip the specified classes when stepping. Class names should be fully qualified. Wildcard is supported.skipSynthetics- Skip synthetic methods when stepping.skipStaticInitializers- Skip static initializer methods when stepping.skipConstructors- Skip constructor methods when stepping.
Attach
hostName(required) - The host name or IP address of remote debuggee.port(required) - The debug port of remote debuggee.timeout- Timeout value before reconnecting, in milliseconds (default to 30000ms).sourcePaths- The extra source directories of the program. The debugger looks for source code from project settings by default. This option allows the debugger to look for source code in extra directories.projectName- The preferred project in which the debugger searches for classes. There could be duplicated class names in different projects. This setting also works when the debugger looks for the specified main class when launching a program.stepFilters- Skip specified classes or methods when stepping.classNameFilters- Skip the specified classes when stepping. Class names should be fully qualified. Wildcard is supported.skipSynthetics- Skip synthetic methods when stepping.skipStaticInitializers- Skip static initializer methods when stepping.skipConstructors- Skip constructor methods when stepping.
User Settings
java.debug.logLevel- Minimum level of debugger logs that are sent to VS Code, defaults towarn.java.debug.settings.showHex- Show numbers in hex format in in the VARIABLES view, defaults tofalse.java.debug.settings.showStaticVariables- Show static variables in in the VARIABLES view, defaults totrue.java.debug.settings.showQualifiedNames- Show fully qualified class names in in the VARIABLES view, defaults tofalse.java.debug.settings.maxStringLength- Maximum length of strings displayed in the VARIABLES view or Debug Console. Strings longer than this length will be trimmed. Default is0which means no trim is performed.java.debug.settings.enableHotCodeReplace- Enable Hot Code replacement for Java source code. Make sure the auto build is not disabled for VS Code Java. See the wiki page for more information about usages and limitations.
Feedback and Questions
You can find the full list of issues at Issue Tracker. You can submit a bug or feature suggestion, and participate in the community driven Gitter channel.
Run JUnit Tests
Java Test Runner allows you to run and debug your test cases.

You can also manage your test cases with TEST EXPLORER.

Next Steps
Read on to find out about:
- Debugging - Find out how to use the debugger with your project for any language.
- Java Extensions - Learn about more useful Java extensions for VS Code.

