在JSP页面中,要在请求中使用asset.model包中的Account类(它是一个javaBean),则加载此javabean,以下写法正确的是( )
查看答案
如果tomcat服务器的IP地址为168.67.18.220,端口设置为80,其上有一个名为exam的web服务目录,其下有子目录jsp/view/,在此子目录之下有文件index.jsp,请问如何在浏览器上请求此页面?( )
A. http://localhost:80/webContent/exam/jsp/view/index.jsp
B. http://168.67.18.220:80/exam/jsp/view/index.jsp
C. http://168.67.18.220/webContent/exam/jsp/view/index.jsp
D. http://localhost/exam/index.jsp
假设在myServlet应用中有一个MyServlet类,在web文件中对其进行如下配置 myservlethaut.servlet.MyServletmyservlet/welcome 下列可以访问到Servlet是( )
A. http://localhost:8080/MyServlet
B. http://localhost:8080/mservlet
C. http://localhost:8080/haut/servlet/MyServlet
D. http://localhost:8080/myServlet/welcome
Servlet的初始化方法init(),在servlet的生命周期中执行的次数( )
A. 0次
B. 仅1次
C. 每一个请求,执行一次
D. 每一个会话,执行一次
哪个对象提供了在一个web服务程序之中多个客户之间共享数据的功能。
A. pageContext
B. request
C. session
D. application