0

这是情况,我真的不知道该怎么办。
我想用 jpa 和 enum 坚持几个月,其中几个月将坚持为相应的 int 值。我读了很多类似的问题,我知道关于序数和字符串以及@Enumerated 的意见,但我想使用这个自定义的 int 值,我决定这样做:

public enum Months {        
    January(1),
    February(2),
    March(3),
    April(4),
    May(5),
    Jun(6),
    July(7),
    August(8),
    September(9),
    October(10),
    November(11),
    December(12);

    private int intValue;

    private Months(int v) {
        this.intValue = v;
    }

    public int getIntValue() {
        return intValue;
    }

    // Mapping month to int
    private static final Map<Integer, Months> mapMonth = new HashMap<Integer, Months>();
    static
    {
        for (Months m : Months.values())
            mapMonth.put(m.intValue, m);
    }

    //Get month from int
    public static Months getMonthName(int v)
    {
        Months m = mapMonth.get(Integer.valueOf(v));
        return m;
    }

}

@Transient
private transient Months month; //actual enum; not stored in db
@Column(name="month")  
private int monthInt; // enum int value gets stored in db

所以,我实际上坚持一个 int 属性 intMonth 并在我的 xhtml 中使用像这样的标签这样的枚举名称:

<h:outputText value="* #{bundle.month}: " />  
                <h:selectOneMenu 
                    value="#{adminMembershipBean.membership.monthInt}"
                    panelStyle="width:150px"  
                    effect="fade" 
                    var="m" 
                    style="width:160px"
                    filter="true" 
                    filterMatchMode="startsWith">  
                    <f:selectItem itemLabel="Select One" itemValue="" />  
                    <f:selectItems 
                        value="#{adminMembershipBean.months}" 
                        var="months" 
                        itemLabel="#{months}" 
                        itemValue="#{months.intValue}"/> 
                    <p:column>  
                        #{m} 
                    </p:column>  
                </h:selectOneMenu>

顺便说一句,这是一个额外的问题
为什么 p:selectOneMenu 不显示枚举名称?我知道这是一个问题,一种解决方案是使用 h:selectOneMenu,但是我没有 primefaces 样式的组合框。

所以,现在我进入了我的数据库,例如 4 和 xhtml April,没关系。
但是,当我想从数据库中读取其他 xhtml 上的 4 时,我无法得到 April,我得到空单元格(这是 p:datatable 的摘录):

<p:column sortBy="#{membership.monthInt}">
<f:facet name="header">
<h:outputText value="#{bundle.month}" />
</f:facet>
<h:outputText value="#{membership.month.getMonthName(membership.monthInt)}"/>
</p:column>

如果我只放

membership.monthInt

我得到 4.
那么,主要问题如何显示月份名称,即枚举名称?
谢谢你的时间。

4

1 回答 1

0

好吧,它开箱即用。我用你的枚举和primefaces做了一个简单的例子。

豆子:

@ManagedBean
@ViewScoped
public class MonthEnumBean
{

    private Months month;
    private int monthInt;
    private String monthString;

    public MonthEnumBean()
    {
        monthInt = 12;

    }

    public Months[] getMonths()
    {
        return month.values();
    }

    public Months getMonth()
    {
        return month;
    }

    public void setMonth(Months month)
    {
        this.month = month;
    }

    public int getMonthInt()
    {
        return monthInt;
    }

    public void setMonthInt(int monthInt)
    {
        this.monthInt = monthInt;
    }

    public Months getMonthString()
    {
        return month.getMonthName(monthInt);
    }
}

示例页面:

<h:form>
    <p:dataTable id="month" var="month" value="#{monthEnumBean.months}">
        <p:column id="modelHeader" exportable="true">
            <f:facet name="header">
                <h:outputText value="Month Name" />
            </f:facet>
            <h:outputText value="#{month}" />
        </p:column>
        <p:column>
            <f:facet name="header">
                <h:outputText value="Int " />
            </f:facet>
            <h:outputText value="#{month.intValue}" />
        </p:column>
    </p:dataTable>

    <p:panel>
    <p:selectOneMenu value="#{monthEnumBean.month}">
        <f:selectItem itemLabel="Select One" itemValue="" />
        <f:selectItems value="#{monthEnumBean.months}" var="month" itemLabel="#{month}" itemValue="#{mont.intValue}" />
    </p:selectOneMenu>
    </p:panel>
    <p:commandButton value="Submit" update="@form" oncomplete="dlg.show()" />
    <p:dialog header="Selected Values" modal="true" widgetVar="dlg">
        <h:panelGrid columns="1" id="display">
            <h:outputText value="Name: #{monthEnumBean.month}" />
            <h:outputText value="Intvalue: #{monthEnumBean.month.intValue}" />
        </h:panelGrid>
    </p:dialog>
    <p:panel>
        <p:panelGrid columns="3">
            <h:outputText value="Number from database: #{monthEnumBean.monthInt }" />                   
            <h:outputText value="String name of number from database: #{monthEnumBean.monthString}" />
        </p:panelGrid>
    </p:panel>
</h:form>
于 2013-05-17T08:37:31.420 回答