阿摩線上測驗 登入

試題詳解

試卷:無年度 - Java EE 6 Web Component Developer Certified Expert Exam:1z0-899(51-100)#84004 | 科目:OCE

試卷資訊

試卷名稱:無年度 - Java EE 6 Web Component Developer Certified Expert Exam:1z0-899(51-100)#84004

科目:OCE

Explanation Note: * WEB-INF is the folder just under the root of a WAR that holds information that you don't want to be accessible to a client via a URL request. Specifically, it holds the web.xml, classes, and lib directories, but you can put anything you want to hide from the client there. * META-INF is what discriminates a JAR file from a plain ZIP file. It holds the manifest file and may hold other deployment information as needed. 
 81 When using Servlet asynchronous API if you want to dispatch the request back to a particular url -"/url" within the same Servlet Context which of the following API would you use?
(A) ASyncContext.dispatch();
(B) AsyncContext.dispatch("/url");
(C) AsyncContext.dispatch(servletContext, "/url");
(D) AsyncContext.start(runnable);
(E) RequestDispatcher.fotward("/url"); F. RequestDispatcher.forward(servletContext, "/url"); G. RequestDispatcher.include("/url");
正確答案:登入後查看