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>
This commit is contained in:
51
.vscode/launch.json
vendored
Normal file
51
.vscode/launch.json
vendored
Normal file
@@ -0,0 +1,51 @@
|
||||
{
|
||||
"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
|
||||
}
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user