我想在一些服务方法上添加自定义注释
让我们想象一下:
class serviceA
{
public method1()
/* @myCustomAnnotation(foo=bar)*/
public method2()
}
class serviceB
{
public method101()
/* @myCustomAnnotation(foo=foo)*/
public method105()
/* @myCustomAnnotation(foo=bar)*/
public method105()
}
首先,有可能吗?
如何指定我的AnnotationServiceListener来监听服务方法?