Jinbo Wang
Jinbo Wang
@chris-hunter206 thank you for providing the details. "Fix" and "Clear workspace cache" are doing the same thing as the step "**F1** -> **Java: Clean Java Language Server Workspace**", which will...
pls see https://github.com/microsoft/vscode-java-debug/blob/main/CONTRIBUTING.md about how to contribute to Java Debugger.
> I cannot evaluate an expression in VSCode debugging tomcat. Could you share your steps to launch the tomcat and connect to the debugger?
OK, you're using Tomcat for Java extension to launch debugging. That extension doesn't consume the local launch.json config. Could you take a look at a new extension https://marketplace.visualstudio.com/items?itemName=redhat.vscode-server-connector, it has...
If you want the case is covered well, at least you should provide detailed reproduce steps and a minimum sample project to reproduce the issue.
@fbricon @gorkem duplicate with https://github.com/Microsoft/vscode-java-debug/issues/33, the `preLaunchTask` works with `mvnDebug tomcat7:run`, but it seems you need click the debug button twice. 1. click the first time it will show `Listening...
@weinand Thanks for the suggestion. Got it. if java debugger sends `mvn -Dmaven.surefire.debug test` command by `runInTerminalRequest` to vscode, vscode will execute it in integrated terminal. But because the `mvn`...
Understand, i think i got the answer. Thanks again. Currently we have taken the first way to launch normal java program. And plan to try the second way for those...
find no resource to finish it yet, add it to backlog.
If the `preLaunchTask` points to a server mode or background task, you should use `problemMatcher` filter to tell VSCode it's ready. Then the Java debugger has the chance to attach...