多項選擇題執(zhí)行后,可以正確遍歷該列表的選項是()。

A.< s:property value="list"/>
B.< s:iterator value="#list">
C.< s:iterator value="${list}">
D.< s:iterator value="%{#list}">


您可能感興趣的試卷

你可能感興趣的試題

1.多項選擇題已知students中保存了多個Student對象,下面代碼能訪問到students中第一個Student對象的name屬性值的是()。

A.< s:property value="students[0].name"/>
B.< s:property value="#Student.getName()"/>
C.< s:property value="#students[0].name"/>
D.< s:property value="students.get(0).name"/>

2.多項選擇題以下關(guān)于OGNL和ValueStack描述錯誤的是()。

A.由于值棧存儲在request中,所以值棧和request作用域的生命周期是相同的
B.使用OGNL訪問對象屬性時,會按照從頂部到底部的順序查找
C.當ValueStack中存放多個對象時,下面對象的屬性會覆蓋上面對象中的同名屬性
D.Struts 2會將Action的實例保存在Stack Context中而非ValueStack中

3.多項選擇題在Struts 2的應用中,要請求一個資源,其URL為:http://…/myaction/dologin.action,并且要訪問其Action中的login()方法,下面選項對其配置不正確的是()。

A.<struts><package name="default"namespace="/myaction"extends="struts-default"><action name="dologin!login"class="……"></action></package></struts>
B.<struts><package name="default"namespace="/myaction"extends="struts-default"><action name="dologin"class="……"method="login"></action></package></struts>
C.<struts><package name="default"namespace="/myaction"extends="struts-default"><action name="do*"class="……"method="{1}"></action></package></struts>
D.<struts><package name="default"namespace="/myaction"extends="struts-default"><action name="dologin"class="……"></action></package></struts>

4.多項選擇題下列自定義攔截器代碼語法正確的是()。

A.public class MyInterceptor implements Interceptor {public String intercept(ActionInvocation invocation)throws Exception {…}}
B.public class MyInterceptor extends AbstractInterceptor {public String intercept(ActionInvocation invocation)throws Exception {…}}
C.public class MyInterceptor implements Interceptor {public void init(){…}public String intercept(ActionInvocation invocation)throws Exception {…}}
D.public class MyInterceptor extends AbstractInterceptor {public void init(){…}public String intercept(ActionInvocation invocation)throws Exception {…}}

5.多項選擇題在Struts 2框架中訪問Servlet API對象描述錯誤的是()。

A.ServletActionContext和ActionContext都有g(shù)etRequest()方法,都返回HttpServletRequest對象ServletActionContext沒有g(shù)etRequest()方法
B.ServletActionContext和ActionContext訪問Servlet API時,都無需直接調(diào)用原始Servlet API)
C.Action可以實現(xiàn)特定的接口,由Struts 2框架向Action注入Servlet API對象,這種編程思想稱為IoC
D.ActionContext類沒有封裝所有Servlet API的訪問方法,所以有時也需要使用ServletActionContext