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"
}
]
}

18
.vscode/settings.json vendored
View File

@@ -11,5 +11,21 @@
"path": "C:\\Program Files\\Java\\jdk-17",
"default": true
}
]
],
"java.import.exclusions": [
"**/jeecg-server-cloud/**",
"**/jeecg-boot-platform/**",
"**/node_modules/**",
"**/.metadata/**",
"**/archetype-resources/**",
"**/META-INF/maven/**"
],
"java.project.resourceFilters": [
"node_modules",
".git",
"jeecg-server-cloud",
"jeecg-boot-platform"
],
"java.debug.settings.console": "integratedTerminal",
"java.debug.settings.vmArgs": "-Dspring.main.banner-mode=log -Dspring.banner.charset=UTF-8 -Dlogging.charset.console=GBK"
}