关于得到泛型的class 异常问题

开始项目环境的搭建,在开始搭建之初,我考虑(s2sh) 底层和数据库交互是直接用hibernateTemplate 这个工具类呢 还是在重新开始封装一次 这样代码的扩展性就会很强,项目耦合明显降低,所有有必要写一个通用的baseDao,baseDao代码中

private Class poClass;

@SuppressWarnings("unchecked")

public BasicDAOImpl() {
Type type = this.getClass().getGenericSuperclass();
if (type instanceof ParameterizedType) {
poClass = (Class) ((ParameterizedType) type).getActualTypeArguments()[0];
} else {
throw new RuntimeException(this.getClass().getName() + "没有指定PO的类型");
}

}

写了一个测试类,class Child extends  BasicDAOImpl{

public Child()  
    {  
        System.out.println(poClass);  
    } 
public static void main(String[] args){
Child c = new Child();
}


}

测试正常

不过在测试的时候 出现过好几次

  1. java.lang.ClassCastException: java.lang.Class cannot be cast to java.lang.reflect.ParameterizedType  
  2.     at Test.(Test.java:9)  
  3.     at Test.main(Test.java:14)  
  1. java.lang.ClassCastException: sun.reflect.generics.reflectiveObjects.TypeVariableImpl cannot be cast to java.lang.Class  
  2.     at Test.(Test.java:14)  
  3.     at Test.main(Test.java:20)  
这两个异常困扰了我 好长时间,终于搞定



你可能感兴趣的:(关于得到泛型的class 异常问题)