Pointcut is not well-formed: expecting 'name pattern' at character position

Posted yansum

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Pointcut is not well-formed: expecting 'name pattern' at character position相关的知识,希望对你有一定的参考价值。

 

配置aop报错:原因是配置切点表达式的时候报错了,

星号后面没有加空格

<aop:config>

<aop:pointcut id="transactionPointcut" expression="execution(* project.mybatis.service.*.*(..))" />
<aop:advisor pointcut-ref="transactionPointcut" advice-ref="omsMTransactionAdvice" />
</aop:config>

其中,切入点表达式的使用规则:

 1、execution(): 表达式主体。

 2、第一个*号:表示返回类型,*号表示所有的类型。

 3、包名:表示需要拦截的包名,后面的两个句点表示当前包和当前包的所有子包,com.sample.service.impl包、子孙包下所有类的方法。

 4、第二个*号:表示类名,*号表示所有的类。

 5、*(..):最后这个星号表示方法名,*号表示所有的方法,后面括弧里面表示方法的参数,两个句点表示任何参数。

 

 

 

 

以上是关于Pointcut is not well-formed: expecting 'name pattern' at character position的主要内容,如果未能解决你的问题,请参考以下文章

Spring AOP表达式报错:Pointcut is not well-formed: expecting 'name pattern' at character position(

解决IE报错:Locale 'chinese' is not well-formed,或RangeError: 区域设置“chinese”的格式不正确的问题

Error parsing XML: not well-formed (invalid token) 报错+R文件消失解决的方法

Android 编译错误——布局 Error parsing XML: not well-formed (invalid token)

Error:(58) Error parsing XML: not well-formed (invalid token)

Selenium2+Python3.6实战:读取xml文件,获得标签信息ExpatError: not well-formed (invalid token)