多項(xiàng)選擇題以下關(guān)于OGNL和ValueStack描述錯(cuò)誤的是()。

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


您可能感興趣的試卷

你可能感興趣的試題

1.多項(xiàng)選擇題在Struts 2的應(yīng)用中,要請(qǐng)求一個(gè)資源,其URL為:http://…/myaction/dologin.action,并且要訪(fǎng)問(wèn)其Action中的login()方法,下面選項(xiàng)對(duì)其配置不正確的是()。

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>

2.多項(xiàng)選擇題下列自定義攔截器代碼語(yǔ)法正確的是()。

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 {…}}

3.多項(xiàng)選擇題在Struts 2框架中訪(fǎng)問(wèn)Servlet API對(duì)象描述錯(cuò)誤的是()。

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

4.多項(xiàng)選擇題在使用Struts 2的應(yīng)用中,實(shí)現(xiàn)服務(wù)器端返回Ajax數(shù)據(jù)的錯(cuò)誤選項(xiàng)是()。

A.指定Struts 2原有的stream類(lèi)型結(jié)果集
B.指定Struts 2原有的redirect類(lèi)型結(jié)果集
C.使用第三方j(luò)ar包,實(shí)現(xiàn)Struts 2的json類(lèi)型結(jié)果集
D.使用Struts 2原有的despatcher類(lèi)型結(jié)果集

5.多項(xiàng)選擇題下列選項(xiàng)中關(guān)于XMLHttpRequest對(duì)象的說(shuō)法錯(cuò)誤的是()。

A.XMLHttpRequest對(duì)象是Ajax技術(shù)的核心,它的作用是可以發(fā)送異步請(qǐng)求到服務(wù)器端
B.status屬性的作用可以返回當(dāng)前請(qǐng)求的就緒狀態(tài),其常用值為:0、1、2、3、4
C.readyState屬性的作用可以返回當(dāng)前請(qǐng)求的HTTP狀態(tài)碼,其常用值404表示找不到訪(fǎng)問(wèn)對(duì)象
D.當(dāng)就緒狀態(tài)是4且狀態(tài)碼是200時(shí),方可處理服務(wù)器數(shù)據(jù)