I\'ve been checking out Spring MVC tutorial and copied this small JSP code from there:
<%@ page session=\"false\"%>
<%@ taglib prefix=\"c\" uri=\"http:/
If you're still getting this error, but you're hand crafting your pom, you probably have missed the standard library. e.g. I'd missed
<dependency>
<groupId>taglibs</groupId>
<artifactId>standard</artifactId>
<version>${jstl.version}</version>
</dependency>
Yes, it's well known that the URI for taglibs changed between JSTL versions 1.0 and 1.1. If you happen to get examples that use the old standard and try to use them with the new taglib JAR you'll have this problem.