Sending Multiple images from web service SPRINGBOOT+REST+MAVEN
问题 I am writing a web service in spring boot restful web App using which i am sending a image to anyone who wants to consume it below is a code snippet which worked for me @RequestMapping(value = "/photo_1",method = RequestMethod.GET ) public ResponseEntity<byte[]> greeting_image_1(@RequestParam(value="name", defaultValue="World") String name) throws IOException{ InputStream in = getClass().getResourceAsStream("/images/someimage.jpg"); byte[] a = IOUtils.toByteArray(in); final HttpHeaders