WholeProcessPlatform/.vscode/launch.json
2026-03-25 10:02:19 +08:00

33 lines
1023 B
JSON

{
// 使用 IntelliSense 了解相关属性。
// 悬停以查看现有属性的描述。
// 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "java",
"name": "Backend (dev)",
"request": "launch",
"mainClass": "com.yfd.platform.PlatformApplication",
"cwd": "${workspaceFolder}/backend",
"preLaunchTask": "backend:prepare-classpath",
"classPaths": [
"${workspaceFolder}/backend/target/classes",
"${workspaceFolder}/backend/target/dependency/*"
],
"args": [
"--spring.profiles.active=dev"
],
"vmArgs": "-Dfile.encoding=UTF-8"
},
{
"type": "java",
"name": "Attach (5005)",
"request": "attach",
"hostName": "localhost",
"port": 5005
}
]
}