vscode-java-debug
vscode-java-debug copied to clipboard
Java Debugger for Visual Studio Code.
I am able to set the function breakpoint on methods of top level class e.g. ```java com.example.starstar.StarstarApplication#main ``` but the same does not work for methods of inner static class...
Flooding std-out in debug console by a JUnit test in a short amount of time seems to result in total vscode crash. Running the given the following simple JUnit 5...
Randomly getting error: Failed to lanuch debuggee in terminal: com.sun.jdi.connect.TransportTimeoutException ##### Environment - Operating System: Debian GNU/Linux 12 x86_64 - JDK version: openjdk 17.0.7 - Visual Studio Code version: 1.79.2...
Looks like the show logical structure setting is no longer working on remote debugging sessions. I am unable to see content of hashmaps and/or collections. Probably caused by the same...
The static variables of an instance of a class are not updated in the variable view if another instance is changed. ##### Environment - Operating System: Windows 10 - JDK...
Hello, I'm fairly amateurish here so bear with me if you will. I used to use IntelliJ IDEA to debug my Weblogic apps (all running on a single debug port...
I am trying to debug a Java Card Project in VS Code, but the breakpoints are not hit. ##### Environment - Operating System: Windows 10. - JDK version: 17.0.5 LTS...
[provide a description of the issue] ##### Environment - Operating System: win11 - JDK version: openjdk8-redhat - Visual Studio Code version: 1.77.3 - Java extension version: 1.18.0 - Java Debugger...
Function breakpoint on constructor does not work using syntax like `java.io.PrintStream#PrintStream` . I can set function breakpoint on methods like `java.io.PrintStream#println` . In any program set function breakpoint on constructor...
When stepping out of a function the return value is helpfully displayed like a variable: `->equals(): false` But when trying to edit it (for lack of #1320) I'm getting ...