Update VSCode configuration, enhance Java project settings, and modify application properties for improved logging and encoding support
This commit is contained in:
@@ -11,4 +11,13 @@
|
||||
|
||||
<artifactId>jeecg-system-local-api</artifactId>
|
||||
|
||||
<dependencies>
|
||||
<!-- 接口含 SseEmitter/RequestParam,显式声明便于 IDE 与编译期解析(optional 不传递给调用方) -->
|
||||
<dependency>
|
||||
<groupId>org.springframework</groupId>
|
||||
<artifactId>spring-webmvc</artifactId>
|
||||
<optional>true</optional>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
|
||||
</project>
|
||||
@@ -23,6 +23,11 @@ spring:
|
||||
# main:
|
||||
# # 启动加速 (建议开发环境,开启后flyway自动升级失效)
|
||||
# lazy-initialization: true
|
||||
# banner.txt 为 UTF-8;Windows 下改走日志输出(与 logging.charset.console=GBK 一致),避免 System.out 乱码
|
||||
main:
|
||||
banner-mode: log
|
||||
banner:
|
||||
charset: UTF-8
|
||||
flyway:
|
||||
# 是否启用flyway
|
||||
enabled: false
|
||||
@@ -315,6 +320,10 @@ cas:
|
||||
prefixUrl: http://cas.example.org:8443/cas
|
||||
#Mybatis输出sql日志
|
||||
logging:
|
||||
charset:
|
||||
# Windows 终端/Cursor 默认 GBK;终端已 chcp 65001 时可改为 UTF-8
|
||||
console: GBK
|
||||
file: UTF-8
|
||||
level:
|
||||
org.springframework.context.support.PostProcessorRegistrationDelegate: error
|
||||
org.flywaydb: debug
|
||||
|
||||
Reference in New Issue
Block a user