在JSTL中使用枚举

时间:2011-07-18 21:55:27

标签: java jsp jstl

我正在尝试使用jstl进行一些网站开发,我遇到了 以下问题:

这里我试图创建一个下拉列表,显示的值是 国家/地区名称,值是国家/地区代码。要做到这一点我 在后端java代码中有以下枚举:

public static enum CountryCodes implements EnumConstant {
       USA, CAN, AUS, GBR, DEU, ESP, GUM, IND, ISR, MEX, NZL, PAN, PRI;

       public final String toCountry(){
               switch(this){
               case USA:
                       return "United States";
               case CAN:
                       return "Canada";
               case AUS:
                       return "Australia";
               case GBR:
                       return "Great Britan";
               case DEU:
                       return "Germany";
               case ESP:
                       return "Spain";
               case GUM:
                       return "Guam";
               case IND:
                       return "India";
               case ISR:
                       return "Isreal";
               case MEX:
                       return "Mexico";
               case NZL:
                       return "New Zealand";
               case PAN:
                       return "Panama";
               case PRI:
                       return "Puerto Rico";

               }
               return this.toString();
       }
}

jsp代码片段如下所示:

<c:set var="countryCodes" value="<%=RequestConstants.CountryCodes.values()%>" />
<td>
    <select id="<%=RequestConstants.CLModifyPage.COUNTRY_CODE%>"
        name="<%=RequestConstants.CLModifyPage.COUNTRY_CODE%>">
        <c:forEach items="${countryCodes}" var="countryCode">
            <c:choose>
                <c:when
                    test="${sessionScope.CURRENT_INSTITUTION.countryCode == countryCode}">
                    <option value="${countryCode}" selected="selected">
                        ${countryCode.toCountry()}</option>
                </c:when>
                <c:otherwise>
                    <option value="${countryCode}">${countryCode.toCountry()}
                        </option>
                </c:otherwise>
            </c:choose>
        </c:forEach>
    </select>
</td>

但上面的代码有两个问题:

  1. countryCode.toCountry()不起作用......我不确定它应该是什么语法。

  2. 如果"${sessionScope.CURRENT_INSTITUTION.countryCode}"不是有效的枚举值,即如果它类似于“AAA”,则比较失败并抛出java.lang.IllegalArgumentException:没有定义枚举const CountryCodes.AAA。我怎么能解决这个问题?

2 个答案:

答案 0 :(得分:9)

你的方法太复杂了。

按如下方式重新设计你的枚举:

public enum CountryCode {

    USA("United States"), 
    CAN("Canada"),
    AUS("Australia");
    // ...

    private String label;

    private CountryCode(String label) {
        this.label = label;
    }

    public String getLabel() {
        return label;
    }

}

(请注意,它现在有一个值得提供且更有效的吸气剂!)

在servlet的init()方法期间将枚举值存储在应用程序范围中,或者更好地在ServletContextListenercontextInitialized()方法中存储:

servletContext.setAttribute("countryCodes", CountryCode.values());

最后遍历如下:

<select name="countryCode">
    <c:forEach items="${countryCodes}" var="countryCode">
        <option value="${countryCode}" ${institution.countryCode == countryCode ? 'selected' : ''}>${countryCode.label}</option>
    </c:forEach>
</select>

答案 1 :(得分:1)

如果你使用弹簧,你可以

<form:select path="_path" >
    <spring:eval expression="T(com.EnumName).values()" var="_enum"/>
    <c:forEach items="${_enum}" var="_value">
        <form:option value="${_value}" label="${_value.label}"/>
    </c:forEach>
</form:select>