1

我正在尝试使用 setPropertyActionListener 设置枚举属性,但我不知道该怎么做。这是实体:

@Entity
public class Invoice {
    public enum InvoiceStatus { ACTIVE, CANCELED }

        ...

        @Enumerated(EnumType.STRING)
    private InvoiceStatus status;

        ...

        public InvoiceStatus getStatus() {
        return status;
    }


    public void setStatus(InvoiceStatus status) {
        this.status = status;
    }

这是命令按钮,假设使用 setPropertyActionListener 将状态设置为 ACTIVE

   ...

  <h:form id="invoiceCreatedSuccessfully">
        <p:dialog header="#{msg['title.success']}" widgetVar="invoiceCreatedSuccessfullyDialog" resizable="false" showEffect="fade" hideEffect="fade">  
            <h:panelGrid columns="2" rows="3" style="margin-bottom: 10px">  
                <h:outputText value="#{msg['message.invoiceCreatedSuccessfully']}" />
            </h:panelGrid>  
            <p:commandButton value="#{msg['label.acknowledged']}" actionListener="#{invoiceManager.reload}" action="viewInvoices">
                <f:setPropertyActionListener target="#{invoiceManager.invoice.status}" value="ACTIVE" />
            </p:commandButton>
        </p:dialog>
    </h:form>

未报告错误,但未设置数据库中的“状态”字段。有人能告诉我为什么吗?

4

1 回答 1

0

字符串不会直接转换为 EL 中的枚举,您需要在faces-config中进行自定义转换,jsf 有一个适合您的枚举转换器,

<converter>
  <converter-for-class>java.lang.Enum</converter-for-class>
  <converter-class>javax.faces.convert.EnumConverter</converter-class>
</converter>

现在查看 EnumConverter 的源代码,它似乎只有当 targetClass 在转换器中可用时才有效。

因此,您需要将其扩展为与您的 enum 一起使用,

public class MyEnumConverter extends EnumConverter {
  public MyEnumConverter () {
    super(MyEnum.class);
  }
}

<converter>
  <converter-id>MyEnum</converter-id>
  <converter-class>com.test.MyEnumConverter</converter-class>
</converter>

添加<f:converter converterId="MyEnum"/>你的组件。

如果你有很多枚举并且为了让事情变得简单,你可以看看omnifaces http://showcase.omnifaces.org/converters/GenericEnumConverter

于 2013-03-22T14:10:20.130 回答