编写Servlet代码时,至少需要导入Servlet API 的 包。
A.javax.servlet
B.javax.swing
C.javax.servlet.http
D.java.util
第1题:
SERVLET API 中forward() 与redirect()的区别?
前者仅是容器中控制权的转向,在客户端浏览器地址栏中不会显示出转向后的地址;后者则是完全的跳转,浏览器将会得到跳转的地址,并重新发送请求链接。这样,从浏览器的
地址栏中可以看到跳转后的链接地址。所以,前者更加高效,在前者可以满足需要时,尽量
使用forward()方法,并且,这样也有助于隐藏实际的链接。在有些情况下,比如,需要跳
转到一个其它服务器上的资源,则必须使用
sendRedirect()方法。
第2题:
编写Servlet的doPost方法时,需要抛出异常为()。
第3题:
以下描述JSP与Servlet的关系,正确的有()
第4题:
在编写Servlet时,需要继承()类,在Servlet中声明doGet( )和doPost( )需要()和()类型的两个参数。
第5题:
servlet API由多个包组成,主要包括()。
第6题:
扩展标签使用的是下面的哪个包?()
第7题:
以下关于Java Servlet API说法错误的是()。
第8题:
ServletException,IOException
ServletException,RemoteException
HttpServlet Exception,IOException
HttpServletException,RemoteException
第9题:
class Servlet1 implements javax.servlet.Servlet
class Servlet1 extends javax.servlet.GenericServlet
class Servlet1 extends javax.servlet.http.HttpServlet
class Servlet1 extends javax.servlet.ServletRequest
第10题:
java.sql.*
java.servlet.*
java.util.*
java.lang.*
第11题:
使用ActionContext对象以解耦合的方法访问Servlet API
使用ServletActionContext对象以解耦合的方式访问Servlet API
使用ActionContext对象以耦合的方式访问Servlet API
使用ServletActionContext对象以耦合的方式访问Servlet API
第12题:
继承Servlet
实现HttpRequestServlet
继承HttpServlet
实现HttpRequest
第13题:
JAVA SERVLET API中forward() 与redirect()的区别?
前者仅是容器中控制权的转向,在客户端浏览器地址栏中不会显示出转向后的地址;后者则是完全的跳转,浏览器将会得到跳转的地址,并重新发送请求链接。这样,从浏览器的地址栏中可以看到跳转后的链接地址。所以,前者更加高效,在前者可以满足需要时,尽量使用forward()方法,并且,这样也有助于隐藏实际的链接。在有些情况下,比如,需要跳转到一个其它服务器上的资源,则必须使用sendRedirect()方法。
第14题:
在编写Servlet时需要()。
第15题:
()定义了一个Servlet与Web服务器软件之间的接口。
第16题:
关于客户端、Servlet与Web容器的交互说法错误的是()。
第17题:
以下哪些是会话事件的监听API()。
第18题:
struts2中获取Servlet API的方法正确的是()。
第19题:
J2EE中,HttpSession接口位于()包中。
第20题:
第21题:
javax.servlet
javax.servlet.session
javax.servlet.http.session
javax.servlet.http
第22题:
Manually Invalidate the servlet cache through the Cache Monitor
Configure a Time Based invalidation for the servlet
Call the dynamic cache invalidation API to invalidate the servlet
Manually invalidate the servlet through the Configuration Manager
Use the Commerce Accelerator to remove the invalid servlet
第23题:
javax.servlet.ServletContextListener
javax.Servlet.servletContextAttributeListener
javax.servlet.http.HttpWebSessionListener
javax.servlet.http.HttpSessionBindingListener
第24题:
javax.servlet
javax.servlet.http
javax.servlet.ServletRequest
javax.servlet.ServletResponse