Hi,
We’re using MyEclipse for JSP development.
Generally, we’re very satisfied with the IDE 🙂
However, we’re having problems with statically-included JSP fragements (JSPF).
When MyEclipse finds an error in the JSPF, the error is reported in the ‘higher level’ JSP (the one which includes the fragement).
But it seems like MyEclipse won’t tell you *the exactl line* where the error occured , within the JSPF.
This is a major problem for us, since we’ve just been requested to maintain an existing systme , which has some *huge* JSPF files.
Example:
Header.jspf:
------------------
This is my header fragement, with some typo spelling 'random':
Header <%= Math.rANdOom() %>
Index.jsp:
------------------
<html>
This is my main page, with a statically-included header:
<%@ include file="/Header.jspf" %>
Some more stuff...
</html>
When typing this example, i’d see an error message for ‘index.jsp’ (the ‘include’ line is marked red, with an appropriate error message).
But I can’t see any indication that would tell you the exact faulty line inside ‘Header.jspf’ .
Thanks.