Я пытаюсь отобразить изображение inpustream, которое находится на контроллере, на JSP без папки img. Есть ли какой-либо прямой способ отобразить изображение inpustream на JSP?
Контроллер
SellerProduct criteria = beanMapper.map(product, SellerProduct.class);
try {
InputStream is=sardine.get(product.getProductImageUrl());
} catch (IOException e) {
e.printStackTrace();
}
Это то, что я пробовал. Но для этого требуется вход на сервер webdav. Вот и пытаюсь найти другой способ
JSP
<!-- This is what I tried <td><img src="${f:h(SellerProduct.productImageUrl)}" height=50px width=50px></td> -->
<td>${f:h(SellerProduct.productYear)}</td>
<td>${f:h(SellerProduct.productMonth)}</td>
<td>${f:h(SellerProduct.productPrice)}</td>
<td>${f:h(SellerProduct.productMake)}</td>
<td>${f:h(SellerProduct.productMileage)}</td>
<td>${f:h(SellerProduct.productEngine)}</td>
<td>${f:h(SellerProduct.productFuel)}</td>
<td>${f:h(SellerProduct.productTransmission)}</td>