gpt4 book ai didi

java - 上下文 :component-scan"is not bound

转载 作者:IT老高 更新时间:2023-10-28 13:46:59 27 4
gpt4 key购买 nike

我是 spring 新手,我知道这个问题已经被问过很多次了,但我不得不再问一遍。

我猜,我已经做了适当的命名空间声明,但仍然面临错误 "The prefix "context"for element "context:component-scan"is not bound." 有一个类似的问题here ,但我没有得到答案

这是我的 xml 文档,是不是我的命名空间不正确?

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
http://www.springframework.org/schema/context/spring-context-3.0.xsd">



<bean id="point1" class="org.sri.proj.Point">
<property name="x" value="0" />
<property name="y" value="0" />
</bean>

<bean id="point2" class="org.sri.proj.Point">
<property name="x" value="10" />
<property name="y" value="10" />
</bean>

<context:component-scan base-package="org.sri.proj"/>

</beans>

最佳答案

context 命名空间声明添加到应用程序上下文文件中的 beans 标记定义

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

关于java - 上下文 :component-scan"is not bound,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16673644/

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