What is the proper way , using MultiActionController? I got in my Restaurant class:
private byte[] logo;
In my database I got table BLOB image. By using hibernate, it saves to my database properly by:
<tr>
<td>Logo :</td>
<td>< input type="file" name="logo" /></td>
</tr>
But i dont know how to shows this image on another site. Maybe:
< img src="<%=("restaurant.logo")%>" alt="Upload Image" />
?