下面选项中,处理以.jsp为扩展名的URL访问请求的是()
A. JspServlet
B. HttpJspBase
C. JspSourceDependent
D. HttpServlet
在项目test的webroot目录下新建一个index.jsp页面,页面中使用动作元素跳转到项目书城展示的首页(书城首页index.jsp位于项目test的webroot目录的client文件夹下),主要代码如下:webroot/index.jsp当使用浏览器访问”http://localhost:8080/test/index.jsp”时会出现什么结果()
A. 浏览器显示client/inde.jsp页面信息,地址栏路径不变
B. 浏览器显示client/inde.jsp页面信息,同时地址栏变为:http://localhost:8080/test/client/index.jsp
C. 浏览器页面出现404错误信息,同时地址栏不变
D. 浏览器显示index.jsp页面的信息:webroot/index.jsp,同时地址栏不变。
使用EL的pageContext对象,可以获取到的JSP对象是()
A. page
B. pageScope
C. request
D. session
hello.jsp文件的路径是WebRoot/hello/hello.jsp,则在应用helloapp中,浏览器端访问hello.jsp的URL是 ()
A. http://localhost:8080/hello.jsp
B. http://localhost:8080/helloapp/hello.jsp
C. http://localhost:8080/helloapp/hello/hello.jsp
D. http://localhost:8080/hello/hello.jsp