Basically, the servlet queries the db and returns the image. The jsp is where I display the image. I tried something like this <img src="/servlet/myservlet?param=blah&param2=moreblah" > in the jsp but that didn't work. Also something like this,
<img src="<jsp:include /servlet/myservlet?param=blah&param2=moreblah>" >
but no go, heh. Just looking for some simple example that point me to the right direction.