0
votes

I using Apache Camel with spring boot and when I want to send a file size 25MB I got error 413 Request Entity Too Large. I tried set but I still don't work.

spring.servlet:
  multipart:
    max-file-size: 50MB
    max-request-size: 50MB

I using camel-spring-boot 2.23.1

1

1 Answers

3
votes

I need to add this to restConfiguration()

restConfiguration()
    .componentProperty("chunkedMaxContentLength", String.valueOf(50 * 1024 * 1024))
    .endpointProperty("chunkedMaxContentLength", String.valueOf(50 * 1024 * 1024))
    .consumerProperty("chunkedMaxContentLength", String.valueOf(50 * 1024 * 1024))