Results 1 to 1 of 1

Thread: Spring Upgrade In MyEclipse 8.6 IDE

  1. #1
    Join Date
    Aug 2012
    Location
    Hyderabad
    Posts
    1

    Question Spring Upgrade In MyEclipse 8.6 IDE

    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.

    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>
    I know the attributes in <mvc:resources> were added in Spring 3.0.4.

    So How can i upgrade spring version in my ide ? or Is any other way to overcome this problem ?


    Thank You.
    Last edited by vijju@25; Aug 9th, 2012 at 08:02 AM.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •