[JSTL] "value" does not support runtime expressions 원인과 해결
2020. 7. 1. 21:31
반응형
잘못된 예
<%@ taglib uri="http://java.sun.com/jstl/fmt" prefix="fmt"%> X
<fmt:formatNumber type="number" maxFractionDigits="2" value="${maxAllowableAmount}" />
올바른 예
<%@ taglib uri="http://java.sun.com/jsp/jstl/fmt" prefix="fmt"%> O
<fmt:formatNumber type="number" maxFractionDigits="2" value="${maxAllowableAmount}" />
예시 출처 : stackoverrun.com
"value" does not support runtime expressions 메시지에 대한 70% 이상의 원인은
위에 태그라이브러리의 표기를 잘못 작성해서 그렇습니다.
위에 태그라이브러리(taglib)를 확인해주세요.
JSP - taglib 종류와 설명
반응형
'JSP' 카테고리의 다른 글
[JSTL] 태그 라이브러리 인터넷 필요 여부(Feat.taglib,uri,prefix) (0) | 2019.11.04 |
---|---|
[JSP] iframe 부모창 새로고침 및 링크타기 (0) | 2019.10.23 |