解决Spring中使用context:component-scan命名空间配置错误

** nested exception is org.xml.sax.SAXParseException; lineNumber: 16; columnNumber: 74; cvc-complex-type.2.4.c: 通配符的匹配很全面, 但无法找到元素 'context:component-scan' 的声明。

原因:Spring命名空间配置错误,缺少相应的spring-bean。
解决:
<?xml version="1.0" encoding="UTF-8"?>
<beans**
 xmlns="http://www.springframework.org/schema/beans"**
xmlns:amq="http://activemq.apache.org/schema/core
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:aop="http://www.springframework.org/schema/aop"
xmlns:tx="http://www.springframework.org/schema/tx"
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
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://activemq.apache.org/schema/core 
http://activemq.apache.org/schema/core/activemq-core.xsd">;




    本文转自爱情89757 51CTO博客,原文链接:http://blog.51cto.com/59465168/2071954,如需转载请自行联系原作者




上一篇:网络*访问 巧解除Win XP文件共享限制


下一篇:服务器虚拟化业务下滑,VMware软件定义网络成救星