在Play Framework中,您可以通过添加以下内容来限制上传大小:

parsers.MultipartFormData.maxLength=[limit]


在application.conf中。但是它似乎不适用于当前版本的Play Framework。我该如何在2.2版本中做到这一点?

最佳答案

在Play 2.2中

parsers.text.maxLength=[limit]


https://www.playframework.com/documentation/2.2.x/ScalaBodyParsers#Max-content-length

进行中2.4

play.http.parser.maxDiskBuffer=[limit]


https://www.playframework.com/documentation/2.4.x/ScalaBodyParsers#Max-content-length

10-01 10:11