reactor:easy-trans 默认禁用,避免影响接口性能

This commit is contained in:
YunaiV
2025-07-23 22:22:45 +08:00
parent 5a2fdf49c6
commit e93198afad
24 changed files with 33 additions and 20 deletions

View File

@@ -111,7 +111,7 @@ spring:
# VO 转换(数据翻译)相关
easy-trans:
is-enable-global: true # 启用全局翻译(拦截所有 SpringMVC ResponseBody 进行自动翻译 )。如果对于性能要求很高可关闭此配置,或通过 @IgnoreTrans 忽略某个接口
is-enable-global: false # 【默认禁用,对性能确认压力大】启用全局翻译(拦截所有 SpringMVC ResponseBody 进行自动翻译 )。如果对于性能要求很高可关闭此配置,或通过 @IgnoreTrans 忽略某个接口
--- #################### 定时任务相关配置 ####################