How to include JSPs file from another folder

前端 未结 2 1231
别那么骄傲
别那么骄傲 2020-12-11 07:11

How can include JSPs file from another folder: My hierarchy is WebContent/WEB-INF/JSPs/..

My JSP file to be include is from /WebContent/WEB-INF/JSPs/body/conte

相关标签:
2条回答
  • 2020-12-11 07:41

    Your relative path is wrong. Use:

    <jsp:include page="../header/navigation.jsp"></jsp:include>
    
    0 讨论(0)
  • 2020-12-11 07:42

    You should use jsp include tag as shown below from any jsp file.

    <jsp:include page="/WEB-INF/JSPs/header/navigation.jsp"></jsp:include>
    <jsp:include page="/WEB-INF/JSPs/header/navigation.jsp"></jsp:include>
    
    0 讨论(0)
提交回复
热议问题