网友您好, 请在下方输入框内输入要搜索的题目:

题目内容 (请给出正确答案)

A JSP page needs to set the property of a given JavaBean to a value that is calculated with the JSP page. Which three jsp:setProperty attributes must be used to perform this initialization?()

  • A、Id
  • B、Val
  • C、Name
  • D、Param
  • E、Value
  • F、Property

参考答案

更多 “ A JSP page needs to set the property of a given JavaBean to a value that is calculated with the JSP page. Which three jsp:setProperty attributes must be used to perform this initialization?()A、IdB、ValC、NameD、ParamE、ValueF、Property” 相关考题
考题 在J2EE中,关于JSP文件中的page指令在JSP文件中出现的位置和次数,正确的是()。 A.page指令可以在JSP中的任何地方,以任何顺序出现B.一个JSP文件可以有任意多个page指令C.一个JSP文件只能有一个page指令D.在整个JSP文件中,虽然可以有多个page指令,但是任何属性/值对只能出现一次

考题 Page指令用于定义JSP文件中的全局属性,下列关于该指令用法的描述不正确的是:()A、%@ page %%@ page %作用于整个JSP页面B、可以在一个页面中使用多个%@ page %%@ page %指令C、为增强程序的可读性,建议将%@ page %%@ page %指令放在JSP文件的开头,但不是必须的D、%@ page %%@ page %指令中的属性只能出现一次

考题 在JSP页面中,正确引入JavaBean的是()  A、%jsp: useBean id =”myBean” scope =”page” class=”pkg.MyBean” %  B、jsp: useBean name=”myBean” scope =”page” class=”pkg.MyBean”   C、jsp: useBean id =”myBean” scope =”page” class=”pkg.MyBean” / D、jsp: useBean name=”myBean” scope =”page” class=”pkg.MyBean” /

考题 当在JSP文件中要使用到Vector对象时,应在JSP文件中加入以下哪个语句?()A、〈jsp:include file=”java.util.*” /〉B、〈jsp:include page=”java.util.*” /〉C、〈%@ page import=”java.util.*” %〉D、〈%@ page include=”java.util.*” %〉

考题 JSP中JavaBean是通过指令标签()来访问的。A、〈%@ page%〉B、〈jsp:useBean〉C、〈jsp:setProperty〉D、〈jsp:getProperty〉

考题 要设置某个JSP页面为错误处理页面,以下page指令正确的是()。A、〈%@ page errorPage="true"%〉B、〈%@ page isErrorPage="true"%〉C、〈%@ page extends="javax.servlet.jsp.JspErrorPage"%〉D、〈%@ page info="error"%〉

考题 A JSP page needs to instantiate a JavaBean to be used by only that page. Which two jsp:useBean attributes must be used to access this attribute in the JSP page?()A、 idB、 typeC、 nameD、 classE、 scopeF、 create

考题 A JSP page needs to perform some operations before servicing the first request. Where can this be done?()A、 within a method called jspInitB、 within the page directive of the JSP pageC、 within a scriptlet at the top of the JSP pageD、 within the  XML element

考题 Which JSP standard action can be used to import content from a resource called foo.jsp?()A、jsp:import file=’foo.jsp’ /B、jsp:import page=’foo.jsp’ /C、jsp:include page=’foo.jsp’ /D、jsp:include file=’foo.jsp’ /

考题 Which three occur during JSP page translation?()A、 The jspInit method is called.B、 The JSP page implementation class is created.C、 The JSP page implementation class is compiled.D、 The JSP page is validated for syntatic correctness.E、 The associated tag files are validated for syntatic correctness.

考题 在J2EE中,关于JSP文件中的page指令在JSP文件中出现的位置和次数,正确的是()。 A、page指令可以在JSP中的任何地方,以任何顺序出现B、一个JSP文件可以有任意多个page指令C、一个JSP文件只能有一个page指令D、在整个JSP文件中,虽然可以有多个page指令,但是任何属性/值对只能出现一次

考题 You need to create a JavaBean object that is used only within the current JSP page. It must NOT beaccessible to any other page including those that this page might import. Which JSP standard action canaccomplish this goal?()A、jsp:useBean id=’pageBean’ type=’com.example.MyBean’ /B、jsp:useBean id=’pageBean’ class=’com.example.MyBean’ /C、jsp:makeBean id=’pageBean’ type=’com.example.MyBean’ /D、jsp:makeBean id=’pageBean’ class=’com.example.MyBean’ /

考题 You have built your own light-weight templating mechanism. Your servlets, which handle each request,dispatch the request to one of a small set of template JSP pages. Each template JSP controls the layout ofthe view by inserting the header, body, and footer elements into specific locations within the template page.The URLs for these three elements are stored in request scoped variables called, headerURL, bodyURL,and footerURL, respectively. These attribute names are never used for other purposes. Which JSP codesnippet should be used in the template JSP to insert the JSP content for the body of the page?()A、jsp:insert page=’${bodyURL}’ /B、jsp:insert file=’${bodyURL}’ /C、jsp:include page=’${bodyURL}’ /D、jsp:include file=’${bodyURL}’ /E、jsp:insert page=’%= bodyURL %’ /

