在运行时创建带注释字段的java类
问题是我需要在运行时创建一个这样的类:
public class Foo {
@Bar int value0;
@Bar int value1;
@Bar int value2;
....
}
字段数量在运行时决定。
我正在研究 Javassist,在那里您可以创建一个新类,并向其添加字段,但我还没有找到注释这些字段的方法。
The problem is that I need to create in runtime a class like this:
public class Foo {
@Bar int value0;
@Bar int value1;
@Bar int value2;
....
}
with number of fields being decided at runtime.
I was looking at Javassist, and there you can create a new class, and add fields to it, but I haven't found a way to annotate those fields.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用字节码操作库,例如 ASM:
输出:
You can use a bytecode manipulation library like ASM:
Output: