ExplanationNote:* WEB-INF is the folder just under the root of a WAR that holds information that you don't want to beaccessible 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 mayhold other deployment information as needed.  81 When using Servlet asynchronous API if you want to dispatch the request back to a particularurl -"/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");

參考答案

無參考答案

內容推薦

內容推薦