1. jstl c, fn 추가 한다.
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
<%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions" %>
2. 사용
<c:forEach var="i" items="${result}">
~~~~~
</c:forEach>
<c:if test="${fn:length(result) == 0 } ">
<span> no data</span>
</c:if>
data가 있으면 출력하고 없으면 no data 출력
fn:length() 사용