单选题Within a web application deployment descriptor, which maps the com.example.LoginServlet servlet to /utils/LoginServlet?()A AB BC CD D

单选题
Within a web application deployment descriptor, which maps the com.example.LoginServlet servlet to /utils/LoginServlet?()
A

A

B

B

C

C

D

D


参考解析

解析: 暂无解析

相关考题:

Withinawebapplicationdeploymentdescriptor,whichmapsthecom.example.LoginServletservletto/utils/LoginServlet?() A.AB.BC.CD.D

Which two actions protect a resource file from direct HTTP access within a web application?()A、Placing it in the /secure directoryB、Placing it in the /WEB-INF directoryC、Placing it in the /META-INF/secure directoryD、Creating a  element within the deployment descriptor

Which the three are true about servlet filters?()A、 A filter must implement the destroy methodB、 A filter must implement the doFilter methodC、 A servlet may have multiple filters associated with itD、 A servlet that is to have a filter applied to it must implement the javax.servlet.FilterChain  interfaceE、 A filter that is part of a filter chain passes control to the next filter in the chain by invoking the filterChain forward methodF、 For each  element in the web application deployment descriptor, multiple instances of a filter may be created by the web container

Which three are described in the standard web application deployment descriptor?()  A、 session configurationB、 MIME type mappingsC、 context root for the applicationD、 servlet instance pool configurationE、 web container default port bindingsF、 ServletContext initialization parameters

Which three are described in the standard web application deployment descriptor?()A、session configurationB、MIME type mappingsC、context root for the applicationD、servlet instance pool configurationE、web container default port bindingsF、Servlet Context initialization parameters

Which is the true choice about the web container request processing model()?A、 The init method on a filter is called the first time a servlet mapped to that filter is invokedB、 A filter defined for a servlet must always forward control to the next resource in the filter chain.C、 Filters associated with a named servlet are applied in the order they appear in the web application deployment descriptor fileD、 If the init method on a filter throws an UnavailableException, then the container will make no further attempt to execute it

Which element is the parent of the  tag in the web application deployment descriptor? ()A、 web-app B、 filters C、 servlet D、 filter-list

Which three are valid URL mappings to a servlet in a web deployment descriptor?()A、*/*B、*.doC、MyServletD、/MyServletE、/MyServlet/*F、MyServlet/*.jsp

Which the three interfaces need to be declared in the web application deployment descriptor? ()A、 HttpSessionListenerB、 HttpSessionBindingListenerC、 HttpSessionTimedOutListenerD、 HttpSessionAttributeListenerE、 HttpSessionActivationListenerF、 HttpSessionPassivatedListener

Which three are guaranteed to be valid for the  element of a web application deployment descriptor?()A、 FORMB、 DIGESTC、 NORMALD、 ENCRYPTEDE、 CLIENT-CERT

Which element of the web application deployment descriptor defines the servlet class associated with aservlet instance?()A、classbr/B、webappbr/C、servletbr/D、codebasebr/E、servlet-class

Which three web application deployment descriptor elements allow web components to gain references toresources or EJB components?()A、ejb-refB、jdbc-refC、servlet-refD、resource-refE、javamail-refF、resource-env-ref

Which two are valid values for the  element inside a  element ofa web application deployment descriptor?()A、NULLB、SECUREC、INTEGRALD、ENCRYPTEDE、CONFIDENTIAL

Which element, defined as a child of a  element in the web application deployment descriptor, guarantees a servlet will be initialized at the time the application is deployed?() A、 load-on-startup/ B、 load-on-startup1/load-on-startup C、 load-on-startup-1/load-on-startup D、 load-on-startuptrue/load-on-startup

Which is true about the web container request processing model?()A、The init method on a filter is called the first time a servlet mapped to that filter is invoked.B、A filter defined for a servlet must always forward control to the next resource in the filter chain.C、Filters associated with a named servlet are applied in the order they appear in the web application deployment descriptor file.D、If the init method on a filter throws an UnavailableException, then the container will make no further attempt to execute it.

单选题Which element is the parent of the  tag in the web application deployment descriptor? ()A web-app B filters C servlet D filter-list

单选题Which is the true choice about the web container request processing model()?A The init method on a filter is called the first time a servlet mapped to that filter is invokedB A filter defined for a servlet must always forward control to the next resource in the filter chain.C Filters associated with a named servlet are applied in the order they appear in the web application deployment descriptor fileD If the init method on a filter throws an UnavailableException, then the container will make no further attempt to execute it

多选题Which the three interfaces need to be declared in the web application deployment descriptor? ()AHttpSessionListenerBHttpSessionBindingListenerCHttpSessionTimedOutListenerDHttpSessionAttributeListenerEHttpSessionActivationListenerFHttpSessionPassivatedListener

单选题Which is true about the web container request processing model?()AThe init method on a filter is called the first time a servlet mapped to that filter is invoked.BA filter defined for a servlet must always forward control to the next resource in the filter chain.CFilters associated with a named servlet are applied in the order they appear in the web application deployment descriptor file.DIf the init method on a filter throws an UnavailableException, then the container will make no further attempt to execute it.

单选题Which element, defined as a child of a  element in the web application deployment descriptor, guarantees a servlet will be initialized at the time the application is deployed?()A load-on-startup/ B load-on-startup1/load-on-startup C load-on-startup-1/load-on-startup D load-on-startuptrue/load-on-startup

单选题Which element of a web application deployment descriptor  element is required?()Arealm-nameBauth-methodCsecurity-roleDtransport-guaranteeEweb-resource-collection

单选题Which element of the web application deployment descriptor defines the servlet class associated with aservlet instance?()Aclassbr/Bwebappbr/Cservletbr/Dcodebasebr/Eservlet-class

多选题Which thethree are valid URL mappings to a servlet in a web deployment descriptor? ()A*/*B/*.doCmyServletD/MyservletE/MyServlet/*FMyServlet/*.isp

单选题Within the web application deployment descriptor, which defines a valid JNDI environment entry()A AB BC CD D

单选题Which makes the local EJB component accessible to the web components in the web application deployment descriptor?()A AB BC CD D

单选题Within a web application deployment descriptor, which maps the com.example.LoginServlet servlet to /utils/LoginServlet?()A AB BC CD D

单选题Which defines the welcome files in a web application deployment descriptor?()A AB BC CD DE E

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