可能重复:
When saving an image as BLOB how to display it in JSP with text?
Spring - display image on jsp file
我想在我的网页上显示图片库,其中包含一些内容。但我无法弄清楚如何将我的图像从数据库传递到我的页面,如:
@RequestMapping(value = "/", method = RequestMethod.GET)
public String home(Model model) {
model.addAttribute("serverTime", /*my image as byte[] ?!*/);
return "home";
}
我找到了一些示例,告诉我无法显示图像和内容映射到相同的url模式。如果是真的,你能告诉我一个如何做的例子吗?