Advertisement
Guest User

Untitled

a guest
Jun 25th, 2019
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. @Controller
  2. public class RestController {
  3.  
  4. @GetMapping("/upload/remote")
  5. public ResponseEntity<?> handleFileUploadRemote(@RequestParam("file") MultipartFile file) {
  6. return null;
  7. }
  8.  
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement