在 JSP 中迭代枚举常量

2022-09-04 03:40:49

我有一个像这样的枚举

package com.example;

public enum CoverageEnum {

    COUNTRY,
    REGIONAL,
    COUNTY
}

我想在不使用 scriptlet 代码的情况下在 JSP 中迭代这些常量。我知道我可以用像这样的脚本代码来做到这一点:

<c:forEach var="type" items="<%= com.example.CoverageEnum.values() %>">
    ${type}
</c:forEach>

但是,如果没有脚本,我也能实现同样的事情吗?

干杯,唐


答案 1

如果您使用的是Spring MVC,则可以通过以下语法祝福来实现您的目标:

 <form:form method="post" modelAttribute="cluster" cssClass="form" enctype="multipart/form-data">
   <form:label path="clusterType">Cluster Type
      <form:errors path="clusterType" cssClass="error" />
   </form:label>
   <form:select items="${clusterTypes}" var="type" path="clusterType"/>
 </form:form>

其中,您的模型属性(即,要填充的 Bean/数据实体)被命名为 cluster,并且您已经使用名为 clusterTypes 的值枚举数组填充了模型。该部分非常可选。<form:error>

在春季MVC土地上,您还可以像这样自动填充到模型中clusterTypes

@ModelAttribute("clusterTypes")
public MyClusterType[] populateClusterTypes() {
    return MyClusterType.values();
}

答案 2

如果您使用的是标签库,则可以将代码封装在 EL 函数中。因此,开始标记将变为:

<c:forEach var="type" items="${myprefix:getValues()}">

编辑:为了回应关于适用于多种Enum类型的实现的讨论,刚刚概述了这一点:

public static <T extends Enum<T>> Enum<T>[] getValues(Class<T> klass) {
    try { 
        Method m = klass.getMethod("values", null);
        Object obj = m.invoke(null, null);
        return (Enum<T>[])obj;
    } catch(Exception ex) {
        //shouldn't happen...
        return null;
    }
}