我將 Apache Camel 與 spring boot 一起使用,當(dāng)我想發(fā)送一個 25MB 的文件時(shí),出現(xiàn)錯誤 413 Request Entity Too Large。我試過設(shè)置但我仍然沒有工作。spring.servlet:
multipart:
max-file-size: 50MB
max-request-size: 50MB我使用駱駝彈簧引導(dǎo) 2.23.1
1 回答

慕斯王
TA貢獻(xiàn)1864條經(jīng)驗(yàn) 獲得超2個贊
我需要將它添加到 restConfiguration()
restConfiguration() .componentProperty("chunkedMaxContentLength", String.valueOf(50 * 1024 * 1024)) .endpointProperty("chunkedMaxContentLength", String.valueOf(50 * 1024 * 1024)) .consumerProperty("chunkedMaxContentLength", String.valueOf(50 * 1024 * 1024))
添加回答
舉報(bào)
0/150
提交
取消