单选题Which path is required to be present within a WAR file?()A/classesB/index.htmlC/MANIFEST-INFD/WEB-INF/web.xmlE/WEB-INF/classes

单选题
Which path is required to be present within a WAR file?()
A

/classes

B

/index.html

C

/MANIFEST-INF

D

/WEB-INF/web.xml

E

/WEB-INF/classes


参考解析

解析: 暂无解析

相关考题:

JavaBean文件应保存在()。 A、Web服务器的发布目录下B、WEB-INF\classes下C、WEB-INF下D、webapps下

WhichpathisrequiredtobepresentwithinaWARfile?() A./classesB./index.htmlC./MANIFEST-INFD./WEB-INF/web.xmlE./WEB-INF/classesF./WEB-INF/index.htmlG./META-INF/index.xml

在下面哪个web应用目录中可以放置所需要的class文件?()  A、 /WEB-INF/libB、 /META-INF/libC、 /classes 放置已经编译的类文件D、 /WEB-INF/classes

Given an Http Session session. A Servlet Request request. And a Servlet Context context. Which retrieves a URL to /WEB INF/ my config.xml within a web application?()A、 session.get Resource (“/WEB-INF/myconfig.xml”)B、 request.get Resource (“/WEB-INF/myconfig.xml”)C、 context.get Resource (“/WEB-INF/myconfig.xml”)D、 get Class ().get Resource (“/WEB-INF/myconfig.xml”)

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

UAP项目与BPM集成时需要修改BPM部署文件的一些配置文件,以下不属于其中需要修改的文件是()A、default.war/WEB-INF/_srv/config/uddi-config.xmlB、default.war/WEB-INF/_srv/config/user-config.xmlC、default.war/WEB-INF/weB.xmlD、default.war/WEB-INF/_srv/config/user-local-config.xml

You are developing several tag libraries that will be sold for development of third-party web applications.You are about to publish the first three libraries as JAR files: container-tags.jar,advanced-html-form-tags.jar, and basic-html-form-tags.jar. Which two techniques are appropriate for packaging the TLD files forthese tag libraries?()A、The TLD must be located within the WEB-INF directory of the JAR file.B、The TLD must be located within the META-INF directory of the JAR file.C、The TLD must be located within the META-INF/tld/ directory of the JAR file.D、The TLD must be located within a subdirectory of WEB-INF directory of the JAR file.E、The TLD must be located within a subdirectory of META-INF directory of the JAR file.

假设在helloapp应用中有一个Javabean文件HelloServlet,它位于org.javathinker包下,那么这个bean的class文件应该放在什么目录下? ()A、helloapp/HelloServlet.classB、helloapp/WEB-INF/HelloServlet.classC、helloapp/WEB-INF/classes/HelloServlet.classD、helloapp/WEB-INF/classes/org/javathinker/HelloServlet.class

Which path is required to be present within a WAR file?()A、/classesB、/index.htmlC、/MANIFEST-INFD、/WEB-INF/web.xmlE、/WEB-INF/classes

Which path, relative to a web application’s root, identifies the web application’s deployment descriptor?()A、 /conf/web.xmlB、 /WEB-INF/web.xmlC、 /conf/server.xmlD、 /META-INF/web.xmlE、 /WEB-INF/rules.xmlF、 /META-INF/server. Xml

You are building JSP pages that have a set of menus that are visible based on a user’s security role. Thesemenus are hand-crafted by your web design team; for example, the SalesManager role has a menu in thefile /WEB-INF/html/sales-mgr-menu.html. Which JSP code snippet should be used to make this menuvisible to the user?()A、% if ( request.isUserInRole("SalesManager") ) { % %@ include file=’/WEB-INF/html/sales-mgr-menu.html’ % % } %B、jsp:if test=’request.isUserInRole("SalesManager")’ %@ include file=’/WEB-INF/html/sales-mgr-menu.html’ % /jsp:ifC、% if ( request.isUserInRole("SalesManager") ) { % . jsp:include file=’/WEB-INF/html/sales-mgr-menu.html’ / . % } %D、jsp:if test=’request.isUserInRole("SalesManager")’ jsp:include file=’/WEB-INF/html/sales-mgr-menu.html’ / /jsp:if

Given an HttpSession session,a ServletRequest request,and a ServletContext context,which retrieves aURL to /WEB-INF/myconfig.xml within a web application?()A、session.getResource("/WEB-INF/myconfig.xml")B、request.getResource("/WEB-INF/myconfig.xml")C、context.getResource("/WEB-INF/myconfig.xml")D、getClass().getResource("/WEB-INF/myconfig.xml")

In which three directories, relative to a web application’s root, may a tag library descriptor file reside when deployed directly into a web application?()A、 /WEB-INFB、 /META-INFC、 /WEB-INF/tldsD、 /META-INF/tldsE、 WEB-INF/resourcesF、 /META-INF/resources

In which two web application directories can dependent classes and libraries be located? ()A、 /WEB-INF/lib as a JAR fileB、 /META-INF/lib as a JAR fileC、 /classes as compiled class filesD、 /WEB-INF/lib as compiled class filesE、 /WEB-INF/classes as compiled class filesF、 /META-INF/classes as compiled class files

