Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
为了使 Java Bean 中的所有字段都可以配置,我想在运行时动态地从读取 XML 配置到基本 Java 类的字段和方法。有没有办法做到这一点?如果有一个简单的样品可以在这里提供?
提前致谢。
java 在运行时不是动态语言。
但您可以使用 ASM 框架 ( http://asm.ow2.org/ )。