spring启用注解扫描机制:加上<context:annotation-config />这句话报:
The prefix "context" for element "context:annotation-config" is not bound.
看看spring头部<beans>属性是否缺少: xmlns:context="http://www.springframework.org/schema/context"
---------------------------------------------------------------------------------------------------------------------------------------------------------------------
报:
Multiple annotations found at this line: - cvc-complex-type.2.4.c: The matching wildcard is strict, but no declaration can be found for element 'context:annotation-config'.
xsi中加多两个约束
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-4.3.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"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-4.3.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-4.3.xsd"
></beans>
----------------------------------------------------------------------------------------------------------------------------------------------------
java.lang.NoClassDefFoundError:org/springframework/aop/TargetSource
Spring 4.0以上的使用注解扫描需要加aop jar包
本文详细解析了Spring框架中注解扫描机制的正确配置方法,包括解决常见错误如context:annotation-config前缀未绑定及多个注解在同一行的问题,同时提供了完整的约束声明示例,帮助开发者避免因配置不当导致的NoClassDefFoundError异常。

193

被折叠的 条评论
为什么被折叠?



