这篇文章主要介绍了Spring 中优雅的获取泛型信息的方法,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧 简介
spring 源码是个大宝库,我们能遇到的大部分工具在源码里都能找到,所以笔者开源的 mica 完全基于 spring 进行基础增强,不重复造轮子。今天我要分享的是在 spring 中优雅的获取泛型。 获取泛型 自己解析
我们之前的处理方式,代码来源 vjtools(江南白衣)。
/**
* 通过反射, 获得class定义中声明的父类的泛型参数的类型.
*
* 注意泛型必须定义在父类处. 这是唯一可以通过反射从泛型获得class实例的地方.
*
* 如无法找到, 返回object.class.
*
* 如public userdao extends hibernatedao<user,long>
*
* @param clazz clazz the class to introspect
* @param index the index of the generic declaration, start from 0.
* @return the index generic declaration, or object.class if cannot be determined
*/
public static class getclassgenerictype(final class clazz, final int index) {
type gentype = clazz.getgenericsuperclass();
if (!(gentype instanceof parameterizedtype)) {
logger.warn(clazz.getsimplename() + "'s superclass not parameterizedtype");
return object.class;
}
type[] params = ((parameterizedtype) gentype).getactualtypearguments();
if ((index >= params.length) || (index < 0)) {
logger.warn("index: " + index + ", size of " + clazz.getsimplename() + "'s parameterized type: "
+ params.length);
return object.class;
}
if (!(params[index] instanceof class)) {
logger.warn(clazz.getsimplename() + " not set the actual class on superclass generic parameter");
return object.class;
}
return (class) params[index];
}
resolvabletype 工具
从 spring 4.0 开始 spring 中添加了 resolvabletype 工具,这个类可以更加方便的用来回去泛型信息。
首先我们来看看官方示例: