EL태그 사용 시 Method name is matched but some parameters are not matched 오류 해결 방법

2021. 11. 18. 12:39언어/JS

728x90
반응형

jsp에서 el태그를 다음과 같이 사용할 경우 에러 로그가 발생할 수 있습니다.

<c:if test="${fn:length(list)>0}">${list.get(0).name}</c:if>
javax.el.MethodNotFoundException: Method name is matched but some parameters are not matched

다음과 같이 수정하면 에러가 발생하지 않습니다.

<c:if test="${fn:length(list)>0}">${list[0].name}</c:if>

 

728x90
반응형