调用托管bean方法返回NPE

时间:2012-01-05 11:34:36

标签: jsf-2 primefaces method-invocation

我有一个简单的问题,为什么当我调用一个返回列表的托管bean方法时,我总是得到一个NPE。我在视图中使用primefaces向导组件。例如,sometone告诉我这两者之间的区别:

不起作用:

public List<RequiredParam> getRequiredFields() {
   if(!this.sdeCommand.getActions().isEmpty() &&this.action!=null &&!this.action.equals("")){
       for(CommandAction act:this.sdeCommand.getCommandActions()){
           if(act.getActionName().equalsIgnoreCase(this.action)){
               this.requiredFields.addAll(act.getFields());
           }
       }
   }
    return this.requiredFields;
}

然而这个作品:

public List<RequiredParam> getRequiredFields() {

    return this.requiredFields;
}

观点:

                                <c:forEach items="${gdsiGeodataBean.requiredFields}" var="reqs">
                                    <h:outputLabel for="#{reqs.name}" value="#{reqs.name}:* " />  
                                </c:forEach>

错误讯息:

java.lang.NullPointerException
    com.tsystems.appbeans.GdsiGeodataBean.getRequiredFields(GdsiGeodataBean.java:103)
    sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    java.lang.reflect.Method.invoke(Method.java:597)
    javax.el.BeanELResolver.getValue(BeanELResolver.java:62)
    com.sun.faces.el.DemuxCompositeELResolver._getValue(DemuxCompositeELResolver.java:176)
    com.sun.faces.el.DemuxCompositeELResolver.getValue(DemuxCompositeELResolver.java:203)
    org.apache.el.parser.AstValue.getValue(AstValue.java:118)
...

我的观点:

1 个答案:

答案 0 :(得分:1)

this.sdeCommand.getActions().isEmpty()

如果getActions()返回null,则上面将抛出NPE。检查以确保getActions() != null先行。这可能是您的问题,也可能不是,但它肯定是不安全的代码,它永远不应该通过正式的代码审查。