题目内容

新建一个index.jsp页面(位于test项目WebContent目录下的jsp文件夹),然后将test项目发布到Tomcat中并启动项目,请问在浏览器上输入下列哪个地址可以正常访问index.jsp页面( )(在本机上并使用默认端口号)()

A. http://localhost/test/index.jsp
B. http://localhost:8080/test/WebContent/index.jsp
C. http://localhost:8080/test/jsp/index.jsp
D. http://localhost:8080/test/index.jsp

查看答案
更多问题

下列选项中,哪个属性可以指明编译JSP文件时所继承的类?()

A. language
B. extends
C. import
D. session

在jsp文件中有如下代码: <%@ page language="java" contentType="text/html; charset=UTF-8" errorPage="error.jsp"%><% int a=1/0; %> 下列关于程序执行结果的描述中,正确的是()

A. 正常显示
B. 出现500错误
C. 转发到error.jsp页面
D. 重定向到eror.jsp页面

访问如下jsp页面将会出现什么输出:() <%@ page session="false"%><% session.setAttribute("name","itcast"); application.setAttribute("name","itheima"); %><%= session.getAttribute(“name”) %>

A. itcast
B. itheima
C. 无输出
D. Jsp不能被正确翻译,访问时服务器报错

下列选项中,哪个是JSP的本质?()

A. JS
B. Servlet
C. Html
D. Css

答案查题题库