java - Spring: how to show image with other content on JSP page -
possible duplicate:
when saving image blob how display in jsp text?
spring - display image on jsp file
i want show image gallery on web page content below it. can't figure out how pass image database page such as:
@requestmapping(value = "/", method = requestmethod.get) public string home(model model) { model.addattribute("servertime", /*my image byte[] ?!*/); return "home"; }
i have found example tells can't show image , content mapped on same url pattern. if true, please give me example how it?
Comments
Post a Comment