我是Spring Boot的新手。我正在使用Spring Boot设计一个系统,它是一个Restful API。我想显示用户上传的图像。我将文件存储在资源内的子文件夹“ fotos / x”中。我本能地试图通过键入来访问它

  http://localhost:8080/fotos/76/miniaturas/casa-venda-2-dormitorios-franca-sao-paulo_1.jpg


Holping Tomcat将为我提供图像,但事实并非如此。

所以我继续尝试建立一个端点,我遇到了一个片段

       @GetMapping(value = "/image")
public @ResponseBody byte[] getImage() throws IOException {

    InputStream in = null;
    try{
    in = getClass()
      .getResourceAsStream("/fotos/76/miniaturas/casa-venda-2-dormitorios-franca-sao-paulo_1.jpg");
    }catch(Exception ex){

        System.out.println(ex.getMessage());
    }
    return IOUtils.toByteArray(in);  //toByteArray doesn't exist.
}


}

最佳答案

我找到了一些对我有帮助的代码。

@GetMapping(value = "/imagens/{dir}/{img}", produces = MediaType.IMAGE_JPEG_VALUE)
public @ResponseBody byte[] getImage(@PathVariable String dir, @PathVariable String img) throws IOException {


     byte[] bytes = Files.readAllBytes(Paths.get("/var/www/back_imoveis/back_imoveis/imoveis/src/main/resources/public/fotos/" + dir + "/miniaturas/" + img));

     return bytes;


}

07-27 18:35