java - How to include an image in a jsp page? -
java - How to include an image in a jsp page? -
i'm developing web application using hibernate, spring , jsp.
in jsp page included images next :
<img src="img/logo/logo.png" alt=""> but not displayed when run jsp page.
the jsp page located in :
web-inf/index.php this jsp page calls 3 other pages in same folder next :
<%@ include file="header.jsp" %> <%@ include file="sidebar.jsp" %> <%@ include file="main.jsp" %> and images located in :
web-inf/img how can solve problem ?
it may possible image not display because of path problem provide total context path , seek work
<img src="${pagecontext.servletcontext.contextpath}/img/logo/logo.png" alt=""> try 1 maybe help you
java jsp java-ee servlets
Comments
Post a Comment