diff --git a/modules/core/src/main/resources/config/jeesite-core.yml b/modules/core/src/main/resources/config/jeesite-core.yml index 75225a6a..e0e47925 100644 --- a/modules/core/src/main/resources/config/jeesite-core.yml +++ b/modules/core/src/main/resources/config/jeesite-core.yml @@ -695,6 +695,10 @@ file: # 上传图片自动压缩宽高,指定为 -1 不进行压缩(全局设置) v4.1.7 imageMaxWidth: 1024 imageMaxHeight: 768 + + # 缩略图设定,生成的尺寸(宽x高,宽x高)、格式(jpg,png) v5.4.2 + #imageThumbConfig: 150x150,300x300 + #imageThumbFormat: jpg # 是否启用秒传 checkmd5: true diff --git a/web-api/src/main/resources/config/application.yml b/web-api/src/main/resources/config/application.yml index d79300ad..8808af16 100644 --- a/web-api/src/main/resources/config/application.yml +++ b/web-api/src/main/resources/config/application.yml @@ -261,7 +261,7 @@ spring: # 事务超时时间,单位秒(30分钟)(spring boot 3) transaction: default-timeout: 30m - + # # Redis 连接参数 (RedisProperties) # data: # redis: @@ -851,6 +851,10 @@ file: # # 上传图片自动压缩宽高,指定为 -1 不进行压缩(全局设置) v4.1.7 # imageMaxWidth: 1024 # imageMaxHeight: 768 +# +# # 缩略图设定,生成的尺寸(宽x高,宽x高)、格式(jpg,png) v5.4.2 +# #imageThumbConfig: 150x150,300x300 +# #imageThumbFormat: jpg # # # 是否启用秒传 # checkmd5: true diff --git a/web/src/main/resources/config/application.yml b/web/src/main/resources/config/application.yml index bac2078d..86944f7a 100644 --- a/web/src/main/resources/config/application.yml +++ b/web/src/main/resources/config/application.yml @@ -852,6 +852,10 @@ file: # imageMaxWidth: 1024 # imageMaxHeight: 768 # +# # 缩略图设定,生成的尺寸(宽x高,宽x高)、格式(jpg,png) v5.4.2 +# #imageThumbConfig: 150x150,300x300 +# #imageThumbFormat: jpg +# # # 是否启用秒传 # checkmd5: true #