/** * 对Date的扩展,将 Date 转化为指定格式的String ... Read More
JSTL与EL表达式(为空判断)一、循环遍历集合1、在jsp中引入标准函数声明<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%> 2、若要判断集合的大小,则需要引入如下声明<%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions" %>3、如何使用jstl判断集合是否为空${user}为集合,user为集合名<c:if test=&qu Read More