Hi,
As recommended by http://static.springsource.org/sprin...atic-resources I wish to use <mvc:resources> for serving my spring static content.
I have tried the following XML, but the .xsd file doesn't contain a declaration for <mvc:resources> and I cannot find an alternative .xsd.
I am using MyEclipse for Springs 8.6 IDE.
I know the attributes in <mvc:resources> were added in Spring 3.0.4.Code:<?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:mvc="http://www.springframework.org/schema/mvc" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation=" http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd"> <mvc:resources mapping="/css/**" location="/css/"/> </beans>
So How can i upgrade spring version in my ide ? or Is any other way to overcome this problem ?
Thank You.


Reply With Quote