JSP 2.0 Follow
Hi,
I am trying to introduce JSP 2. But IDEA does not recognise the syntax. Using Tomcat 5, I have a .tsg in:
WEB-INF/tags/file.tag
and my JSP that references it. Does IntelliJ not support JSP 2, or is my syntax wrong? (below)
thanks
Paul.
JSP:
<![CDATA[<%@ taglib uri="" prefix="tags" tagdir="/WEB-INF/tags" %>
Wrapped Content
.tag: <%@ tag body-content="scriptless" %> <%@ attribute name="a" required="true" %> <%@ attribute name="b" required="true" %> <%@ attribute name="c" required="true" %>Header
]]>
Attributes - $, $, $ <![CDATA[Footer
]]>Please sign in to leave a comment.
Should be coming in IDEA 5
Steve
Paul wrote: