javax.el.ELException: Function ':empty' not found

原先的写法是:<c:if test="${!empty(tops)}">

改为:<c:if test="${not empty tops}">

在http://marc.info/?l=geronimo-dev&m=121902517311226上还看到另外一种方法:<c:if test="!empty${tops}">


你可能感兴趣的:(javax.el.ELException: Function ':empty' not found)