Hi, Good day to u.
I am new to spring. I try its web module. I put all the jsp file under WEB-INF directory. However, the jsp file fail to access the resources such as css, images, js .... meaning, the jsp page always fail to locate the resources. for example,
<img src="<c:url value='/WEB-INF/images/img1.gif' />" />
<img src="images/img1.gif" />
This two tag return no images.
How to make the resources available in my web application?


Reply With Quote