Update VSCode configuration, enhance Java project settings, and modify application properties for improved logging and encoding support

This commit is contained in:
geht
2026-05-19 11:22:53 +08:00
parent 500de8961d
commit be169ed131
7 changed files with 94 additions and 13 deletions

24
.vscode/launch.json vendored
View File

@@ -1,12 +1,14 @@
{
"configurations": [
{
"type": "java",
"name": "JeecgSystemApplication",
"request": "launch",
"mainClass": "org.jeecg.JeecgSystemApplication",
"projectName": "jeecg-system-start",
"preLaunchTask": "JeecgBoot: compile"
}
]
}
"version": "0.2.0",
"configurations": [
{
"type": "java",
"name": "JeecgSystemApplication (单体)",
"request": "launch",
"mainClass": "org.jeecg.JeecgSystemApplication",
"projectName": "jeecg-system-start",
"cwd": "${workspaceFolder}/jeecg-boot/jeecg-module-system/jeecg-system-start",
"vmArgs": "-Dfile.encoding=UTF-8 -Dsun.stdout.encoding=UTF-8 -Dsun.stderr.encoding=UTF-8"
}
]
}