能够保留请求作用域中数据的转向方式是()。
第1题:
以太网中ARP报文分为ARP Request和ARP Response,ARP Request以()方式传送,ARP Response以()方式传送。
第2题:
下列选项中能在JSP页面中实现转向的是()
第3题:
Your IT department is building a lightweight Front Controller servlet that invokes an application logic objectwith the interface: public interface ApplicationController {public String invoke(HttpServletRequest request)} The return value of this method indicates a symbolic name of the next view. From this name, the FrontController servlet looks up the JSP URL in a configuration table. This URL might be an absolute path or apath relative to the current request. Next, the Front Controller servlet must send the request to this JSP togenerate the view. Assume that the servlet variable request is assigned the current HttpServletRequestobject and the variable context is assigned the webapp’s ServletContext. Which code snippet of the FrontController servlet accomplishes this goal?()
第4题:
在JSP中需要将1.jsp的请求数据通过2.jsp转发给3.jsp,应该在2.jsp中采用()方式实现。
第5题:
在J2EE中,重定向到另一个页面,以下()语句是正确的。
第6题:
On the Company wireless LAN, A client is searching for an access point (AP). What is the correct process order that this Company client and access point goes through in order to create a connection?()
第7题:
Given a Filter class definition with this method: 21.public void doFilter(ServletRequest request, 22.ServletResponse response, 23.FilterChain chain) 24.throws ServletException, IOException { 25.// insert code here26. } Which should you insert at line 25 to properly invoke the next filter in the chain,or the target servlet if thereare no more filters?()
第8题:
response.forward()
response.sendRedirect()
session.getRequestDispatcher().forward(request,response)
request.getRequestDispatcher().forward(request,response)
第9题:
REQUEST_URI
javax.servlet.forward.request_uri
javax.servlet.forward.REQUEST_URI
javax.servlet.request_dispatcher.request_uri
javax.servlet.request_dispatcher.REQUEST_URI
第10题:
probe request/response, authentication request/response, association request/response
association request/response, authentication request/response, probe request/response
probe request/response, association request/response, authentication request/response
association request/response, probe request/response, authentication request/response
第11题:
request.getRequestDispatcher().forward(request,response)
doFilter()
doPut()
doChain()
第12题:
〈%request.sendRedirect(“3.jsp”)%〉
〈%response.sendRedirect(“3.jsp”)%〉
〈%request.getRequestDispatcher(“3.jsp”).forward(request,response)%〉
〈%response.sentRedirect(“32.jsp”).forward(request,response)%〉
第13题:
On the wireless LAN, A client is searching for an access point (AP). What is the correct processorder that this client and access point goes through in order to create a connection?()
第14题:
Servlet A forwarded a request to servlet B using the forward method of RequestDispatcher. What attributein B’s request object contains the URI of the original request received by servlet A?()
第15题:
写入和读取cookie的方法是()
第16题:
过滤器使用()才能继续传递到下一个过滤器。
第17题:
阅读下面代码片段: RequestDispatcher dispatcher=request.getRequestDispatcher("a.jsp"); dispatcher.forward(request,response); 关于该段代码的作用,下列叙述哪项是正确的?()
第18题:
A client is searching for an access point (AP). What is the correct process order that the client and access point go through to create a connection?()
第19题:
Which four occur during the processing of a request using Oracle Shared Server?()
第20题:
Response.forward(“/index.jsp”)
Response.sendRedirect(“/index.jsp”)
request.forward(“/index.jsp”)
request. sendRedirect (“/index.jsp”)
第21题:
association request/response, probe request/response, authentication request/response
association request/response, authentication request/response, probe request/response
probe request/response, authentication request/response, association request/response
probe request/response, association request/response, authentication request/response
None of the other alternatives apply
第22题:
Dispatcher view=context.getDispatcher(viewURL);view.forward Request(request, response);
Dispatcher view=request.getDispatcher(viewURL);view.forward Request(request, response);
RequestDispatcher view. =context.getRequestDispatcher(viewURL);view.forward(request,response);
RequestDispatcher view=request.getRequestDispatcher(viewURL);view.forward(request, response);
第23题:
chain.forward(request, response);
chain.doFilter(request, response);
request.forward(request, response);
request.doFilter(request, response);