gpt4 book ai didi

spring - 架构引用无法读取架构

转载 作者:行者123 更新时间:2023-12-01 10:42:30 25 4
gpt4 key购买 nike

我在我的项目中使用 spring 3.2.5。所以当我创建我的 appliation-context.xml 时,我有这个警告:

schema_reference.4: failed to read schema document http://www.springframework.org/schema/beans/spring-beans.xsd because :
1)could not find the document
2)the document could not be read
3)the root element of the document is not <xsd:schema>

不知道问题出在哪里

最佳答案

我可以通过更改我的 applicationContext.xml 来删除此警告:

<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:tx="http://www.springframework.org/schema/tx"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:aop="http://www.springframework.org/schema/aop"
xmlns:util="http://www.springframework.org/schema/util"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd
">

<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:tx="http://www.springframework.org/schema/tx"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:aop="http://www.springframework.org/schema/aop"
xmlns:util="http://www.springframework.org/schema/util"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-4.0.xsd
">

因为(根据我的阅读)在使用第一个版本时,我们尝试加载已发布的最新版本,但我们实际使用的版本不支持该版本或不存在!

关于spring - 架构引用无法读取架构,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28895990/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com