Spring Controller @RequestBody with file upload is it possible?

前端 未结 5 1611
说谎
说谎 2020-12-12 23:55

I have a Controller like this and I want to submit a form with file uploading as well as some form data like label as shown below. Also, I want to do that using @RequestBody

5条回答
  •  一个人的身影
    2020-12-13 00:53

    For Spring 4 and later you can do the following to get the full object:

    public ResponseEntity upload(@Payload EUPSettingsWrapper wrapper) {
    
    }
    
    
    

    Note: Also should work without the tag

    public ResponseEntity upload(EUPSettingsWrapper wrapper) {
    
    }
    
        

    提交回复
    热议问题