使用 Javassist 向运行时生成的方法/类添加注释
Posted
技术标签:
【中文标题】使用 Javassist 向运行时生成的方法/类添加注释【英文标题】:Adding an annotation to a runtime generated method/class using Javassist 【发布时间】:2010-06-03 08:01:20 【问题描述】:我正在使用Javassist 生成一个类foo
,使用方法bar
,但我似乎找不到向方法。我试过的代码是这样的:
ClassPool pool = ClassPool.getDefault();
// create the class
CtClass cc = pool.makeClass("foo");
// create the method
CtMethod mthd = CtNewMethod.make("public Integer getInteger() return null; ", cc);
cc.addMethod(mthd);
ClassFile ccFile = cc.getClassFile();
ConstPool constpool = ccFile.getConstPool();
// create the annotation
AnnotationsAttribute attr = new AnnotationsAttribute(constpool, AnnotationsAttribute.visibleTag);
Annotation annot = new Annotation("MyAnnotation", constpool);
annot.addMemberValue("value", new IntegerMemberValue(ccFile.getConstPool(), 0));
attr.addAnnotation(annot);
ccFile.addAttribute(attr);
// generate the class
clazz = cc.toClass();
// length is zero
java.lang.annotation.Annotation[] annots = clazz.getAnnotations();
显然我做错了,因为annots
是一个空数组。
注释是这样的:
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.METHOD)
public @interface MyAnnotation
int value();
【问题讨论】:
【参考方案1】:最终解决了,我将注释添加到错误的位置。我想将它添加到方法中,但我正在将它添加到类中。
这是固定代码的样子:
// wrong
ccFile.addAttribute(attr);
// right
mthd.getMethodInfo().addAttribute(attr);
【讨论】:
以上是关于使用 Javassist 向运行时生成的方法/类添加注释的主要内容,如果未能解决你的问题,请参考以下文章
基于 Javassist 和 Javaagent 实现动态切面
字节码javassist 定义属性以及创建方法时多种入参和出参 类型的使用