I mount Web Application into IntelliJ. WEB-INF containt file web.xml, with conteins definition of my Custom TagLibs.
in web.xml
<taglib>
<taglib-uri>stl.tld</taglib-uri>
<taglib-location>stl.tld</taglib-location>
</taglib>
the file stl.tld allocated in WEB-INF directory and holdes information about my tags.
But IntelliJ not like follow code:
<%@ taglib uri="stl.tld" prefix="stl" %>
It's write in status bar "Cannot resolve tag library"
Tomcat work's with it propertly :) But why IntelliJ not? What I do wrong?
