Solución:
Tienes esto:
xmlns:mvc="http://www.springframework.org/schema/mvc"
pero no lo mencionas aquí:
xsi:schemaLocation="
http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-3.0.xsd">
Para arreglar eso, deberías tener
http://www.springframework.org/schema/mvc
http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd
allí también, como
xsi:schemaLocation="
http://www.springframework.org/schema/mvc
http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd
http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-3.0.xsd">
Nota: en realidad, es común que las referencias de esquema no mencionen la versión Spring para permitir una actualización más fácil, por lo que debe usar referencias como http://www.springframework.org/schema/context/spring-context.xsd
en lugar de los que tienen -3.0
en el nombre.
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)