Files
martial-master/.vscode/launch.json
n72595987@gmail.com 9c7604d98b chore: 配置开发环境并更新数据库设置
- 添加 VS Code 调试配置(launch.json, tasks.json)
- 添加 VS Code 调试使用指南
- 更新数据库端口为高位端口(MySQL: 33066, Redis: 63379)
- 更新应用服务器端口为 8123
- 启用 blade-starter-liteflow 依赖
- 添加 SDKMAN 配置文件(.sdkmanrc)
- 添加项目开发文档(CLAUDE.md)
- 更新 .gitignore 忽略日志和部署文件

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-11-29 13:26:22 +08:00

52 lines
1.5 KiB
JSON

{
"version": "0.2.0",
"configurations": [
{
"type": "java",
"name": "Application",
"request": "launch",
"mainClass": "org.springblade.Application",
"projectName": "BladeX-Boot"
},
{
"type": "java",
"name": "Debug Spring Boot App (Dev)",
"request": "launch",
"mainClass": "org.springblade.Application",
"projectName": "blade-api",
"args": "--spring.profiles.active=dev",
"vmArgs": "-Dfile.encoding=UTF-8",
"console": "integratedTerminal",
"env": {
"SPRING_PROFILES_ACTIVE": "dev"
}
},
{
"type": "java",
"name": "Debug Spring Boot App (Test)",
"request": "launch",
"mainClass": "org.springblade.Application",
"projectName": "blade-api",
"args": "--spring.profiles.active=test",
"vmArgs": "-Dfile.encoding=UTF-8",
"console": "integratedTerminal",
"env": {
"SPRING_PROFILES_ACTIVE": "test"
}
},
{
"type": "java",
"name": "Debug Current Java File",
"request": "launch",
"mainClass": "${file}"
},
{
"type": "java",
"name": "Attach to Remote JVM",
"request": "attach",
"hostName": "localhost",
"port": 5005
}
]
}