模式参考4:无法读取架构文档"",因为1)无法找到该文档;2)文件无法读取;3)文档的根元素不是xsd:schema。
这个文件移到哪里了,现在应该指哪里?
顺便说一句,这个目录是今天刚刚改变:https://www.springframework.org/schema/security/
模式参考4:无法读取架构文档"",因为1)无法找到该文档;2)文件无法读取;3)文档的根元素不是xsd:schema。
这个文件移到哪里了,现在应该指哪里?
顺便说一句,这个目录是今天刚刚改变:https://www.springframework.org/schema/security/
1条答案
按热度按时间qmb5sa221#
找到了一个解决方案。文件
spring.schemas
将https://www.springframework.org/schema/security/spring-security-oauth2-2.0.xsd
链接到spring-security-oauth2.jar中的spring-security-oauth2-2.0.xsd
。该文件在解析Spring XML配置时使用。因此,您只需将架构位置设置为https URL:
https://www.springframework.org/schema/security/spring-security-oauth2-2.0.xsd
而不是http URL:
http://www.springframework.org/schema/security/spring-security-oauth2-2.0.xsd
在XML配置文件中。
就像这个例子中的最后两行: