🌳 에러 코드
Wed Jun 07 15:42:15 KST 2023
There was an unexpected error (type=Internal Server Error, status=500).
/WEB-INF/jsp/community/communityView.jsp (line: [26], column: [13]) quote symbol expected
org.apache.jasper.JasperException: /WEB-INF/jsp/community/communityView.jsp (line: [26], column: [13]) quote symbol expected
🌳 해결 방법
🌾 원인 : EL 문법 오류.
🌾 해결 방법 :<c:if test=${not empty user}> -> <c:if test="${not empty user}"> 따음표 써주기.
Before
After
'코딩 에러 및 질문' 카테고리의 다른 글
Execution failed for task ':HelloSpringApplication.main()'. (0) | 2023.07.09 |
---|---|
검색을 할때마다 바뀌는 로그인 된 유저 정보 이름. (0) | 2023.06.07 |
javax.servlet.jsp.JspTagException: (0) | 2023.06.07 |
빈 화면이 보이는 현상. (0) | 2023.06.05 |
받은 편지함에 보낸 사람의 정보가 뜨는 현상. (0) | 2023.06.05 |