Ok, lo que sucede es que no he podido configrar el archivo web.xml, pues no se como hacerlo, y es correcto estoy usando jstl, en resumen la pagina que estoy tratando de levantar es esta :
----------------------------------------------------
<%-- use the 'taglib' directive to make the JSTL 1.0 core tags available --%>
<%@ taglib uri="http://java.sun.com/jstl/core" prefix="c" %>
<%-- use the 'jsp:useBean' standard action to make the Date object available in page scope --%>
<jsp:useBean id="date" class="java.util.Date" />
<html>
<head><title>First JSP</title></head>
<body>
<h2>Here is today's date</h2>
<c:out value="Date: ${date}" />
</body>
</html>
-------------------------------------------------------------
es el primer ejemplo del libro de OReilly (ava Servlet & Jsp Cookbook )
de nuevo gracias a todos