반응형
According to TLD or attribute directive in tag file, attribute [test] does not accept any expressions
스택오버플로우에서 가져온 오류 이유입니다.
You must use JSP, JSTL - is just set of custom tags and can not be used separately. As well as Expression Language. If you are not using any MVC frameworks, then you need to do some of their work by yourself. Please take a look (if you haven't yet) at following design patterns:
jstl 버전과 servlet 버전, jsp 버전 등이 달라서 생기는 오류입니다.
해결방법은 여러 있겠지만
제가 해결한 가장 간단한 방법은 taglib을 바꿔주는 방법입니다.
<%@ taglib prefix="c"
uri="http://java.sun.com/jstl/core_rt" %>
반응형
'개발문제해결 > Exception' 카테고리의 다른 글
ORA-00936 누락된 표현식의 원인 (2) | 2018.02.28 |
---|---|
JQuery 에러 “TypeError: $.getJSON is not a function” (0) | 2018.02.24 |
HTTP Status 500 - JSP 액션태그 에러 (0) | 2018.02.20 |