我有反思问题。我决定使用反射创建一个SQL查询生成器。我创建了自己的注释来确定可以使用哪些类,可以存储哪些属性等。 代码按照我的意愿工作,但问题在于使用此项目作为其他人的依赖。
我有另一个使用OJDBC的项目,我试图使用我的库来生成基于类的查询。但是,当我从我的ojdbc项目传递一个类时,所有类信息都丢失了,该类显示为java.lang.Class,甚至注释信息也丢失了。 有谁知道为什么会这样?
private static <T> void appendTableName(Class<T> cls) throws NotStorableException {
Storable storable = cls.getAnnotation(Storable.class);
String tableName = null;
if (storable != null) {
if ((tableName = storable.tableName()).isEmpty())
tableName = cls.getSimpleName();
} else {
throw new NotStorableException(
"The class you are trying to persist must declare the Storable annotaion");
}
createStatement.append(tableName.toUpperCase());
}
当传递以下类时,cls.getAnnotation(Storable.class)
正在丢失信息
package com.fdm.ojdbc;
import com.fdm.QueryBuilder.annotations.PrimaryKey;
import com.fdm.QueryBuilder.annotations.Storable;
@Storable(tableName="ANIMALS")
public class Animal {
@PrimaryKey
private String name;
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
}
动物类位于ojdbc项目中,appendTableName方法属于我的查询构建器。我已经尝试将querybuilder项目生成到jar中并使用maven install将其添加到我的存储库中但仍然没有运气。
感谢您快速回复,但是这不是问题,因为我创建的注释将保留设置为运行时,请参阅下文。
package com.fdm.QueryBuilder.annotations;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
@Target(value = { ElementType.TYPE })
@Retention(value = RetentionPolicy.RUNTIME)
public @interface Storable {
public String tableName() default "";
}
我的注释设置为运行时但类信息仍然丢失。
答案 0 :(得分:5)
如果需要在运行时可用的注释,则需要为其添加注释。
@Retention(RetentionPolicy.RUNTIME)
public @interface Storable {
如果没有这个,注释在运行时不可见。
有关详细信息,请参阅此注释的来源。
/**
* Indicates how long annotations with the annotated type are to
* be retained. If no Retention annotation is present on
* an annotation type declaration, the retention policy defaults to
* {@code RetentionPolicy.CLASS}.
*
* <p>A Retention meta-annotation has effect only if the
* meta-annotated type is used directly for annotation. It has no
* effect if the meta-annotated type is used as a member type in
* another annotation type.
*
* @author Joshua Bloch
* @since 1.5
* @jls 9.6.3.2 @Retention
*/
@Documented
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.ANNOTATION_TYPE)
public @interface Retention {
/**
* Returns the retention policy.
* @return the retention policy
*/
RetentionPolicy value();
}