使用 groovy AST Transform 修改 java
是否可以使用 groovy ast 转换代码来操作 java 类?
如果是,请举例。
如果不是,请说明原因。
Would it be possible to use groovy ast transformations code to manipulate java classes?
If yes, please give an example.
If no, please specify why.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的,可以将 Groovy AST 转换与 Java 代码一起使用。 Groovy 编译为 Java 字节码并构建在 Java 库的基础上。两种语言之间的互操作性非常好。
groovy 网站上有一个完整的部分涵盖了 AST 转换。
以下是混合 Java/Groovy 应用程序的示例。您有一个标准的 Java 接口和实现。 Groovy 类使用 @Delegate AST 转换,还使用 invokeMethod。
Java 类:
Groovy 类:
执行 new Bar().otherMethod() 将返回“abcdefabcdef”。
Yes it is possible to use Groovy AST Transformations with Java code. Groovy compiles down to java bytecode and builds on the Java libraries. Interoperability between the two languages is great.
There is a whole section on the groovy site that covers the AST Transformations.
Here is an example of a mixed Java/Groovy application. You have a standard Java Interface and implementation. The groovy classes use the @Delegate AST transformation and also use invokeMethod.
Java classes:
Groovy classes:
Executing new Bar().otherMethod() would return 'abcdefabcdef'.
或许。您的第一个问题是找到一个为您提供 AST 的 Java 编译器。尝试 Eclipse 编译器;在这里,您只需将所有类型映射到 Groovy AST 转换器所需的类型。鸭子类型会有帮助,但前提是两个 AST 包含兼容的信息(我对此表示怀疑)。
之后,您需要找到一种方法在生成字节码之前从编译器获取 AST,然后再次将修改后的 AST 注入编译器以获取字节码。
总而言之,可能并非不可能,但需要一些工作。
Maybe. Your first issue is going to be to find a Java compiler which offers you an AST. Try the Eclipse compiler; here, you'll just have to map all the types to the ones expected by the Groovy AST transformer. Duck typing is going to help but only if the two ASTs contain compatible information (which I doubt).
After that, you need to find a way to get the AST from the compiler before the bytecode is generated and then a way to inject the modified AST into the compiler again to get bytecode.
All in all, probably not impossible but it will take some work.