Java Reflection:如何获取Java类的所有getter方法并调用它们
2022-08-31 12:18:48
我写了一个java类,它有很多getters。现在我想获取所有 getter 方法并在某个时候调用它们。我知道有一些方法,如getMethods()或getMethod(字符串名称,类...参数类型),但我只是想得到getter确实...,使用正则表达式?任何人都可以告诉我吗?谢谢!
我写了一个java类,它有很多getters。现在我想获取所有 getter 方法并在某个时候调用它们。我知道有一些方法,如getMethods()或getMethod(字符串名称,类...参数类型),但我只是想得到getter确实...,使用正则表达式?任何人都可以告诉我吗?谢谢!
不要使用正则表达式,使用内省函数
:
for(PropertyDescriptor propertyDescriptor :
Introspector.getBeanInfo(yourClass).getPropertyDescriptors()){
// propertyEditor.getReadMethod() exposes the getter
// btw, this may be null if you have a write-only property
System.out.println(propertyDescriptor.getReadMethod());
}
通常,您不需要 Object.class中的属性,因此您将该方法与两个参数一起使用:
Introspector.getBeanInfo(yourClass, stopClass)
// usually with Object.class as 2nd param
// the first class is inclusive, the second exclusive
顺便说一句:有些框架可以为您做到这一点,并为您提供高级视图。例如,commons/beanutils有方法
Map<String, String> properties = BeanUtils.describe(yourObject);
(文档在这里)它就是这样做的:查找并执行所有 getter,并将结果存储在地图中。遗憾的是,在返回之前将所有属性值转换为字符串。跆拳道。谢谢@danwBeanUtils.describe()
更新:
下面是一个 Java 8 方法,它返回基于对象的 Bean 属性的 。Map<String, Object>
public static Map<String, Object> beanProperties(Object bean) {
try {
return Arrays.asList(
Introspector.getBeanInfo(bean.getClass(), Object.class)
.getPropertyDescriptors()
)
.stream()
// filter out properties with setters only
.filter(pd -> Objects.nonNull(pd.getReadMethod()))
.collect(Collectors.toMap(
// bean property name
PropertyDescriptor::getName,
pd -> { // invoke method to get value
try {
return pd.getReadMethod().invoke(bean);
} catch (Exception e) {
// replace this with better error handling
return null;
}
}));
} catch (IntrospectionException e) {
// and this, too
return Collections.emptyMap();
}
}
不过,您可能希望使错误处理更加可靠。很抱歉样板,检查的异常阻止我们在这里完全正常运行。
事实证明,Collectors.toMap() 讨厌空值。下面是上述代码的更必要的版本:
public static Map<String, Object> beanProperties(Object bean) {
try {
Map<String, Object> map = new HashMap<>();
Arrays.asList(Introspector.getBeanInfo(bean.getClass(), Object.class)
.getPropertyDescriptors())
.stream()
// filter out properties with setters only
.filter(pd -> Objects.nonNull(pd.getReadMethod()))
.forEach(pd -> { // invoke method to get value
try {
Object value = pd.getReadMethod().invoke(bean);
if (value != null) {
map.put(pd.getName(), value);
}
} catch (Exception e) {
// add proper error handling here
}
});
return map;
} catch (IntrospectionException e) {
// and here, too
return Collections.emptyMap();
}
}
以下是使用JavaSlang以更简洁的方式使用相同的功能:
public static Map<String, Object> javaSlangBeanProperties(Object bean) {
try {
return Stream.of(Introspector.getBeanInfo(bean.getClass(), Object.class)
.getPropertyDescriptors())
.filter(pd -> pd.getReadMethod() != null)
.toJavaMap(pd -> {
try {
return new Tuple2<>(
pd.getName(),
pd.getReadMethod().invoke(bean));
} catch (Exception e) {
throw new IllegalStateException();
}
});
} catch (IntrospectionException e) {
throw new IllegalStateException();
}
}
这是番石榴版本:
public static Map<String, Object> guavaBeanProperties(Object bean) {
Object NULL = new Object();
try {
return Maps.transformValues(
Arrays.stream(
Introspector.getBeanInfo(bean.getClass(), Object.class)
.getPropertyDescriptors())
.filter(pd -> Objects.nonNull(pd.getReadMethod()))
.collect(ImmutableMap::<String, Object>builder,
(builder, pd) -> {
try {
Object result = pd.getReadMethod()
.invoke(bean);
builder.put(pd.getName(),
firstNonNull(result, NULL));
} catch (Exception e) {
throw propagate(e);
}
},
(left, right) -> left.putAll(right.build()))
.build(), v -> v == NULL ? null : v);
} catch (IntrospectionException e) {
throw propagate(e);
}
}
您可以使用反射框架来实现此目的
import org.reflections.ReflectionUtils.*;
Set<Method> getters = ReflectionUtils.getAllMethods(someClass,
ReflectionUtils.withModifier(Modifier.PUBLIC), ReflectionUtils.withPrefix("get"));