java.lang.IllegalArgumentException: Pointcut is not well-formed: expecting '(' at character position
解决:
<aop:config>
<aop:pointcut expression="execution(* com.wh.serviceImp.*ServiceImp.*(..))" id="txPC"/>
<aop:advisor advice-ref="txAdvice" pointcut-ref="txPC"/>
</aop:config>