Ciao,
sto iniziando a smanettare con JSP, ma purtroppo un esercizietto banale mi sta incasinando.

Esercizio e il seguente:
codice:
<%@page contentType="text/html"%>
<%@page pageEncoding="UTF-8"%>
<%@taglib  prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<html>
    <head><title>Esercizi</title></head>
    <body>

        
        Prima pagina
        

        1+2+3 = <c:out value="${1+2+3}" />
        
    </body>
</html>
ma anche se banale non vuole funzionale, e tomcat mi da quest'errore:

HTTP Status 500 -

type Exception report

message

description The server encountered an internal error () that prevented it from fulfilling this request.

exception

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.jsp Error(DefaultErrorHandler.java:50)
...cut...
Per iniziare come IDE sto usando NetBeans.... per cercare a modo mio di risolvere l'errore ho guardato un esempio fatto altrettanto banale, che funziona, guardando il file web.xml non trovo riferimenti di nessun genere a quel jstl...
dove sbaglio????