launch.json 341 B

1234567891011121314
  1. {
  2. "configurations": [
  3. {
  4. "type": "java",
  5. "name": "Spring Boot-LifeCenterApplication<LifeCenter>",
  6. "request": "launch",
  7. "cwd": "${workspaceFolder}",
  8. "console": "internalConsole",
  9. "mainClass": "com.lemon.lifecenter.LifeCenterApplication",
  10. "projectName": "LifeCenter",
  11. "args": ""
  12. }
  13. ]
  14. }