public static String getServiceId(Annotation[] annotations) {
String serviceId = "";
if (annotations == null) {
return serviceId;
}
for (Annotation anno : annotations) {
if (anno instanceof Service) {
serviceId = ((Service)anno).value();
}
}
return serviceId;
}
AspectConstants.java 文件源码
java
阅读 48
收藏 0
点赞 0
评论 0
项目:bamboobsc
作者:
评论列表
文章目录