I did and it says to set the image base path to:
C:/jboss-4.2.2.GA/server/default/deploy/konakart.war/images
I cannot set the image base to anything deployed inside the war, because JBOSS will undeploy and redeploy thus deleting any images that are stored in the web app. I would like to have my images stored in c:/images which is completely outside the application. When I look at the jsp's, the images seem to be hardcoded as SRC=images/<%=prod.getImage%>
Do these jsps need to be updated with a new action to retrieve the images like:
SRC=getMyImage.do?image=<%=prod.getImage%>
C:/jboss-4.2.2.GA/server/default/deploy/konakart.war/images
I cannot set the image base to anything deployed inside the war, because JBOSS will undeploy and redeploy thus deleting any images that are stored in the web app. I would like to have my images stored in c:/images which is completely outside the application. When I look at the jsp's, the images seem to be hardcoded as SRC=images/<%=prod.getImage%>
Do these jsps need to be updated with a new action to retrieve the images like:
SRC=getMyImage.do?image=<%=prod.getImage%>