How to resend post multipart/form-data form with upload file to different server with Java Spring -


i receiving multipart file via http post in java spring. want forward request file other server. how can in spring java?

in jsp file:

<form ... method="post" enctype="multipart/form-data"> 

and in controller class:

@requestmapping(value = "/save", method = requestmethod.post) @responsebody public long save(@requestparam("file") multipartfile file,                        @requestparam string filecode,...) throws ioexception {     ...  } 

Comments

Popular posts from this blog

java - Static nested class instance -

c# - Bluetooth LE CanUpdate Characteristic property -

JavaScript - Replace variable from string in all occurrences -