有没有办法在使用commons-beanutils访问嵌套bean时阻止NPE? 这是我的代码:
new BeanUtilsBean().getProperty(human, "parent.name");
在这种情况下,我希望getProperty()
在human.getParent() == null
时返回空字符串(“”),或者以抛出NPE的方式处理它。
答案 0 :(得分:2)
他们正在考虑JDK7的adding语言功能,但ultimately they weren't added
现在你必须手动检查。你可以破解它并创建一个像
这样的函数public static void propertyHack(Object bean, String property, String nullreplace){
try{
return new BeanUtilsBean().getProperty(bean, property);
}
catch(NullPointerException npe){
return nullreplace;
}
}
有点糟糕,但它会起作用。
答案 1 :(得分:2)
PropertyUtils
有一个嵌套属性getNestedProperty(...)
的特定方法,它通过抛出NestedNullException
来处理NPE,这对于眼睛来说可能更好(?)。
这是Javadoc。
答案 2 :(得分:1)
如果其他人正在搜索答案
Guia g = new Guia();
GuiaParticipante gp = new GuiaParticipante(1);
g.setTbGuiaParticipanteCollection(Collections.singletonList(gp));//comment this line to test
String name = "tbGuiaParticipanteCollection[0].codParticipante";//the expression itself
Resolver resolver = new DefaultResolver();//used to "clean" the expression
if (resolver.isIndexed(name)) {
String property = resolver.getProperty(name);//remove the [0].codParticipante
if (PropertyUtils.getProperty(g, property) != null) { //get the collection object, so you can test if is null
String cod = BeanUtils.getNestedProperty(g, name); //get the value if the collection isn't null
System.out.println(cod);
}
}