개발/JSP

Jsp | javax.el.ELException: Failed to parse the expression

AM0530 2020. 5. 12. 12:11

1. 오류내용 : www.javax.el.ELException: ~ 입력한 내용 ~ type Exception report

 

2. 원인 : 문법 틀림 ("=="이라고 입력해야 하는데 "=" 하나만 입력했다)

 

3. 해결 : "="을 "=="으로 수정 

 

(오류난 코드) 

<c:if test="${params.roleCode == 'TEST' or params.site_id = 'test'}">

(수정한 코드) 

<c:if test="${params.roleCode == 'TEST' or params.site_id == 'test'}">

'개발 > JSP' 카테고리의 다른 글

HTML MIDDLE DOT  (0) 2022.01.21