如果是整个应用程序共享的数据,则适合放在()中成为属性。
A. ServletConfig
B. ServletContext
C. ServletRequest
D. Session
HttpServlet定义在( )之中。
A. javax.servlet
B. java.http
C. javax.servlet.http
D. javax.http
在web.xml中预先对Servlet进行初始化设置的代码如下:myWordhello
A. String myWord=getInit("myWorld");
B. String myWord=getInit("myWord");
C. String myWord=getInitParameter("hello");
D. String myWord=getInitParameter("myWord");
在Servlet中,HttpServletResponse的( )方法用来把一个HTTP请求重定向到另外的URL。
A. sendURL()
B. redirectURL()
C. sendRedirect()
D. redirectResponse()