请问怎样把Servlet中读取的图片显示在JSP页面中?

我使用Spring MVC框架,写了一个Servlet:向JSP发送一个ArrayList,JSP页面的JSTL标签接受了这一List,但是只能显示BufferedImage对象的一些文本参数,请问要怎样才能把BufferedImage显示在JSP页面上?谢谢解答。
如果有更好的实现方法,非常欢迎提示。

ImageIO.write(im, "JPG", response.getOutputStream());
im代表BufferedImage jpg是图片的格式,其他详细可以查询Api ImageIO