I'm new with JSP and i got the following error:
HTTP Status 500 - 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
calling this taglib:
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
After some searches, i known that it is a JSP tag-library problem and then, with tomcat 7, i ought to put the library jstl-1.2.jar, which i've downloaded, into the folder WEB-INF/lib checking that all permissions was right. Well, i've just done it refreshing tomcat7 but nothing is happened.
This is the directory path, created by NetBeans together with the project:
/var/lib/tomcat7/webapps/jsp_test/web/WEB-INF/lib
(the last path "lib" is created by me).
Where is my error? Could anyone explain better how the things work please?