当前位置: 首页 > 面试题库 >

context:component-scan“未绑定

芮念
2023-03-14
问题内容

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

这是我的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">  


 类似资料:
  • scan 持续的将 Observable 的每一个元素应用一个函数,然后发出每一次函数返回的结果 scan 操作符将对第一个元素应用一个函数,将结果作为第一个元素发出。然后,将结果作为参数填入到第二个元素的应用函数中,创建第二个元素。以此类推,直到遍历完全部的元素。 这种操作符在其他地方有时候被称作是 accumulator。 演示 let disposeBag = DisposeBag() O

  • scan 函数签名: scan(accumulator: function, seed: any): Observable 随着时间的推移进行归并。 此操作符是许多基于 Redux 实现的 RxJS 的核心! 示例 示例 1: 随着时间的推移计算总数 ( StackBlitz ) // RxJS v6+ import { of } from 'rxjs'; import { scan } from

  • 问题内容: 尝试我的第一个春季项目时遇到以下错误: 这是: 是什么导致错误? 问题答案: 您尚未指定上下文名称空间的架构位置,这是此特定错误的原因:

  • SCAN cursor [MATCH pattern] [COUNT count] SCAN 命令及其相关的 SSCAN 命令、 HSCAN 命令和 ZSCAN 命令都用于增量地迭代(incrementally iterate)一集元素(a collection of elements): SCAN 命令用于迭代当前数据库中的数据库键。 SSCAN 命令用于迭代集合键中的元素。 HSCAN 命令用

  • Pokego-Scan 通过 PokeVision API实现口袋妖怪扫描的Node包。 使用: $ npm install pokego-scan var pokegoScan = require('pokego-scan');var coords = {    latitude: 40.4164737,    longitude: -3.7042757};// obtain an array 

  • Harald Scan 是一个用 Python 开发的在 Linux 下扫描蓝牙设备的工具软件。