在配置spring相关的applicationContext.xml文件时报以上错误

原因是缺失context的namespace。

http://www.springframework.org/schema/context

同时后面的 xsi:schemaLocation也要加上

 http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-3.0.xsd

比较全的namespace如下:

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:aop="http://www.springframework.org/schema/aop"
xmlns:jee="http://www.springframework.org/schema/jee"
xmlns:tx="http://www.springframework.org/schema/tx"
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/mvc
http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-3.0.xsd
http://www.springframework.org/schema/aop
http://www.springframework.org/schema/aop/spring-aop-3.0.xsd
http://www.springframework.org/schema/tx
http://www.springframework.org/schema/tx/spring-tx-3.0.xsd
http://www.springframework.org/schema/jee
http://www.springframework.org/schema/jee/spring-jee-2.0.xsd">
</beans>

最新文章

  1. js017-错误处理与调试
  2. 微博转发关系采集,可拓展关键字采集,评论采集(Java版)
  3. 转载 从最简单的vector中sort用法到自定义比较函数comp后对结构体排序的sort算法
  4. sqlserver 简单的事物用法
  5. linux c 实现大数相乘
  6. sql server日期时间转字符串(转)
  7. nginx日志配置
  8. use magento default datepicker plugin in your project
  9. php 和thinkphp 对excel操作
  10. CodeForces 300C Beautiful Numbers
  11. QGis(三)查询矢量图层的要素属性字段值(转载)
  12. 进程组与会话 Linux Process Groups and Sessions
  13. SpringMvc开发步骤
  14. [BZOJ]3671 随机数生成器(Noi2014)
  15. Java的数组排序
  16. 利用反射调用注解,模仿Spring
  17. Caused by: org.xml.sax.SAXParseException; lineNumber: 1
  18. python——SMTP发送简单邮件
  19. [Oracle]ORA-14400:插入的分区关键字未映射到任何分区
  20. 关闭ios弹出框:“would like to use your current location”

热门文章

  1. gdb常用命令(转)
  2. SpringBoot开发秘籍 - 集成Graphql Query
  3. isAssignableFrom与instanceof
  4. Day07_35_Colection下的方法
  5. 使用Tensorflow Object Detection进行训练和推理
  6. 1028 List Sorting
  7. Thinkphp5之ajax分页实现_paginate()参数详细
  8. hdu 3721 树的最小直径
  9. nodejs-安装/helloworld/npm
  10. Thinking in UML 笔记(一) -- 面向对象