2016-06-30 5 views
0

クライアント要求の一部として、画像ファイルをSpring RestControllerエンドポイントに提出する必要があります。Spring RestController提出ファイル

@RequestParam("file") MultipartFile fileRestControllerを使用することはできますか?

もしそうなら、例を示してください。

答えて

3

はい、それは可能と非常に簡単です:

@RequestMapping("upload") 
public void upload(@RequestParam("file") MultipartFile file){ 
    //Do what you like with the file 
} 
関連する問題