We got a include.jsp file directly inside our webroot containing taglib declarations such as:
<%@ taglib uri=”http://struts.apache.org/tags-bean” prefix=”bean”%>
<%@ taglib uri=”http://struts.apache.org/tags-html” prefix=”html”%>
This file is included by all JSP files with
<%@ include file=”/include.jsp”%>
This normally works fine – autocompletion & validation works. However, when editing a JSP file inside the src folder (such as src/com/foo/bar/example.jsp), it doesn’t work. Does anyone know any workaround or issue with this?