Issue
This Content is from Stack Overflow. Question asked by Chaitanya
public ResponseEntity<Optional> getData(@RequestBody RequestModel requestModel) {
try {
List mango = new ArrayList();
mangoRepository.findByMangoTag(
requestModel.getMangoTag(),
requestModel.getMangoProduct(),
requestModel.getSellerType()).forEach(mango::add);
Optional<Mango> res = mango.stream().findFirst();
if (!res.isPresent()) {
return new ResponseEntity<>(HttpStatus.NO_CONTENT);
}
return new ResponseEntity<>(res, HttpStatus.OK);
} catch (Exception e) {
return new ResponseEntity<>(null, HttpStatus.INTERNAL_SERVER_ERROR);
}
Solution
This question is not yet answered, be the first one who answer using the comment. Later the confirmed answer will be published as the solution.
This Question and Answer are collected from stackoverflow and tested by JTuto community, is licensed under the terms of CC BY-SA 2.5. - CC BY-SA 3.0. - CC BY-SA 4.0.