[Spring boot 에러] Cannot resolve taglib with uri http://java.sun.com/jsp/jstl/core 에러 해결 방법

jieunee·2021년 5월 31일
0

🆘 문제점
JSP 파일을 작성하는 도중

Cannot resolve taglib with uri http://java.sun.com/jsp/jstl/core

라는 에러가 발생했다.

구글링을 통해 무엇이 문제인지 검색해본 결과,
앞서 작성한 문제와 같이 build.gradle에 dependency를 추가하지 않은 탓이었다.


💗 해결 방안
build.gradedependencies

아래 속성을 추가해준다.
compile 'javax.servlet:jstl:1.2'


추가를 해주고 나면 에러 구문이 사라질 것이다. 🙂

profile
Back-End Developer 🌱

0개의 댓글