考题 You are building your own layout mechanism by including dynamic content for the page’s header and footersections. The footer is always static, but the header generates the  tag that requires the page name tobe specified dynamically when the header is imported. Which JSP code snippet performs the import of theheader content?() titleA、jsp:include page=’/WEB-INF/jsp/header.jsp’jsp:param name=’pageName’ value=’Welcome Page’ / /jsp:includeB、jsp:import page=’/WEB-INF/jsp/header.jsp’jsp:param name=’pageName’ value=’Welcome Page’ / /jsp:importC、jsp:include page=’/WEB-INF/jsp/header.jsp’jsp:attribute name=’pageName’ value=’Welcome Page’ / . /jsp:includeD、jsp:import page=’/WEB-INF/jsp/header.jsp’. jsp:attribute name=’pageName’ value=’Welcome Page’ / . /jsp:import

考题 单选题要设置某个JSP页面为错误处理页面,以下page指令正确的是()。A 〈%@ page errorPage=true%〉B 〈%@ page isErrorPage=true%〉C 〈%@ page extends=javax.servlet.jsp.JspErrorPage%〉D 〈%@ page info=error%〉

考题 多选题A session-scoped attribute is stored by a servlet, and then that servlet forwards to a JSP page. Which threejsp:useBean attributes must be used to access this attribute in the JSP page?()AidBnameCbeanDtypeEscope

考题 单选题A JSP page needs to perform some operations before servicing the first request. Where can this be done?()A  within a method called jspInitB  within the page directive of the JSP pageC  within a scriptlet at the top of the JSP pageD  within the  XML element

考题 单选题Which JSP standard action can be used to import content from a resource called foo.jsp?()A jsp:import file=’foo.jsp’ /B jsp:import page=’foo.jsp’ /C jsp:include page=’foo.jsp’ /D jsp:include file=’foo.jsp’ /

考题 多选题A JSP page needs to instantiate a JavaBean to be used by only that page. Which two jsp:useBean attributes must be used to access this attribute in the JSP page?()AidBtypeCnameDclassEscopeFcreate

考题 单选题Which JSTL code snippet can be used to import content from another web resource?()A c:import url=foo.jsp/B c:import page=foo.jsp/C c:include url=foo.jsp/D c:include page=foo.jsp/

考题 单选题Page指令用于定义JSP文件中的全局属性,下列关于该指令用法的描述不正确的是:()A %@ page %%@ page %作用于整个JSP页面B 可以在一个页面中使用多个%@ page %%@ page %指令C 为增强程序的可读性,建议将%@ page %%@ page %指令放在JSP文件的开头,但不是必须的D %@ page %%@ page %指令中的属性只能出现一次

考题 单选题You are building your own layout mechanism by including dynamic content for the page’s header and footersections. The footer is always static, but the header generates the  tag that requires the page name tobe specified dynamically when the header is imported. Which JSP code snippet performs the import of theheader content?()A jsp:include page=’/WEB-INF/jsp/header.jsp’jsp:param name=’pageName’ value=’Welcome Page’ / /jsp:includeB jsp:import page=’/WEB-INF/jsp/header.jsp’jsp:param name=’pageName’ value=’Welcome Page’ / /jsp:importC jsp:include page=’/WEB-INF/jsp/header.jsp’jsp:attribute name=’pageName’ value=’Welcome Page’ / . /jsp:includeD jsp:import page=’/WEB-INF/jsp/header.jsp’. jsp:attribute name=’pageName’ value=’Welcome Page’ / . /jsp:import

考题 单选题当在JSP文件中要使用到Vector对象时,应在JSP文件中加入以下哪个语句?()A 〈jsp:include file=”java.util.*” /〉B 〈jsp:include page=”java.util.*” /〉C 〈%@ page import=”java.util.*” %〉D 〈%@ page include=”java.util.*” %〉

考题 多选题Which three occur during JSP page translation?()AThe jspInit method is called.BThe JSP page implementation class is created.CThe JSP page implementation class is compiled.DThe JSP page is validated for syntatic correctness.EThe associated tag files are validated for syntatic correctness.

考题 单选题Your web application views all have the same header, which includes the  tag in the  elementof the rendered HTML. You have decided to remove this redundant HTML code from your JSPs and put itinto a single JSP called /WEB-INF/jsp/header.jsp. However, the title of each page is unique, so you havedecided to use a variable called pageTitle to parameterize this in the header JSP, like this: 10.${param.pageTitle} Which JSP code snippet should you use in your main view JSPs to insert the header and pass thepageTitle variable?()A jsp:insert page=’/WEB-INF/jsp/header.jsp’. ${pageTitle=’Welcome Page’}. /jsp:insertB jsp:include page=’/WEB-INF/jsp/header.jsp’. ${pageTitle=’Welcome Page’}. /jsp:includeC jsp:include file=’/WEB-INF/jsp/header.jsp’. ${pageTitle=’Welcome Page’}. /jsp:includeD jsp:insert page=’/WEB-INF/jsp/header.jsp’. jsp:param name=’pageTitle’ value=’Welcome Page’ / . /jsp:insertE jsp:include page=’/WEB-INF/jsp/header.jsp’. jsp:param name=’pageTitle’ value=’Welcome Page’ / . /jsp:include

考题 多选题A JSP page needs to set the property of a given JavaBean to a value that is calculated with the JSP page. Which three jsp:setProperty attributes must be used to perform this initialization?()AIdBValCNameDParamEValueFProperty

考题 多选题A JSP page needs to instantiate a JavaBean to be used by only that page.  Which two jsp:useBeanattributes must be used to access this attribute in the JSP page?()AIdBTypeCNameDClassEYscope