Which path is required to be present within a WAR file?()  A、 /classesB、 /index.htmlC、 /MANIFEST-INFD、 /WEB-INF/web.xmlE、 /WEB-INF/classesF、 /WEB-INF/index.htmlG、 /META-INF/index.xml

集成统一权限时不需要配置以下哪个文件()A、UALogin/WEB-INF/classes/cfg/userauth.propertiesB、isc_services_v1_6.war/WEB-INF/config/prop-configC、UALogin/WEB-INF/classes/cfg/objFactoryNoEjb_ORACLE.xmlD、isc_services/WEB-INF/config/bean-config/bean-core-config.xml

单选题Which path, relative to a web application’s root, identifies the web application’s deployment descriptor?()A /conf/web.xmlB /WEB-INF/web.xmlC /conf/server.xmlD /META-INF/web.xmlE /WEB-INF/rules.xmlF /META-INF/server. Xml

多选题You are developing several tag libraries that will be sold for development of third-party web applications.You are about to publish the first three libraries as JAR files: container-tags.jar,advanced-html-form-tags.jar, and basic-html-form-tags.jar. Which two techniques are appropriate for packaging the TLD files forthese tag libraries?()AThe TLD must be located within the WEB-INF directory of the JAR file.BThe TLD must be located within the META-INF directory of the JAR file.CThe TLD must be located within the META-INF/tld/ directory of the JAR file.DThe TLD must be located within a subdirectory of WEB-INF directory of the JAR file.EThe TLD must be located within a subdirectory of META-INF directory of the JAR file.

单选题Given an HttpSession session,a ServletRequest request,and a ServletContext context,which retrieves aURL to /WEB-INF/myconfig.xml within a web application?()Asession.getResource(/WEB-INF/myconfig.xml)Brequest.getResource(/WEB-INF/myconfig.xml)Ccontext.getResource(/WEB-INF/myconfig.xml)DgetClass().getResource(/WEB-INF/myconfig.xml)

单选题假设在helloapp应用中有一个Javabean文件HelloServlet,它位于org.javathinker包下,那么这个bean的class文件应该放在什么目录下?()Ahelloapp/HelloServlet.classBhelloapp/WEB-INF/HelloServlet.classChelloapp/WEB-INF/classes/HelloServlet.classDhelloapp/WEB-INF/classes/org/javathinker/HelloServlet.class

单选题UAP项目与BPM集成时需要修改BPM部署文件的一些配置文件,以下不属于其中需要修改的文件是()Adefault.war/WEB-INF/_srv/config/uddi-config.xmlBdefault.war/WEB-INF/_srv/config/user-config.xmlCdefault.war/WEB-INF/weB.xmlDdefault.war/WEB-INF/_srv/config/user-local-config.xml

单选题集成统一权限时不需要配置以下哪个文件()AUALogin/WEB-INF/classes/cfg/userauth.propertiesBisc_services_v1_6.war/WEB-INF/config/prop-configCUALogin/WEB-INF/classes/cfg/objFactoryNoEjb_ORACLE.xmlDisc_services/WEB-INF/config/bean-config/bean-core-config.xml

多选题In which two web application directories can dependent classes and libraries be located? ()A/WEB-INF/lib as a JAR fileB/META-INF/lib as a JAR fileC/classes as compiled class filesD/WEB-INF/lib as compiled class filesE/WEB-INF/classes as compiled class filesF/META-INF/classes as compiled class files

单选题You are building JSP pages that have a set of menus that are visible based on a user’s security role. Thesemenus are hand-crafted by your web design team; for example, the SalesManager role has a menu in thefile /WEB-INF/html/sales-mgr-menu.html. Which JSP code snippet should be used to make this menuvisible to the user?()A% if ( request.isUserInRole(SalesManager) ) { % %@ include file=’/WEB-INF/html/sales-mgr-menu.html’ % % } %Bjsp:if test=’request.isUserInRole(SalesManager)’ %@ include file=’/WEB-INF/html/sales-mgr-menu.html’ % /jsp:ifC% if ( request.isUserInRole(SalesManager) ) { % . jsp:include file=’/WEB-INF/html/sales-mgr-menu.html’ / . % } %Djsp:if test=’request.isUserInRole(SalesManager)’ jsp:include file=’/WEB-INF/html/sales-mgr-menu.html’ / /jsp:if

单选题Which path is required to be present within a WAR file?()A /classesB /index.htmlC /MANIFEST-INFD /WEB-INF/web.xmlE /WEB-INF/classesF /WEB-INF/index.htmlG /META-INF/index.xml

单选题Given an Http Session session. A Servlet Request request. And a Servlet Context context. Which retrieves a URL to /WEB INF/ my config.xml within a web application?()A session.get Resource (“/WEB-INF/myconfig.xml”)B request.get Resource (“/WEB-INF/myconfig.xml”)C context.get Resource (“/WEB-INF/myconfig.xml”)D get Class ().get Resource (“/WEB-INF/myconfig.xml”)

单选题Which path is required to be present within a WAR file?()A/classesB/index.htmlC/MANIFEST-INFD/WEB-INF/web.xmlE/WEB-INF/classes

单选题在下面哪个web应用目录中可以放置所需要的class文件?()A /WEB-INF/libB /META-INF/libC /classes 放置已经编译的类文件D /WEB-INF/classes