JAVA/JAVA&JSP
JSTL 관련 테그라이브러리 목록
saltdoll
2010. 11. 22. 15:18
반응형
출처 : http://www.cs.wcupa.edu/rkline/Java/jstl-examples.html
JSTL tags
The JSTL tags are those described in the table below. We have omitted the sql tags since we don't plan to use SQL operations directly in JSP. Using a tag groups is effected by the addition of one of the following respective tag statements below.c: <%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
fn: <%@taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions" %>
fmt: <%@taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %>
xml: <%@taglib prefix="x" uri="http://java.sun.com/jsp/jstl/xml" %>The uri identifies the tag set. The tag prefix can be set by the user, but the ones here are standard.
반응형