單項(xiàng)選擇題下列選項(xiàng)中不屬于Struts 2框架配置文件的是()。

A.struts.xml
B.struts-default.xml
C.struts-plugin.xml
D.struts-web.xml


您可能感興趣的試卷

你可能感興趣的試題

2.單項(xiàng)選擇題

假設(shè)在Struts 2的struts.xml中有如下攔截器配置:

下列說法不正確的是()。

A.該攔截器執(zhí)行時(shí),不會(huì)調(diào)用Struts2中的默認(rèn)攔截器棧defaultStack
B.攔截器棧myStack的定義有誤,應(yīng)該使用< interceptor-stacks>標(biāo)簽
C.< default-interceptor-ref>標(biāo)簽用來定義默認(rèn)攔截器或攔截器棧的引用
D.< interceptor-stack>標(biāo)簽中可以定義多個(gè)攔截器的引用

3.單項(xiàng)選擇題下列關(guān)于在Struts 2中訪問Servlet API的說法錯(cuò)誤的是()。

A.ActionContext是以解耦合方式訪問Servlet API
B.ServletActionContext和ActionContext都有g(shù)etSession()方法,都返回Map對象
C.ActionContext類只封裝部分Servlet API,有些功能需要原始的Servlet API才能實(shí)現(xiàn),這種情況就需要使用ServletActionContext類
D.Action可以實(shí)現(xiàn)特定的接口,由Struts 2框架向Action注入Servlet API對象

4.單項(xiàng)選擇題在Struts 2應(yīng)用中,能正確處理中文亂碼問題的設(shè)置是()。

A.< constant name="struts.i18n.encoding"value="UTF-8">
B.< constant name="struts.custom.i18.encoding"value="UTF-8">
C.< constant name="struts.custom.i18.resources"value="UTF-8">
D.< constant name="struts.ui.theme"value="UTF-8">

5.單項(xiàng)選擇題

在struts.xml配置文件中有如下代碼:
則下列說法不正確的是()。

A.redirectAction類型可以將請求重定向到Action類
B.${nextAction}用來獲取UserAction類中nextAction屬性的值
C.UserAction類一定要提供nextAction的getter方法
D.${nextAction}配置是錯(cuò)誤的,不能使用EL表達(dá)式確定轉(zhuǎn)發(fā)的Action