Spring aop Pointcut is not well-formed

拟墨画扇 提交于 2020-03-05 09:31:50

问题


<aop:config>
    <aop:pointcut expression="exection(* info.fdlife.service.UserService.*(..))"
        id="aopProductUserService" />
    <aop:advisor advice-ref="txAdvice" pointcut-ref="aopProductUserService" />
</aop:config>

Here is some of applicationContext.xml (Spring Framework), info.fdlife.service.UserService is a interface. I get some error message:

Caused by: java.lang.IllegalArgumentException: Pointcut is not well-formed: expecting ')' at character position 11 exection(* info.fdlife.service.UserService.*(..))

What does this mean?

来源:https://stackoverflow.com/questions/30960495/spring-aop-pointcut-is-not-well-formed

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!