
01/04/2011, 00:41
|
| | Fecha de Ingreso: agosto-2010
Mensajes: 51
Antigüedad: 14 años, 7 meses Puntos: 1 | |
Respuesta: Problema para utilizar spring.tld prueba a cambiar la linea del uri que tienes tu por esta
<%@ taglib prefix="spring" uri="http://www.springframework.org/tags" %>
y en tu web.xml en el apartado donde declaras los tld´s por este
<jsp-config>
<taglib>
<taglib-uri>http://www.springframework.org/tags</taglib-uri>
<taglib-location>/WEB-INF/tld/spring.tld</taglib-location>
</taglib>
</jsp-config>
A ver si te puede de ser ayuda eso |