반응형
Can not find the tag library descriptor for “http://java.sun.com/jsp/jstl/core”
I have included this at the very top of my JSP page: <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> I already placed the JSTL JAR file in the WEB-INF/lib directory. But st...
stackoverflow.com
Can not find the tag library descriptor for “http://java.sun.com/jsp/jstl/core”
해결 방법 : pom.xml 에 추가해준다
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
<version>2.5</version>
</dependency>
<dependency>
<groupId>javax.servlet.jsp.jstl</groupId>
<artifactId>javax.servlet.jsp.jstl-api</artifactId>
<version>1.2.1</version>
</dependency>
<dependency>
<groupId>taglibs</groupId>
<artifactId>standard</artifactId>
<version>1.1.2</version>
</dependency>
반응형
'오류' 카테고리의 다른 글
java.lang.IllegalArgumentException: 요청 타겟에서 유효하지 않은 문자가 발견되었습니다. 유효한 문자들은 RFC 7230과 RFC 3986에 정의되어 있습니다. (0) | 2022.12.21 |
---|---|
메이븐 오류 Missing artifact com.oracle:ojdbc7:jar:12.1.0.2 (0) | 2022.12.20 |
스프링 실행 오류 (응답없음) (0) | 2022.12.19 |
ORA-28040: 일치하는 인증 프로토콜 없음, No matching authentication protocol (0) | 2022.12.18 |
mysql_Data too long for column (0) | 2022.12.12 |