多项选择题

A.pageContext.setAttribute("name", theValue)
B.pageContext.setAttribute("name", getSession())
C.pageContext.getRequest().setAttribute("name", theValue)
D.pageContext.getSession().setAttribute("name", theValue)
E.pageContext.setAttribute("name", theValue,PageContext.PAGE_SCOPE)
F.pageContext.setAttribute("name", theValue,PageContext.SESSION_SCOPE)

相关考题

单项选择题 Click the Exhibit button. The resource requested by the RequestDispatcher is available and implemented by the Destination Servlet. What is the result?()

多项选择题 You want to create a filter for your web application and your filter will implement javax.servlet.Filter. Which two statements are true?()

多项选择题 A developer wants a web application to be notified when the application is about to be shut down. Which two actions are necessary to accomplish this goal?()

单项选择题 Your web site has many user-customizable features, for example font and color preferences on web pages.Your IT department has already built a subsystem for user preferences using the Java SE platform’s lang.util.prefs package APIs, and you have been ordered to reuse this subsystem in your web application. Youneed to create an event listener that constructs the preferences factory and stores it in the applicationscope for later use. Furthermore, this factory requires that the URL to a database must be declared in thedeployment descriptor like this: 42. 43.prefsDbURL 44. 45.jdbc:pointbase:server://dbhost:4747/prefsDB 46. 47. Which partial listener class will accomplish this goal?()

单项选择题 Servlet A receives a request that it forwards to servlet B within another web application in the same webcontainer. Servlet A needs to share data with servlet B and that data must not be visible to other servlets inA’s web application. In which object can the data that A shares with B be stored?()

单项选择题 The sl:shoppingList and sl:item tags output a shopping list to the response and are used as follows: 11.<sl:shoppingList> 12.<sl:item name="Bread" /> 13.<sl:item name="Milk" /> 14.<sl:item name="Eggs" /> 15.</sl:shoppingList> The tag handler for sl:shoppingList is ShoppingListTag and the tag handler for sl:item is ItemSimpleTag.ShoppingListTag extends BodyTagSupport and ItemSimpleTag extends SimpleTagSupport.Which is true?()

单项选择题 Given the JSP code: <% request.setAttribute("foo", "bar"); %>and the Classic tag handler code: 5. public int doStartTag() throws JspException { 6. // insert code here 7. // return int 8. } Assume there are no other "foo" attributes in the web application. Which invocation on the pageContextobject,inserted at line 6,assigns "bar" to the variable x?()

单项选择题 You are building a web application that will be used throughout the European Union; therefore, it has significant internationalization requirements. You have been tasked to create a custom tag that generates amessage using the java.text.MessageFormat class. The tag will take the resourceKey attribute and a variable number of argument attributes with the format, arg. Here is an example use of this tag and itsoutput:  generates: The disk "MyDisk"contains 1247 file(s). Which Simple tag class definition accomplishes this goal of handling a variable number of tag attributes?()

单项选择题 Click the Exhibit button. The attribute "name" has a value of "Foo," What is the result if this tag handler’s tag is invoked?()

单项选择题 You have created a JSP that includes instance variables and a great deal of scriptlet code. Unfortunately,after extensive load testing, you have discovered several race conditions in your JSP scriptlet code. To fixthese problems would require significant recoding, but you are already behind schedule. Which JSP codesnippet can you use to resolve these concurrency problems?()

单项选择题 WhichimplicitobjectisusedinaJSPpagetoretrievevaluesassociatedwithentriesinthedeploymentdescriptor?()

单项选择题 You have built a collection of custom tags for your web application. The TLD file is located in the file: /WEB-INF/myTags.xml. You refer to these tags in your JSPs using the symbolic name: myTags. Which deployment descriptor element must you use to make this link between the symbolic name and the TLD filename?()

多项选择题 Given the JSP code: 10.<html> 11.<body> 12.<jsp:useBean id=’customer’ class=’com.example.Customer’ /> 13.Hello, ${customer.title} ${customer.lastName}, welcome 14.to Squeaky Beans, Inc. 15.</body>16. </html> Which three types of JSP code are used?()

单项选择题 To take advantage of the capabilities of modern browsers that use web standards, such as XHTML andCSS, your web application is being converted from simple JSP pages to JSP Document format. However,one of your JSPs, /scripts/screenFunctions.jsp, generates a JavaScript file. This file is included in severalweb forms to create screen-specific validation functions and are included in these pages with the followingstatement: 10.<head> 11.<script src=/scripts/screenFunctions.jsp 12.language=javascript 13.type=application/javascript> </script> 14.</head> 15.<!-- body of the web form --> Which JSP code snippet declares that this JSP Document is a JavaScript file?()