Today updated to 3.6.3, glad to see that the JSTL bug has been eliminated (that was error flagged in the editor for JSTL inclusion, when in fact there was no error and the library was present).
However a new bug seems to exist in the taglibs, please anyone with similar experience let me know, in case you have seen the same, or I might be doing something wrong. Here is the test case with the problem:
A JSP file in the web root folder, called page1.jsp, as follows:
<%@taglib tagdir=”/WEB-INF/tags” prefix=”tags” %>
<%@ include file=”/include/header.jspf”%>
<tags:catalogTable>
.. some SQL statements here…
</tags:catalogTable>
<%@include file=”/include/footer.jspf”%>
Then inside the WEB-INF\tags folder there is the file catalogTable.tag which provides certain functionality like including the JSTL libs and building an HTML table ( this is the custom tag). The thing is that the editor flags the first line of page1.jsp as an error (precise error is:
unexpected tagdir=”/WEB-INF/tags”), but it wasn’t before the update to 3.6.3, and it is not an error since the page is deployed fine and it works.