I have a table in database. In that table one filed is of type BLOB contains image on that.I want to read the same image from database and want to display the image on jsp page by using tag.
// using code in jsp is
<%
Blob image;
image=blogd.getImage();
out.println(image);
%>
<img src="<%=image.getBinaryStream() %>>" width="300px" height="300px" />
// out.println(image);
output of this particular line is
org.hibernate.lob.SerializableBlob@c7014c
- blogd is the object of Persitance java classs.