JAVA側でHttpEntityを使用して画像の取得を行なっているのですが、<img>タグに取得した値を入れて画像を表示するやり方がわかりませんでした。
HttpEntityで取得した画像はimgタグに入れられるのでしょうか?
(HttpEntityがbyteデータとheaders でどのようにして画像を返しているのか分からない...)
わからない点や追記の欲しい部分はお申し付けください! お力をお借りしたいです。
java
1Service 2 3public HttpEntity<byte[]> getImage(Long id, String imagePath) throws IOException { 4 Product product = findProduct(id); 5 if (product.getImagePath() == null) { 6 throw new ProductNotImageException("画像が存在しません"); 7 } 8 Resource resource = resourceLoader.getResource("File:" + uploadDir + imagePath); 9// URL [file:src/main/resources/static/image/3c97e22d-2f38-445d-8c4d-0d8cdaf2dde0.jpg] 10 11 byte[] b; 12 // ResourceインタフェースはInputStreamSourceインタフェースを継承しているのでgetInputStreamメソッドで、リソースファイルのInputStreamを取得することができます。 13 String mediaType; 14 InputStream image = resource.getInputStream(); 15 mediaType = URLConnection.guessContentTypeFromStream(image); 16//image = java.io.BufferedInputStream@5895482b 17 18 19 // IOUtils型はInputStreamを読み込み、byte[]を返す静的メソッドを持ちます。 20 b = IOUtils.toByteArray(image); 21// b = [B@1aea231e 22 23 HttpHeaders headers = new HttpHeaders(); 24 headers.setContentType(MediaType.valueOf(mediaType)); 25 headers.setContentLength(b.length); 26 // headers = [Content-Type:"image/jpeg", Content-Length:"26337"] 27 return new HttpEntity<>(b, headers);
Java
1Controller 2 3@GetMapping("{id}/images/{imagePath}") 4 @ResponseStatus(HttpStatus.OK) 5 public HttpEntity<byte[]> getImage(@PathVariable Long id, @PathVariable String imagePath) 6 throws IOException { 7 try { 8 return productService.getImage(id, imagePath); 9 } catch (IOException e) { 10 throw new ProductNotImageException("画像が存在しません", e); 11 } 12 }
Java
1@Entity 2@Table(name = "product") 3public class Product { 4 @Id 5 @GeneratedValue(strategy = GenerationType.IDENTITY) 6 private long id; 7 8 private String title; 9 10 private String description; 11 12 private Integer price; 13 14 private String imagePath; 15
React
1const getImage = (id, imagePath, apiToken) => { 2 productApi.get(`/${id}` + `/images` + `/${imagePath}`, generateHeader(apiToken)); 3};
React
1<img src = "何を入れたらいいのか分からない">
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/07/11 15:17