We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
coded from https://code.visualstudio.com/docs/java/java-spring-boot I added the file 'src/main/resources/application.yml' with the following :
server: port:8888
I run the debugger with the following Launch configuration:
{ "type": "java", "name": "Debug (Launch)-DemoApplication<demo>", "request": "launch", "cwd": "${workspaceFolder}", "console": "internalConsole", "stopOnEntry": false, "mainClass": "com.example.demo.DemoApplication", "args": "", "projectName": "demo" }
The debugger runs with the default port 8080 and ignores the application.yml file
The text was updated successfully, but these errors were encountered:
Maybe you can find a solution here #402 .
Sorry, something went wrong.
version 0.12.2 will solve your problem, see https://marketplace.visualstudio.com/items/vscjava.vscode-java-debug/changelog, btw: your yaml is illegal: port: 8888
I have the same issue, and currently running the 0.32.1 version of Debugger for Java
No branches or pull requests
coded from https://code.visualstudio.com/docs/java/java-spring-boot
I added the file
'src/main/resources/application.yml'
with the following :
I run the debugger with the following Launch configuration:
The debugger runs with the default port 8080 and ignores the application.yml file
The text was updated successfully, but these errors were encountered: