标签: parameters aop literals
可以将文字参数传递给通知方法吗?
例如:
<aop:before pointcut="execution(public * anotherMethod(..))" method="myMethod(java.lang.String)"/>
在这个例子中,我想在执行“anotherMethod”之前将文字字符串传递给“myMethod”。这可能吗?
提前致谢