본문 바로가기
오류

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

by 신방동불주먹 2022. 12. 20.

https://stackoverflow.com/questions/13285826/can-not-find-the-tag-library-descriptor-for-http-java-sun-com-jsp-jstl-core

 

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>