Halo
发布于 2024-01-07 / 79 阅读 / 0 评论 / 0 点赞

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"
        }
    ]
}

评论