在jsp中使用jstl

一、JSTL:Jsp Standard Tag Library (Jsp 标准标签库)

二、依赖包: 1、jstl.jar   2、standard.jar

三、引入:

<%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<%@taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %>

 

四、参考学习:

    1、https://www.ibm.com/developerworks/cn/java/j-jstl0211/

    2、http://www.blogjava.net/JAVA-HE/archive/2007/05/27/120344.html

 

 

 

你可能感兴趣的:(jstl)