JSP基础总结

JSP:
1.作用:用于配置JSP页面,导入资源文件
格式:
<%@指令名称 属性名1=属性值1 属性名2=属性值2…%>

1.page :配置JSP页面的

contentType:等同于response.setContentType()
1.设置响应体的mime类型以及字符集
2.设置当前JSP页面的编码(只能是高级的IDE才能生效)

import:导包

errorPage:当前页面发生异常后,会自动跳转到指定错误的页面

isErrorPage:标识当前是否是错误页面
true:是,可以使用内置对象exception
false:否,默认值,不可以使用内置对象exception

2.include:页面包含的。导入页面的资源文件
<%@include file=“top.jsp” %>

3.taglib:导入资源
<%@taglib prefix=“hello” uri=“http://java.sun.com/jsp/jstl//core” %>
prefix:前缀,自定义的
2.注释
1.html注释

2.JSP注释
<%----%>注释所有

3.内置对象
一共9个:
变量名 真实类型 作用
pageContext PageContext 当前页面共享数据,还可以获取其他八个内置对象
request HttpServletRequest 一次请求访问的多个资源(转发)
session HttpSession 一次会话的多个请求间
application ServletContext 所有用户共享数据
response HttpServletResponse 响应对象
page Object 当前页面(servlet)的对象 this
out Jspwriter 输出对象,数据输出到页面上
config ServletConfig Servlet的配置对象
exception Throwable 异常对象

创建一个index.jsp

<%@ page import="java.util.List" %>
<%@ page import="java.util.ArrayList" %>
<%@ page contentType="text/html;charset=UTF-8"  errorPage="500.jsp"      language="java" %>
<%@include file="top.jsp" %>
<%--<%@taglib prefix="hello" uri="http://java.sun.com/jsp/jstl//core" %>--%>
<html>
  <head>
    <title>$Title$</title>
  </head>
  <body>
       <% List list=new ArrayList();
       int a=1/0;
       %>
  </body>
</html>

创建top.jsp

<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<h1>欢迎</h1>

创建500.jsp

<%@ page contentType="text/html;charset=UTF-8" isErrorPage="true"  language="java" %>
<html>
<head>
    <title>Title</title>
</head>
<body>
<h1>服务器正忙......</h1>
        <%
            String message = exception.getMessage();
            out.print(message);
        %>

</body>
</html>

你可能感兴趣的:(java)