English 中文(简体)
使用Java注释-生成代码
原标题:Using Java Annotations - Generating Code

我使用的是java6注释处理api。我遵循了以下关于创建一个在构建时显示消息的注释处理器的优秀教程:

http://kerebus.com/2011/02/using-java-6-processors-in-eclipse/

然而,就我而言,我有一个简单的类:

import java.lang.annotation.ElementType;
import java.lang.annotation.Target;

@Retention(RetentionPolicy.RUNTIME)
@Target(value = ElementType.METHOD)
public @interface Criteria {
    String id();
    double width();
    double height();
}

正如您所看到的,前面提到的注释在运行时使用元注释Retention提供给JVM。我在另一个类的源代码中使用此Criteria注释来注释方法,如下所示:

@Criteria(id = "fooBar", 
    width = 22, 
    height = 10
)
public void fooStream() {       
    System.out.println("foo stream method");
} 

在运行时,我希望在另一个类中包含fooStream方法,前提是传入的变量与@Criteria注释中元素的值(即宽度和高度)匹配。我的问题是,如何在运行时将方法fooStream注入到另一个类中?这可能吗?我不想找任何代码示例,只想回答前面提到的两个问题。此外,在顶部的链接中,有一个使用JavaFileObject和Writer实例生成代码的示例,其中生成的代码作为字符串传递。

最佳回答

如果您想在运行时修改,您可以使用自己的类加载器并拦截类的加载,内省您想要的内容,并使用asm库而不是原始类生成新的字节码。这不是很棘手,但你必须确定你确实需要。

问题回答

我不认为Java支持运行时类型突变,也就是说,要修改给定类上的成员,你必须回到编译时预处理器或字节码修改方案。

如果我理解这个问题背后的“为什么”,我会为你指明一个更好的方向,但同时,动态代理类可能会让您到达想要的位置(JavaWorld文章)。

根据文档:

A dynamic proxy class is a class that implements a list of interfaces specified at runtime such that a method invocation through one of the interfaces on an instance of the class will be encoded and dispatched to another object through a uniform interface. Thus, a dynamic proxy class can be used to create a type-safe proxy object for a list of interfaces without requiring pre-generation of the proxy class, such as with compile-time tools. Method invocations on an instance of a dynamic proxy class are dispatched to a single method in the instance s invocation handler, and they are encoded with a java.lang.reflect.Method object identifying the method that was invoked and an array of type Object containing the arguments.

这是一个不错的关于使用Spring基于自定义注释注入动态代理的教程。我认为这可能最接近您所追求的行为。





相关问题
Spring Properties File

Hi have this j2ee web application developed using spring framework. I have a problem with rendering mnessages in nihongo characters from the properties file. I tried converting the file to ascii using ...

Logging a global ID in multiple components

I have a system which contains multiple applications connected together using JMS and Spring Integration. Messages get sent along a chain of applications. [App A] -> [App B] -> [App C] We set a ...

Java Library Size

If I m given two Java Libraries in Jar format, 1 having no bells and whistles, and the other having lots of them that will mostly go unused.... my question is: How will the larger, mostly unused ...

How to get the Array Class for a given Class in Java?

I have a Class variable that holds a certain type and I need to get a variable that holds the corresponding array class. The best I could come up with is this: Class arrayOfFooClass = java.lang....

SQLite , Derby vs file system

I m working on a Java desktop application that reads and writes from/to different files. I think a better solution would be to replace the file system by a SQLite database. How hard is it to migrate ...

热门标签