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

django - (fields.E300) Field defines a relation with model 'AbstractEmailUser' which is either not installed, or is abstract -

matlab - error with cyclic autocorrelation function -

php - Using grpc in Laravel, "Class 'Grpc\ChannelCredentials' not found." -