解决Spring中使用context:component-scan命名空间配置错误
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了解决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">
以上是关于解决Spring中使用context:component-scan命名空间配置错误的主要内容,如果未能解决你的问题,请参考以下文章
在 Spring 中使用 @Autowired 注解时出现以下错误应该如何解决?
spring的循环依赖及使用三级缓存解决循环依赖;注入bean到spring容器中