在我的浏览器中访问http://www.springframework.org/schema/beans/spring-beans-3.1.xsd会产生403.
在浏览器中访问http://www.springframework.org/schema/security/spring-security-3.1.xsd会返回有效的架构…
那我错过了什么?这是暂时的问题吗?或者将bean模式移动到其他地方?
最佳答案
我有同样的问题,似乎互联网上的公共架构不可用.
原文链接:https://www.f2er.com/spring/431728.html我更改了架构位置以在类路径上使用xsd,例如
http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
成为:
classpath:/org/springframework/beans/factory/xml/spring-beans-3.0.xsd
并修复了它.