1. 程式人生 > >報錯:The prefix "context" for element "context:annotation-config" is not bound.

報錯:The prefix "context" for element "context:annotation-config" is not bound.

spring啟用註解掃描機制:加上<context:annotation-config />這句話報:

1.The prefix "context" for element "context:annotation-config" is not bound.

看看spring頭部<beans>屬性是否缺少:    xmlns:context="http://www.springframework.org/schema/context"

2.如果報:The matching wildcard is strict, but no declaration can be found for element 'context:annotation-config'.

xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-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/tx http://www.springframework.org/schema/tx/spring-tx-2.5.xsd"

哎呀:麻煩了,下面的考回去試試:

<beans xmlns="http://www.springframework.org/schema/beans"
               xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
               xmlns:context="http://www.springframework.org/schema/context"
               xmlns:tx="http://www.springframework.org/schema/tx"
               xsi:schemaLocation="http://www.springframework.org/schema/beans 
                                                       http://www.springframework.org/schema/beans/spring-beans-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/tx 
                                                       http://www.springframework.org/schema/tx/spring-tx-2.5.xsd">