我正在使用Play Framework上传文件,但我收到此警告:
[play-dev-mode-akka.actor.default-dispatcher-47] [akka.actor.ActorSystemImpl(play-dev-mode)]早期发送2xx'收到请求结束前的响应...请注意,此响应后将关闭连接。此外,许多客户不会阅读早期回复!考虑仅在完全读取请求数据后发出此响应!
我真的不知道,如果这是一个令人担心的警告,或者我需要注意我的代码实现。
这是我上传文件的实际代码:
public Result imageUpload(){
try{
MultipartFormData<File> body = request().body().asMultipartFormData();
FilePart<File> picture = body.getFile("file");
String fileName = picture.getFilename();
String contentType = picture.getContentType();
File file = picture.getFile();
System.out.println(picture);
System.out.println(fileName);
System.out.println(contentType);
System.out.println(file);
}catch (Exception e) {
// TODO: handle exception
}
return ok();
}
你认为这有什么问题吗?