Spring配置问题——元素 "context:component-scan" 的前缀 "context" 未绑定

            今天配置完:

           

<!-- 自动扫描与装配,包含子包 -->
	<context:component-scan base-package="cn.itcast.oa"></context:component-scan>

        这句话之后,validating 我的spring配置文件就一直走不下去了。当时以为是myeclipse卡了,之后去掉了所有的validating。

         后来写了个单元测试测试Spring配置的时候,发现报错:

         columnNumber:54; 元素 "context:component-scan" 的前缀 "context" 未绑定。

          看来果然是自动装配与扫描有问题。查了下,貌似是少了context的命名空间的问题:

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

    加上带红色字体的部分,成功run过去了。

     顺便说下xml中各种版本,如果没有的话,会自动使用最新版本。

时间: 2024-09-20 05:40:50

Spring配置问题——元素 &quot;context:component-scan&quot; 的前缀 &quot;context&quot; 未绑定的相关文章

java web spring配置问题

问题描述 java web spring配置问题 3C spring+struts+hibernate 框架,项目启动,bean报错,错误类型是六月 15 2015 7:47:47 下午 org.apache.catalina.core.ApplicationContext log信息: Initializing Spring root WebApplicationContextD:java7apache-tomcat-7.0.62binWebRootWEB-INFD:java7apache-t

myeclipse的spring配置问题

问题描述 myeclipse的spring配置问题 选中的这两段代码一加上就会显示404错误,是为什么呀,是spring配置错了吗? 解决方案 myeclipse配置springmyeclipse中配置springmyeclipse2014配置spring 解决方案二: 这个是项目整合spring框架的配置,没有错,你报404的页面可能是配置使用spring拦截器拦截了. 解决方案三: 请确认你的applicationContext.xml文件是不是在WEB-INF下如果在src下请使用 <co

maven多模块构建spring配置问题悬赏

问题描述 maven多模块构建spring配置问题悬赏 自己练习搭建了一个maven多模块的项目,框架用的是spirngMVC+spirng+mybatis 其中做了简单的web模块和service模块的分离.在web模块中的spirng主配置文件中 用标签配置自动扫描service模块的 指定包路径,以求在web模块的controller中能通过注解自动注入,然而在启动tomcat的 时候报类找不到的错误. 试图通过<bean id ="" class=""

服务器-元素类型为 &amp;amp;quot;typeAliases&amp;amp;quot; 的内容不完整, 它必须匹配 &amp;amp;quot;(typeAlias)+

问题描述 元素类型为 "typeAliases" 的内容不完整, 它必须匹配 "(typeAlias)+ 从snv服务器上面检出项目,然后我把自己本地的index的jsp页面和css,js,image,复制进去,结果一直报404

从Spring实例入手谈SCA Component的创建和调用

面向服务组件的架构(Service Component Architecture,SCA),是目前业界最前沿的技术概念之一.但是对于很多开发人员来说,如何在SCA的架构上进行设计和开发还是显得相对抽象的.WID(WebSphere Integration Developer)和WPS(WebSphere Process Server)的推出,使得客户能够更加简单地向面向组件编程模型转变.本文将介绍在SCA编程模型中创建和调用SCA Component的基本概念和方法,并以一系列简单的实例来说明在

Spring MVC 中自定义视图 @Component 及 配置 多个视图解析器 Excel视图

首先我们建立一个自己的View实现View接口.要注意在类上面加上@Component的注解,因为看BeanNameViewResolver的源码知道,是直接从ioc容器里面拿的根据名字拿的视图,所以我们得把我们自己写的视图放到容器里面. HelloView.java package com.hust.springmvc.views; import java.util.Date; import java.util.Map; import javax.servlet.http.HttpServle

CSS2 之 &amp;quot;特殊文本和BIDI文本的字符实体&amp;quot;

特殊文本和BIDI文本的字符实体Using NE NE NCR Using NCR "    &quot    "    quotation mark, =apl quote, U0022 ISOnum    &    &amp    &    ampersand, U0026 ISOnum    <    &lt    <    less-than sign, U003C ISOnum    >    &gt    &

spring 配置问题

问题描述 <beanid="user/login"class="org.springframework.web.servlet.view.json.MappingJackson2JsonView"p:modelKeys=""/>请问各位前辈,在spring中这个modelKeys属性怎么指定多个值.望各位前辈解答 解决方案 解决方案二:看一下spring中集合如何注入解决方案三:找不到参考才问的

spring配置问题

问题描述 刚学spring,一开始就遇到个异常. Exception in thread "main" org.springframework.beans.factory.BeanDefinitionStoreException: Unexpected exception parsing XML document from class path resource [xml/1.xml]; nested exception is org.springframework.beans.Fat