jsp页面ognl el乱记

获取list长度
el
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
<%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions"%>
list的长度是:${fn:length(list)} 

ognl
<s:property value="#list.size()"/>

格式化时间
<s:date name="#obj.time" format="yyyy-MM-dd HH:MM"/>

你可能感兴趣的:(jsp)