Spring enables the annotation scanning mechanism: plus <context:annotation-config/> This quote:
1.The prefix ' context ' for element ' context:annotation-config ' is not bound.
See if Spring head <beans> properties are missing : xmlns:context= "Http://www.springframework.org/schema/context"
2. If the report: the matching wildcard is strict, but no declaration can being 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 "
Oops: Trouble, the following test back to try:
<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 ">