Cannot use the "include file" in JSP -
i want ask question jsp page. set project in following structure in order manage project efficiently. when in list folder, main.jsp, set header following
<%@ include file="universe/header.jsp" %>
when open main.jsp, shows error
cannot find "jsp/list/universe/header.jsp"
the header.jsp , other classes cannot read. can me solve problem? thank you.
class structure
webapp | |-- jsp | |-- list | | | |--main.jsp | |-- universe | |-- header.jsp |-- footer.jsp
in jsp include directive path can relative including page or absolute (then has start /
, belongs webapplication root directory).
so in case have set path either ../universe/header.jsp
or /jsp/universe/header.jsp
.
Comments
Post a Comment