views:

228

answers:

1

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.

A: 
Tom van Zummeren
This is how i include the jsp file that already declared the c namespace.-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 jarand this file has the c name space defined.
Shaun F