I have the following JAVA controller:
Getting an error in JAVA: Received Unknown exception org.springframework.web.bind.MissingServletRequestParameterException: Required MultipartFile parameter 'file' is not present when I am not passing contentType header from React.
Getting an error in JAVA: org.apache.commons.fileupload.FileUploadException: the request was rejected because no multipart boundary was found when I am passing contentType header from React as 'Content-Type': 'multipart/form-data'
The same Node server side code for a JAVA dropwizard controller as:
What am I doing wrong? Please help
from Issue with MultipartFile Upload From React/Node
@RequestMapping(value = "/data/upload", method = RequestMethod.POST)
public
@ResponseBody
void uploadData(@RequestParam("file") MultipartFile file) throws IOException {
logger.info("Received File for Ingestion");
dataUploadService.processData(file.getInputStream());
}
Node server side code:serviceCall(serviceCallRequestData, request, finalResponse) {
logger.info('Making remote request: ' + JSON.stringify(serviceCallRequestData));
let file = request.files['file']; // file: Object {name: "sample_aspect_review_upload.csv",
encoding: "7bit", mimetype: "text/csv", mv: }
let formData = new FormData();
formData.append('file', Buffer.from(file.data));
fetch(serviceCallRequestData.url, {
method: serviceCallRequestData.requestObject.method,
headers: serviceCallRequestData.requestObject.headers,
body: formData
}).then(response => {
if (response.status !== 200) {
logger.error(`Error while making http call requestData:
${JSON.stringify(serviceCallRequestData)}`);
finalResponse.status(500).send('Internal server error');
return;
}
return response.json();
}).then((json) => {
logger.info(`Returning response for aspect-review-file-upload: ${JSON.stringify(json)}`);
finalResponse.status(200).send(JSON.stringify(json));
}).catch((e) => {
logger.error(`Error while making http call requestData:
${JSON.stringify(serviceCallRequestData)} error: ${JSON.stringify(e)}`);
finalResponse.status(500).send('Internal server error');
});
}
Trying to upload a csv file like:"product_id","review_id","aspect_id","rating","confidence_score","indices"
"pid","rid","aid",1,0.851955,"[{\"s\":0,\"e\":114,\"highlights\":[39,68]}]"
The upload happens easily from POSTMAN. See the below screenshot: Getting an error in JAVA: Received Unknown exception org.springframework.web.bind.MissingServletRequestParameterException: Required MultipartFile parameter 'file' is not present when I am not passing contentType header from React.
Getting an error in JAVA: org.apache.commons.fileupload.FileUploadException: the request was rejected because no multipart boundary was found when I am passing contentType header from React as 'Content-Type': 'multipart/form-data'
The same Node server side code for a JAVA dropwizard controller as:
@POST
@Consumes(MediaType.MULTIPART_FORM_DATA)
@Produces(MediaType.APPLICATION_JSON)
public Response uploadFile(
@FormDataParam("file") InputStream inputStream,
@FormDataParam("file") FormDataContentDisposition fileDetail
) throws IOException {
logger.debug("Request to upload data file-name: {}", fileDetail.getName());
dataUploadService.processData(inputStream);
return Response.ok().build();
}
works correctly.What am I doing wrong? Please help
from Issue with MultipartFile Upload From React/Node
No comments:
Post a Comment