<%@ taglib uri="http://www.springframework.org/spring" prefix="spring"
I try a simple .jsp page on netbean
<%@ taglib uri="http://java.sun.com/jstl/core" prefix="c" %>
<%@ taglib uri="http://www.springframework.org/spring" prefix="spring" %>
<html>
<head>
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>
<title> hello</title>
</head>
<body>
<h2>
<c:out value="${message}" />
</h2>
I got error on The absolute uri: http://www.springframework.org/spring cannot be resolved in either web.xml or the jar files deployed with this application
I Netbean come with Spring Framework 2.5 and Spring Web MVC 2.5
and if I add some like <taglib>
<taglib-uri>http://www.springframework.org/spring</taglib-uri>
<taglib-location>/WEB-INF/tlds/spring.tld</taglib-location>
</taglib> in web.xml I got some err like invalid start with <taglib-uri>
what should I did??