mirror of
https://gitee.com/durcframework/SOP.git
synced 2025-08-11 12:56:28 +08:00
4.3.0
This commit is contained in:
@@ -4,7 +4,7 @@
|
||||
|
||||
- 升级`spring-boot/spring-cloud/spring-cloud-alibaba`版本
|
||||
- 修复`DataBufferLimitException: Exceeded limit on max bytes to buffer : 262144`问题
|
||||
- 修复压测出现`ClosedChannelException`问题
|
||||
- 修复压测出现`ClosedChannelException`,`Connection has been closed BEFORE response`问题
|
||||
|
||||
## 4.2.7
|
||||
|
||||
|
@@ -40,9 +40,13 @@ public class SopGatewayEnvironmentPostProcessor implements EnvironmentPostProces
|
||||
}
|
||||
|
||||
private void initMemSize(Properties properties) {
|
||||
String size = properties.getProperty("spring.servlet.multipart.max-file-size", "10M");
|
||||
DataSize dataSize = DataSize.parse(size);
|
||||
properties.putIfAbsent("spring.codec.max-in-memory-size", dataSize.toBytes());
|
||||
String maxFileSizeKey = "spring.servlet.multipart.max-file-size";
|
||||
String maxMemSizeKey = "spring.codec.max-in-memory-size";
|
||||
String defaultSize = "10M";
|
||||
String maxUploadSize = properties.getProperty(maxFileSizeKey, defaultSize);
|
||||
String maxBodySize = properties.getProperty(maxMemSizeKey, defaultSize);
|
||||
long size = Math.max(DataSize.parse(maxUploadSize).toBytes(), DataSize.parse(maxBodySize).toBytes());
|
||||
properties.put(maxMemSizeKey, size);
|
||||
}
|
||||
|
||||
}
|
||||
|
Reference in New Issue
Block a user