Spring Beans Schema no longer available on the Web?

java, spring

Solution

I had the same problem, it appears that the public schemas on the internet are unavailable.

I changed the schema location to use the xsd on the classpath e.g.

http://www.springframework.org/schema/beans/spring-beans-3.0.xsd

became:

classpath:/org/springframework/beans/factory/xml/spring-beans-3.0.xsd

and that fixed it.

Problem

Visiting http://www.springframework.org/schema/beans/spring-beans-3.1.xsd in my browser produces a 403. Visiting http://www.springframework.org/schema/security/spring-security-3.1.xsd in my browser returns a valid schema... So what am I missing? Is this a transient issue? Or have the beans schemas moved somewhere else?

Original source