Dev_Log

[Eclipse] org.apache.jasper.JasperException: The absolute uri: [http://java.sun.com/jsp/jstl/core] cannot be resolved in either web.xml or the jar files deployed with this application

LeeDaniel 2024. 11. 4. 16:55
 [ 에러 발생 상황 ] 
아무 문제없이 잘돌아가던 JSTL을 사용중인 JSP페이지가
다음날 열어보려고 하니 갑자기 아래 에러를 뱉어냄😬

org.apache.jasper.JasperException:
The absolute uri:
[http://java.sun.com/jsp/jstl/core] cannot be resolved
in either web.xml or the jar files deployed with this application


 [ Solution ] 
구글링 해보면 아래 방법들이 나오는데
1. 이클립스 재시작
2. JSTL라이브러리 변경해보기
둘다 해봐도 증상은 동일했다

해결방법은 간단했다
기존JSP에 JSTL을 사용하기위해 작성한 코드가 아래 코드였는데

<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>

 

이걸 그냥 지우고 저장했다가
다시 작성하고 저장하니까 잘된다
코드가 같은데 왜 아까는안되고 지금은 되느냐?
나도모름 이클립스가 이클립스했음

 

반응형