iohannes
Published on 2025-03-18 / 0 Visits

vscode debug spring boot

{
    "configurations": [
        {
            "type": "java",
            "name": "Spring Boot",
            "request": "launch",
            "cwd": "${workspaceFolder}",
            "mainClass": "your_main_class", // start-class
            "projectName": "your_prject_name",   // artifactId
            "args": "",
            "envFile": "${workspaceFolder}/.env"
        }
    ]
}