java – Spring Beans Schema在Web上不再可用?

前端之家收集整理的这篇文章主要介绍了java – Spring Beans Schema在Web上不再可用?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

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

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

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

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

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

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

成为:

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

并修复了它.

原文链接:https://www.f2er.com/spring/431728.html

猜你在找的Spring相关文章