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
Post a Comment