JSTL support? Completion in JSPs for http://java.sun.com/jsp/jstl/core 关注
How can I get code completion working for http://java.sun.com/jsp/jstl/core?
For the code below I get completion for all the jsp:-tags but not for the c:-tags. Is there a jstl-core.tld that I have to download somewhere? I was not able to find anything but Sun saying I have to download J2EE 5. Of course http://java.sun.com/jsp/jstl/core gives me a 404 not found.
<jsp:root
xmlns:jsp="http://java.sun.com/JSP/Page"
xmlns="http://www.w3.org/1999/xhtml"
xmlns:c="http://java.sun.com/jsp/jstl/core"
version="2.0">
<jsp:directive.include file="navigation.jspx"/>
<!-- ... -->
<c:forEach items="$" var="lsid">
</c:forEach>
<!-- ... -->
</jsp:root>
Message was edited by:
Stefan Kreutter
请先登录再写评论。
Ok, I guess I forgot to add the taglib's jar to my classpath... now it works perfectly!