如果我定义了这样一个注释:
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.FIELD)
public @interface Input {
String type() default "text";
String name();
String pattern() default "";
}
并将其用于以下方法:
@Column(name="nome", unique = true, nullable = false)
@Order(value=1)
@Input
private String nome;
@Column(name="resumo", length=140)
@Order(value=2)
@Input
private String resumo;
是否有任何方法分配给属性name
注释字段的名称(例如:对于字段String nome
,值将是nome
,对于字段String resumo
将是resumo
)?
不能将注释变量默认为字段名。但是无论在何处处理注释,都可以将其默认为字段名。在下面的示例
Field field = ... // get fields
Annotation annotation = field.getAnnotation(Input.class);
if(annotation instanceof Input){
Input inputAnnotation = (Input) annotation;
String name = inputAnnotation.name();
if(name == null) { // if the name not defined, default it to field name
name = field.getName();
}
System.out.println("name: " + name); //use the name
}