我将 Apache Camel 与 spring boot 一起使用,当我想发送一个 25MB 的文件时,出现错误 413 Request Entity Too Large。我试过设置但我仍然没有工作。spring.servlet:
multipart:
max-file-size: 50MB
max-request-size: 50MB我使用骆驼弹簧引导 2.23.1
1 回答
慕斯王
TA贡献1864条经验 获得超2个赞
我需要将它添加到 restConfiguration()
restConfiguration() .componentProperty("chunkedMaxContentLength", String.valueOf(50 * 1024 * 1024)) .endpointProperty("chunkedMaxContentLength", String.valueOf(50 * 1024 * 1024)) .consumerProperty("chunkedMaxContentLength", String.valueOf(50 * 1024 * 1024))
添加回答
举报
0/150
提交
取消