网上不再提供Spring Beans Schema?

TiG*_*iGz 5 java spring

在我的浏览器中访问http://www.springframework.org/schema/beans/spring-beans-3.1.xsd会产生403.

在浏览器中访问http://www.springframework.org/schema/security/spring-security-3.1.xsd会返回有效的架构...

那我错过了什么?这是暂时的问题吗?或者将bean模式移动到其他地方?

Dan*_*han 8

我有同样的问题,似乎互联网上的公共架构不可用.

我更改了模式位置以在类路径上使用xsd,例如

http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
Run Code Online (Sandbox Code Playgroud)

成为:

classpath:/org/springframework/beans/factory/xml/spring-beans-3.0.xsd
Run Code Online (Sandbox Code Playgroud)

并修复了它.