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
org.apache.jasper.compiler.DefaultErrorHandler.jspError(DefaultErrorHandler.java:51)
org.apache.jasper.compiler.ErrorDispatcher.dispatch(ErrorDispatcher.java:409)
meu jsp é
<%@ page language="java" contentType="text/html; charset=UTF-8"pageEncoding="UTF-8"%>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Sistema de produtos</title>
<link href="css/estilos.css" rel="stylesheet" type="text/css">
</head>
<body>
<div align="center">
<table width="1004" cellpadding="0" cellspacing="0" border="0">
<tr>
<td colspan="2"><%@include file="_topo.jsp"%></td>
</tr>
<tr height="100%">
<td width="985" bgcolor="#ebe0d2" style="padding-left: 15px;">
<p>
<b>Sistema gerenciador de produtos</b><br><br>
Existem produtos cadastrados no sistema
</p>
</td>
<td width="19"><%@include file="_lateral.jsp"%></td>
</tr>
<tr>
<td colspan="2"><%@include file="_rodape.jsp"%></td>
</tr>
</table>
</div>
</body>
</html>