我目前正在使用play framework 2.3 - typesafe activator distribution。当我需要从浏览器前端上传文件到播放框架后端时,我有问题。我测试了http://www.playframework.org/documentation/2.0/JavaFileUpload
中给出的指令这是我的UI代码:
@helper.form(action = routes.ProjectController.uploadFile, 'enctype -> "multipart/form-data"){
<input type="file" name="picture">
<p>
<input type="submit">
</p>
}
这是我的路线配置
POST / project / upload @ controllers.ProjectController.uploadFile
这是我的java代码。
private static final int MAX_LENGTH = 100 * 1024 * 1024;
@BodyParser.Of(value = BodyParser.Json.class, maxLength = MAX_LENGTH)
public Result uploadFile() {
MultipartFormData body2 = request().body().asMultipartFormData();
FilePart picture = body2.getFile("picture");
if (picture != null) {
String fileName = picture.getFilename();
String contentType = picture.getContentType();
File file = picture.getFile();
return ok("File uploaded");
} else {
flash("error", "Missing file");
return ok("Failed to upload");
}
}
但是当代码到达时
MultipartFormData body2 = request().body().asMultipartFormData();
body2的值始终为null。好像文件不是通过HTTP发送的?
此外,我还测试了使用角度上传 https://github.com/danialfarid/angular-file-upload
但它使用了play框架不支持的HttpServletRequest。
有谁请让我知道我犯了哪些错误,以至于play java应用程序没有检索到该文件? 如果有任何其他替代方案来实现此上传功能,我将不胜感激。
感谢
答案 0 :(得分:0)
您应将此@BodyParser.Of(value = BodyParser.Json.class, maxLength = MAX_LENGTH)
更改为@BodyParser.Of(value = BodyParser.AnyContent.class, maxLength = MAX_LENGTH)
您将BodyParser
设置为json
并上传图片,当您的解析器检测到上传的内容(image
)与json
不匹配时,它会返回{{ 1}}。请参阅此link