Max file upload size in Play framework 2.0

后端 未结 5 1453
慢半拍i
慢半拍i 2020-12-14 07:49

When I upload large files (greater than 1 MB) in play framework 2.0 I get

"413 Request Entity Too Large" error.

Cou

5条回答
  •  囚心锁ツ
    2020-12-14 08:00

    For play version 2.4.x:

    For parsers that buffer content on disk, such as the raw parser or multipart/form-data, the maximum content length is specified using the play.http.parser.maxDiskBuffer property, it defaults to 10MB. The multipart/form-data parser also enforces the text max length property for the aggregate of the data fields.

    https://www.playframework.com/documentation/2.4.x/ScalaBodyParsers

提交回复
热议问题