新增 base64 编码上传附件接口

This commit is contained in:
chenbowen
2025-10-30 11:15:38 +08:00
parent 744567d999
commit b618f833d1
5 changed files with 78 additions and 1 deletions

View File

@@ -12,7 +12,7 @@ public class GatewayWebClientConfiguration {
private final int maxInMemorySize;
public GatewayWebClientConfiguration(
@Value("${databus.gateway.web-client.max-in-memory-size:2097152}") int maxInMemorySize) {
@Value("${databus.gateway.web-client.max-in-memory-size:20971520}") int maxInMemorySize) {
this.maxInMemorySize = maxInMemorySize;
}