JSP(Java Server Pages)

指令

  • 作用
    用于配置 JSP 页面,导入资源文件
  • 格式
    <%@ 指令名称 属性名1=属性值1 属性名2=属性值2 ... %>
  • 分类
    • Page
      配置页面的
      • contentType:等同于response.setcontentType()
        设置相应题的mime类型及<mark>字符集</mark>
        设置当前jsp页面的<mark>编码</mark>
      • import:导包
      • erroPage:当前页面发生异常后,会自动转跳到指定的错误页面
      • isErrorPage:标识当前也是是否是错误页面。
        • true:是,可以使用内置对象 exception
        • false:否。<mark>默认值</mark>
    • include
      页面包含的。导入其他页面,如导入top.jsp页面
      • <%include file="top.jsp"%>
    • taglib
      导入资源
      • <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
      • prefix:前缀,自定义的

注释

  • html注释:
    <!-- -->:只能注释html代码片段
  • jsp注释:推荐使用
    <%-- --%>:可以注释所有

内置对象( <mstyle mathcolor="&#35;f01"> </mstyle> \color{#f01}{重要!}

  • 在jsp页面中不需要创建,直接使用的对象
  • 一共有9个
	变量名			真实类型					作用
	pageContext		PageContext				当前页面共享数据,还可以获取其他八个内置对象
	request			HttpServletRequest		一次请求访问的多个资源(转发)
	session			HttpSession				一次对话的多个请求
	application		ServletComtext			所有用户间共享数据
	response		HttpServletResponse		响应对象
	page			Object					当前页面(Servlet)的对象 this
	out				JspWriter				输出对象,数据输出到页面上
	config			ServletConfig			Servlet的配置对象
	exception		Throwable				异常对象