I am declaring a namespace and binding it in a jsp file. i then include this JSP file in other files. however, the JSP file that contains this include complains that the namespace is not bound. Is there a way I can get intellij to intelligently understand that there is a file that is included and the namespace is bound in that file?
Here is the include chain
-Files that are not showing the namespace. <%@ include file="/common/include-jstl.jsp" %>
-/common/include-jstl.jsp <%@ include file="/w/common/include-jstl.jsp" %>
-/w/common/include-jstl.jsp is a file that is in an included jar and this is the file has the c name space defined.