当前位置: 代码迷 >> Java Web开发 >> Exception:Unable to locate Spring NamespaceHandler for XML schema namespace解决方案
  详细解决方案

Exception:Unable to locate Spring NamespaceHandler for XML schema namespace解决方案

热度:2548   发布时间:2016-04-10 22:46:03.0
Exception:Unable to locate Spring NamespaceHandler for XML schema namespace
问题完整描述
org.springframework.beans.factory.parsing.BeanDefinitionParsingException: Configuration problem: 
Unable to locate Spring NamespaceHandler for XML schema namespac[http://www.springframework.org/schema/context]

<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:tx="http://www.springframework.org/schema/tx" xmlns:context="http://www.springframework.org/schema/context"
xmlns:jee="http://www.springframework.org/schema/jee"
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
   http://www.springframework.org/schema/jee http://www.springframework.org/schema/jee/spring-jee-2.5.xsd   
 ">
  <!-- 本注解无法打开 -->
  <context:annotation-config />

望高人指点,尝试过各种搜索引擎去搜索解决办法。

------解决方案--------------------
这个应该是jar和你在spring的配置文件中的声明不匹配导致的。
xmlns:context="http://www.springframework.org/schema/context"
  相关解决方案