public DaoBaseImpl () {

       Type type = this.getClass().getGenericSuperclass();

       ParameterizedType pt = (ParameterizedType) type;

       this.clazz = (Class<T>) pt.getActualTypeArguments()[0];

    }

相关文章: