【问题标题】:javax.el.ELException: Can't set property 'propertyName' on class 'com.example.MrBean' to value 'null'javax.el.E​​LException:无法将类“com.example.MrBean”上的属性“propertyName”设置为值“null”
【发布时间】:2011-10-26 13:25:22
【问题描述】:

在我的 .xhtml 文件中,我有以下 SelectOneMenu 组件:

<ui:define name="formContent">
    <h:selectOneMenu value="#{mrBean.itemCategoryID}">
        <f:ajax render="abc def" execute="@this" listener="#{mrBean.getListOfItems}"></f:ajax> 
        <f:selectItem itemLabel="Choose one .." itemValue="0" noSelectionOption="true" />
        <f:selectItems value="#{mrBean.itemCategories}" var="ic"
                       itemLabel="#{ic.name}" itemValue="#{ic.id}" />
    </h:selectOneMenu>

<h:panelGrid id="abc" columns="3" border="1">
    <h:outputText style="font-weight: bold" value="Name"/> 
    <h:outputText style="font-weight: bold" value="Producer" />
    <h:outputText />
</h:panelGrid>    

<h:panelGroup id="def" >
    <ui:repeat value="#{mrBean.items}" var="i">
        <h:form id="BuyItemForm">
            <h:panelGrid columns="3" border="1">
                <h:outputText style="font-weight: normal" value="#{i.name}" /> 
                <h:outputText style="font-weight: normal" value="#{i.producer.name}" /> 
                <h:commandButton value="Buy" actionListener="#{mrBean.buyItem}" >
                    <f:param name="itemID" value="#{i.id}" />
                </h:commandButton> 

            </h:panelGrid>
        </h:form>
    </ui:repeat>
</h:panelGroup>
</ui:define>

当我打开页面时,它可以正常加载并正确填充菜单。但是,当我选择 1 个选项时,我遇到了以下错误:

SEVERE: javax.faces.component.UpdateModelException: javax.el.ELException: /partner/BuyItem.xhtml @53,81 value="#{mrBean.itemCategoryID}": Can't set property 'itemCategoryID' on class 'managedBean.MrBean' to value 'null'.
... 
Caused by: javax.el.ELException: /partner/BuyItem.xhtml @53,81 value="#{mrBean.itemCategoryID}": Can't set property 'itemCategoryID' on class 'managedBean.MrBean' to value 'null'.
    at com.sun.faces.facelets.el.TagValueExpression.setValue(TagValueExpression.java:139)
    at javax.faces.component.UIInput.updateModel(UIInput.java:818)
    ... 47 more
Caused by: java.lang.IllegalArgumentException
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at javax.el.BeanELResolver.setValue(BeanELResolver.java:381)
    at com.sun.faces.el.DemuxCompositeELResolver._setValue(DemuxCompositeELResolver.java:255)
    at com.sun.faces.el.DemuxCompositeELResolver.setValue(DemuxCompositeELResolver.java:281)
    at com.sun.el.parser.AstValue.setValue(AstValue.java:197)
    at com.sun.el.ValueExpressionImpl.setValue(ValueExpressionImpl.java:286)
    at com.sun.faces.facelets.el.TagValueExpression.setValue(TagValueExpression.java:131)
    ... 48 more

编辑:这是我的带有 getListOfItems 函数的 bean:

@ManagedBean
@ViewScoped
public class MrBean {
    @EJB
    private PartnerBeanLocal partnerBean;

    @ManagedProperty(value="0")
    private long    itemCategoryID;
    private List<ItemState> items;

    ...
    public void getListOfItems() {
        try {
            System.out.println(itemCategoryID); // I never saw this line printed out
            ArrayList data = partnerBean.getInfo(Constants.GET_LIST_OF_ITEMS, itemCategoryID);

            int result = ((Integer) data.get(0)).intValue();
            if (result == Constants.STATUS_SUCCESSFUL) items = (List<ItemState>) data.get(1);
            else if (result == Constants.STATUS_NOT_FOUND) FacesContext.getCurrentInstance().getExternalContext().redirect("HomePage.xhtml");

        } catch (IOException ex) {
            Logger.getLogger(MrBean.class.getName()).log(Level.SEVERE, null, ex);
        }
    }
    ...

    // Getters and Setters
    ...
    public long getItemCategoryID() {
        return itemCategoryID;
    }

    public void setItemCategoryID(long itemCategoryID) {
        this.itemCategoryID = itemCategoryID;
    }

    public List<ItemState> getItems() {
        return items; 
    }

    public List<ItemState> setItems(List<ItemState> items) {
        this.items = items; 
    }
    ...
}

如果有人能就如何解决这个问题给我建议,我将不胜感激。

编辑 2:感谢大家帮助我!问题是我愚蠢地忘记将&lt;f:ajax&gt; 标签放在&lt;h:form&gt; 标签内。

【问题讨论】:

  • 也有助于从 mrBean 获得代码...
  • 看起来null 以某种方式被传递,java.lang.IllegalArgumentException 在尝试更新模型值时被抛出。您可以发布您的托管 bean 代码吗?
  • 据我所见,当我选择一个选项时,会进行 Ajax 调用。但是,我的 bean 函数 getListOfItems 从未被触发。
  • 何时选择(组合框打开并填充)?或者当你点击组合框???
  • itemCategoryID 的类型是 int 还是 Integer

标签: jsf-2 el


【解决方案1】:

这是我尝试过的:

@ManagedBean
@ViewScoped
public class MrBean implements Serializable {
    @ManagedProperty(value="0")
    private long itemCategoryID;
    private List<ItemCategory> itemCategories;

    @PostConstruct
    public void init() {
        this.itemCategories = new ArrayList<ItemCategory>();
        this.itemCategories.add(new ItemCategory("Item1", 1));
        this.itemCategories.add(new ItemCategory("Item2", 2));
        this.itemCategories.add(new ItemCategory("Item3", 3));
    }

    public void getListOfItems() {
        System.out.println(Thread.currentThread().getStackTrace()[1]);
        System.out.println("itemCategoryID: " + this.itemCategoryID);
    }

    public List<ItemCategory> getItemCategories() {
        return itemCategories;
    }

    public void setItemCategories(List<ItemCategory> itemCategories) {
        this.itemCategories = itemCategories;
    }

    public long getItemCategoryID() {
        return itemCategoryID;
    }

    public void setItemCategoryID(long itemCategoryID) {
        this.itemCategoryID = itemCategoryID;
    }
}

与:

<h:form>
    <h:selectOneMenu value="#{mrBean.itemCategoryID}">
        <f:ajax execute="@this" listener="#{mrBean.getListOfItems}"></f:ajax> 
        <f:selectItem itemLabel="Choose one .." itemValue="0" noSelectionOption="true" />
        <f:selectItems value="#{mrBean.itemCategories}" var="ic"
                           itemLabel="#{ic.name}" itemValue="#{ic.id}" />
    </h:selectOneMenu>
</h:form>

它可以正常工作。

可能是您拥有的 JSF (EL) 版本,或者您在其他地方有问题。

【讨论】:

    【解决方案2】:

    &lt;f:ajax&gt; 标签需要包裹在&lt;h:form&gt; 标签内。

    【讨论】:

      【解决方案3】:

      您的某些项目值似乎是null。如果您想接受null,请使用Long 而不是long

      【讨论】:

        【解决方案4】:

        我遇到了同样的问题,通过将我的变量类型 boolean 更改为 Boolean 解决了这个问题

        【讨论】:

        • 你有同样的例外你的意思......不是同一个问题;-)
        猜你喜欢
        • 2011-12-18
        • 1970-01-01
        • 2016-12-29
        • 2013-07-31
        • 2016-06-10
        • 2015-12-07
        • 1970-01-01
        • 1970-01-01
        • 1970-01-01
        相关资源
        最近更新 更多