상세 컨텐츠

본문 제목

Can not find the tag library descriptor for "http://java.sun.com/jsp/jstl/ core" 조치 방법

개발/개발 기타

by 똘똘이박사 2018. 7. 25. 23:31

본문

멀쩡히 잘 돌아가던 프로젝트에 갑자기 아래 그림과 같이 빨간색이 떴다.

특별히 수정한 것도 없고 지운것도 없다...



빨간줄에 마우스을 가져가 보니 이런 메시지가 뜬다.



Can not find the tag library descriptor for "http://java.sun.com/jsp/jstl/ core"



혹시나 해서 Maven Dependencies 를 봤다.

jstl-1.2.jar 이 있다.

이상하다... 자바는 정말 이상하다...


구글링을 해보니 아래 코드를 pom.xml에 추가 해주란다.


<dependency>
  <groupId>jstl</groupId>
  <artifactId>jstl</artifactId>
  <version>1.2</version>
  <scope>compile</scope>
</dependency>
<dependency>
  <groupId>taglibs</groupId>
  <artifactId>standard</artifactId>
  <version>1.1.2</version>
  <scope>compile</scope>
</dependency>

추가 해주니 문제가 해결됐다

그리고 다시 추가해 줬던 위 코드를 지워보았다.


더이상 빨간 줄이 생기지 않는다.


자바는... 진짜 알 수 없다....

반응형

관련글 더보기