我使用Spring MVC将BLOB类型图像存储在MySQL数据库中,用于项目类Item(itemId,itemName,itemPrice,itemContent,itemImage)。我成功地将图像存储在数据库中但是当我试图在我的jsp中显示它时,它显示的是二进制文件,如[B @ 7fb0c025。
如何在JSP中显示正确的图像(图像存储在MySQL数据库表中)
我的模特课:
@Entity
@Table(name="item")
public class Item {
@Id
@Column(name="ItemId")
@GeneratedValue
private Integer itemId;
@Column(name="ItemName")
private String itemName;
@Column(name="ItemContent")
private String itemContent;
/*
@Column(name="ItemImage")
private ByteArray ItemImage;
*/
@Column(name="ItemPrice")
private int itemPrice;
@Column(name="ItemImage")
private byte[] itemImage;
“addItem.jsp”将项目属性与数据库中的图像一起添加。
<form:form modelAttribute="itemAttribute" enctype="multipart/form-data" method="POST" action="${Url}">
<table>
<tr>
<td><form:label path="itemId"></form:label></td>
<td><form:input path="itemId" type="hidden"/></td>
</tr>
<tr>
<td><form:label path="itemName">ItemName:</form:label></td>
<td><form:input path="itemName"/></td>
</tr>
<tr>
<td><form:label path="itemPrice">ItemPrice:</form:label></td>
<td><form:input path="itemPrice"/></td>
</tr>
<tr>
<td><form:label path="itemContent">ItemContent:</form:label>
<td><form:input path="itemContent"/>
</tr>
<tr>
<form:label for="itemImage" path="itemImage">itemImage:</form:label>
<form:input path="itemImage" type="file" />
</tr>
</table>
<input type="submit" value="Save" />
</form:form>
用于显示项目属性和图像的JSP页面。 类别编号:
<tr>
<td><form:label path="categoryName">CategoryName:</form:label></td>
<td><form:input path="categoryName"/></td>
</tr>
</table>
<input type="submit" value="Save" />
<table width: 100%; text-align:center">
<tr>
<th>ItemId</th>
<th>ItemName</th>
<th>ItemPrice</th>
<th>ItemFeatures</th>
<th>Edit</th>
<th>Delete</th>
<th>ItemImage</th>
</tr>
<tbody>
<c:forEach items="${categoryAttribute.item}" var="item">
<tr>
<c:url var="editCUrl" value="/item/edit?bid=${categoryAttribute.categoryId}&cid=${item.itemId}" />
<c:url var="deleteCUrl" value="/item/delete?id=${item.itemId}" />
<td><c:out value="${item.itemId}" /></td>
<td><c:out value="${item.itemName}"/></td>
<td><c:out value="${item.itemPrice}"/></td>
<td><c:out value="${item.itemContent}"/></td>
<td><a href="${editCUrl}">EditItem</a></td>
<td><a href="${deleteCUrl}">DeleteItem</a></td>
<td><c:out value="${item.itemImage}"/></td>
</tr>
</c:forEach>
如何正确显示存储在数据库中的图像?我想通过在JSP中显示这样的图像我做错了。 但是如何在JSP中显示图像?
答案 0 :(得分:24)
我终于能够在我的jsp上显示图像了。 我做了什么。
我分别创建了这样的控制器。
@Controller
@RequestMapping("/myImage")
public class ImageController {
@Resource(name="categoryService")
private CategoryService categoryService;
@Resource(name="itemService")
private ItemService itemService;
@RequestMapping(value = "/imageDisplay", method = RequestMethod.GET)
public void showImage(@RequestParam("id") Integer itemId, HttpServletResponse response,HttpServletRequest request)
throws ServletException, IOException{
Item item = itemService.get(itemId);
response.setContentType("image/jpeg, image/jpg, image/png, image/gif");
response.getOutputStream().write(item.getItemImage());
response.getOutputStream().close();
在jsp中我做了这个
<img src="/Project1/myImage/imageDisplay?id=${item.itemId}"/>
图像已成功显示。
答案 1 :(得分:6)
我在控制器中写下了以下代码,它对我来说很好。
在我的项目中,用户包含有@Rob照片的个人资料对象。 根据您的属性修改此代码。
byte[] encodeBase64 = Base64.encode(user.getProfile().getPhoto());
String base64Encoded = new String(encodeBase64, "UTF-8");
mav.addObject("userImage", base64Encoded );
在JSP文件中,我编写了代码
<img src="data:image/jpeg;base64,${userImage}" />
为此,您需要common-codec jar。
此外,您可以使用自定义标记来显示图片。
答案 2 :(得分:1)
您可以做的另一件事是在数据库中显示jsp中的图像。 假设您需要在jsp中显示所有用户的图像。 为此,您可以创建自己的custome jstl标记,其中包含将字节图像转换为base64图像的代码。
在我的项目中,图像位于Profile类
中即user.getProfile()。getPhoto()
package com.spring.tags;
import java.io.IOException;
import java.io.UnsupportedEncodingException;
import java.text.SimpleDateFormat;
import java.util.Date;
import javax.servlet.jsp.JspException;
import javax.servlet.jsp.JspWriter;
import javax.servlet.jsp.tagext.SimpleTagSupport;
import javax.servlet.jsp.tagext.TagSupport;
import org.apache.commons.codec.base64.Base64;
public class UserImage extends SimpleTagSupport {
private byte[] usrImage;
public void setUsrImage(byte[] usrImage) {
this.usrImage = usrImage;
}
@Override
public void doTag() throws JspException, IOException {
System.out.println("tag lib");
try {
JspWriter out = getJspContext().getOut();
if (usrImage != null && usrImage.length > 0) {
byte[] encodeBase64 = Base64.encode(usrImage);
String base64Encoded = new String(encodeBase64, "UTF-8");
out.print("data:image/jpeg;base64,"+base64Encoded);
}
} catch (Exception e) {
throw new JspException("Error: " + e.getMessage()); }
}
}
在WebContent中创建tld文件。我在我的taglib文件夹中创建了文件
<?xml version="1.0" encoding="UTF-8"?>
<taglib version="2.0" xmlns="http://java.sun.com/xml/ns/j2ee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee web-jsptaglibrary_2_0.xsd">
<tlib-version>1.0</tlib-version>
<short-name>ui</short-name>
<uri>/taglib/userimage</uri>
<tag>
<name>image</name>
<tag-class>com.spring.tags.UserImage</tag-class>
<body-content>empty</body-content>
<info>This Tag Displayes current user profile image</info>
<attribute>
<name>usrImage</name>
<required>true</required>
<description>Provide a display format</description>
<rtexprvalue>true</rtexprvalue>
</attribute>
</tag>
</taglib>
现在您可以在jsp中编写用于显示图像的代码。
<img src="<ui:image usrImage='${user.profile.photo}' />
每次不需要在控制器中转换图像时只需将字节图像传递给jsp,我们的custome标签将转换字节图像并在视图页面中显示它。
注意:在jsp文件中包含custome标记文件
<%@ taglib uri="/taglib/userimage.tld" prefix="ui"%>
答案 3 :(得分:0)
但是,我正在使用本机查询来获取ArrayList <>,所以我无法在控制器中使用setter和getter方法来获取要编码为Base64的字节,而是在Dao类中创建了一个@Transient字段来执行编码为base64并成功。
在我的岛上
@Transient
private String imgUtility;
//getter method for encoding
public String getImgUtility() throws UnsupportedEncodingException {
byte[] encodeBase64 = Base64.encodeBase64(getImage());
String base64Encoded = new String(encodeBase64, "UTF-8");
return base64Encoded;
}
在jsp视图中,您可以执行此操作
<img src="data:image/jpeg;base64,${tempCust.imgUtility}"/>