У меня простой вопрос, почему я всегда получаю NPE, когда я вызываю метод управляемого компонента, который либо возвращает список. Я использую компонент мастера Primefaces на мой взгляд. Например, может кто-то говорит мне разницу между этими двумя:
Не работает:
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)
...
мой взгляд: