题目内容

hello.jsp文件的路径是WebContent/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

查看答案
更多问题

阅读下面JSP代码片段: <%@ page language="java" contentType="text/html; charset=UTF-8" buffer=”none” %><% out.println("first line
"); response.getWriter().println("second line
"); %> 上述代码的输出结果是()

A. second line first line
B. first line second line
C. first line
D. second line

在JSP页面中包含如下jsp代码: <% out.print(new java.util.Date().toLocaleString()); %> 则下面说法中,正确的是()

A. 该代码是将信息打印在客户端控制台上
B. 该代码是将信息打印在服务器控制台上
C. 该代码是将信息打印在客户端浏览器上
D. 每次在客户端浏览器上访问此jsp页面,显示时间都是一样的

要想在Tomcat服务器配置jsp文件,则需要在以下哪个目录中配置()

A. Tomcat安装目录\ conf\server.xml
B. Tomcat安装目录\ conf\web.xml
C. Tomcat安装目录\ webapps\web.xml
D. Tomcat安装目录\ conf\context.xml

下列是page指令中的一些属性,其中,用于指定线程是否安全的属性是()

A. session
B. buffer
C. autoFlush
D. isThreadSafe

答案查题题库