JSTL导jar包及使用

    技术2022-05-20  55

     

     

    JSP 标准标记库(JSP Standard Tag Library,JSTL)使用时需要在/lib下添加jstl.jar/standard.jar包

    <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>//在jsp页面中的添加IDE才能找到

    JSTL格式化时间:

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

    <fmt:formatDate value="${gb.createTime}" pattern="yyyy-MM-dd" />


    最新回复(0)