Max file upload size in Play framework 2.0

后端 未结 5 1468
慢半拍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:14

    See http://www.playframework.com/documentation/2.0.x/ScalaBodyParsers

    or Java version: http://www.playframework.com/documentation/2.0.x/JavaBodyParsers

    extract:

    // Accept only 10KB of data.
    def save = Action(parse.text(maxLength = 1024 * 10)) { request =>
      Ok("Got: " + text)
    }
    

    And you can configure this in your application.conf using parsers.text.maxLength.

提交回复
热议问题