Spring实现AOP报错 Bean must be of 'org.aopalliance.aop.Advice' type ?

applicationContext.xml文件中对两个log报错:

Bean must be of 'org.aopalliance.aop.Advice' type

和网上的错误有些不同,没有发现aopalliance-alpha包


配置文件:

图片说明


log类:

图片说明

图片说明


测试报错:

org.springframework.beans.factory.CannotLoadBeanClassException: Cannot find class [com.pro.log.AfterLog/>] for bean with name 'afterLog' defined in class path resource [applicationContext.xml]; nested exception is java.lang.ClassNotFoundException: com.pro.log.AfterLog/>

java.lang.ClassNotFoundException: com.pro.log.BeforeLog/>

但是target文件夹里有相应的class文件

回答

可能spring容器中没有找到这个包,在配置文件bean上面加上类似的包扫描配置看看,如

<context:component-scan base-package="com.pro.log” />

以上是 Spring实现AOP报错 Bean must be of 'org.aopalliance.aop.Advice' type ? 的全部内容, 来源链接: utcz.com/a/40417.html

回到顶部