当前位置: 首页 > 知识库问答 >
问题:

cvc复杂类型.2.4.a:发现以元素“bean”开头的无效内容

金健
2023-03-14

我已经试着解决这个问题好几个小时了。当我运行我的代码时,我得到一个错误,说:

cvc复杂类型.2.4.a:发现以“{”之一的元素“bean”开头的内容无效http://www.springframework.org/schema/context“:包括筛选器,”http://www.springframework.org/schema/context应为“:排除筛选器}”。

我已经到处寻找答案,一些建议是应该确保使用正确的版本。我在xml中使用与pom文件中相同的版本。(顺便说一句,我正在将maven与eclipse一起使用)。

有什么问题的建议吗?

    <?xml version="1.0" encoding="UTF-8"?>
    <beans xmlns:context="http://www.springframework.org/schema/context" 
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
    xmlns="http://www.springframework.org/schema/beans" 
    xsi:schemaLocation="http://www.springframework.org/schema/beans 
    http://www.springframework.org/schema/beans/spring-beans-3.2.7.xsd
    http://www.springframework.org/schema/context 
    http://www.springframework.org/schema/context/spring-context-3.2.7.xsd">
    <context:component-scan base-package="org.mywebbapp.filemanagement">

    <bean
        class="org.springframework.beans.factory.config.ServiceLocatorFactoryBean"
        id="FileStoreFactory">
        <property name="FileStore"
            value="org.mywebbapp.filemanagement.FileStoreFactory">
        </property>
    </bean>
    <alias alias="FH" name="FileHandler" />
</context:component-scan>
</beans>

共有1个答案

章丰茂
2023-03-14

<代码>

尝试:

<context:component-scan base-package="org.mywebbapp.filemanagement"/>

<bean class="org.springframework.beans.factory.config.ServiceLocatorFactoryBean"
    id="FileStoreFactory">
    <property name="FileStore"
        value="org.mywebbapp.filemanagement.FileStoreFactory">
    </property>
</bean>
<alias alias="FH" name="FileHandler" />
 类似资料: