栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 面试经验 > 面试问答

Struts 2迭代枚举

面试问答 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

Struts 2迭代枚举

是。有点丑陋,答案是启用静态方法访问,对OGNL表达式使用内部类语法(使用’$’),两者结合在一起将使您可以使用Steven提到的values方法。这是一个例子:

动作示例

package com.action.test;import com.opensymphony.xwork2.ActionSupport;public class EnumTest extends ActionSupport{    enum Numbers{ONE, TWO, THREE};}

示例JSP

<%@taglib prefix="s" uri="/struts-tags"%><%@page contentType="text/html" pageEncoding="UTF-8"%><!DOCTYPE html><html>    <body>        <h1>Enum Test</h1>        //NOTE THE USE OF THE $ character to access the inner class on the following two lines.        length: <s:property value="@com.action.test.EnumTest$Numbers@values().length"/><br/>        <s:iterator value="@com.action.test.EnumTest$Numbers@values()"> <s:property/><br/>        </s:iterator>     </body></html>

输出


枚举测试

长度:3

ONE

TWO

THREE


注意 :确保已启用静态方法访问。一种简单的方法是

<struts>
在struts.xml中的标记之后添加以下内容。

<constant name="struts.ognl.allowStaticMethodAccess" value="true"/>


转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/635899.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号