개발자의 끄적끄적

[JSTL] 리스트의 null 체크 & 사이즈 구하기 [펌] 본문

개발/javascript & jquery

[JSTL] 리스트의 null 체크 & 사이즈 구하기 [펌]

효벨 2019. 12. 10. 02:00
728x90
반응형

[JSTL] 리스트의 null 체크 & 사이즈 구하기 [펌]

 

 

참고 URL : http://stackoverflow.com/questions/1463597/evaluate-if-list-is-empty-jstl

 

<c:if test="${empty myObject.featuresList}">

 

<%@ taglib uri="http://java.sun.com/jsp/jstl/functions" prefix="fn" %>
<c:if test="${fn:length(list) > 0}">

 

 

출처: https://rainny.tistory.com/114 [긍정적 사고방식^^]

반응형
Comments