1. 程式人生 > >解決Spring中使用context:component-scan命名空間配置錯誤

解決Spring中使用context:component-scan命名空間配置錯誤

num lex odi exceptio type oca ted pac instance

** 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命名空間配置錯誤