欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

JSP

程序员文章站 2022-06-01 21:10:59
...

JSP指令的用法

  • <%@ 指令名称 属性名称=”属性值” 属性名称=”属性值” …%>
    JSP中有三个指令:page指令, include指令, taglib指令.
    JSP中page指令:<%@ page %> – 设置JSP的.
  • language :JSP脚本中使用的语言.现在只能写java.
  • contentType :设置浏览器打开这个JSP的时候采用的默认的字符集的编码.
  • pageEncoding :设置文件保存到本地硬盘,以及生成Servlet后,Servlet保存到硬盘上的编码.
  • import :在JSP中引入类对象.但是import可以出现多次.
    <%@page import=”java.util.ArrayList”%>
    <%@page import=”java.util.List”%>
  • extends :设置JSP翻译成Servlet后继承的类,默认值:org.apache.jasper.runtime.HttpJspBase,这个值要想修改,这个类必须是HttpServlet的子类
  • autoFlush :设置JSP的缓存自动刷出.true:自动刷出.
  • buffer :设置JSP的缓冲区的大小,默认8kb.
  • session :设置在JSP中是否可以直接使用session对象.默认值是true.
  • isELIgnored :设置在JSP中是否忽略EL表达式.默认值是false不忽略.
  • errorPage :设置错误友好页面的提示.
  • isErrorPage :通过这个设置显示JSP的错误信息.
    • 设置全局的错误友好页面:
      • 在web.xml中设置:
 <error-page>
    <error-code>404</error-code>
    <location>/404.jsp</location>
  </error-page>
  <error-page>
    <error-code>500</error-code>
    <location>/500.jsp</location>
  </error-page>
  • JSP中的include指令:指示JSP包含其他的页面.
<%@ include file="logo.jsp" %>
<%@ include file="menu.jsp" %>
<h1>BODY部分</h1>
<%@ include file="footer.jsp" %>

JSP中的taglib指令:指示JSP引入标签库.
<%@ taglib uri=”标签的URI的路径” prefix=”标签的别名” %>

JSP的内置对象:在JSP中可以直接使用的对象.

  • JSP中有9大内置对象:
  • request : HttpServletRequest getParameter(),setAttribute(String name,Object value);
  • response : HttpServletResponse setHeader(String name,String value);getOutputStream();getWriter();
  • session : HttpSession setAttribute();getAttribute();
  • application: ServletContext setAttribute();getAttribute();
  • page : Object toString();wait();
  • pageContext: PageContext setAttribute();getAttribute();
  • config: ServletConfig getServletName();getServletContext();
  • out : JspWriter write(),print();
  • exception: Throwable getMessage(),getCause(); 设置isErrorPage=”true”

  • out内置对象 :out和response.getWriter是不是同一个对象?区别是什么?
  • 不是out真实对象JspWriter ,response获得Writer是PrintWriter.
    JSP
<body>
    <h1>JSP的内置对象-out对象</h1>
    <%="AAA" %>
    <%out.println("BBB"); %>
    <%response.getWriter().println("CCC"); %>
    <%out.println("DDD"); %>
  </body>
  • pageContext内置对象:
    • 获得其他的8个内置对象 :编写通用性代码或者框架的时候.
    • 向JSP的四个域中存取数据 :
      JSP的四个域范围:
    • PageScope :当前页面中有效. pageContext PageContext
    • RequestScope :一次请求范围. request HttpServletRequest
    • SessionScope :一次会话范围. session HttpSession
    • ApplicationScope :应用范围 application ServletContext
 <body>
    <h1>jsp的内置对象</h1>
    <%
        pageContext.setAttribute("pname", "pvalue", PageContext.PAGE_SCOPE);
        //pageContext.setAttribute("pname", "pvalue"); 

        pageContext.setAttribute("rname", "rvalue", PageContext.REQUEST_SCOPE); 
        //request.setAttribute("rname", "rvalue"); 

        pageContext.setAttribute("sname", "svalue", PageContext.SESSION_SCOPE); 
        //session.setAttribute("sname", "svalue"); 

        pageContext.setAttribute("aname", "avalue", PageContext.APPLICATION_SCOPE); 
        //application.setAttribute("aname", "avalue"); 
    %>
    <!-- 在当前页面获取四个域的值:两种方法 -->
    <%=pageContext.getAttribute("pname",PageContext.PAGE_SCOPE) %>
    <%=pageContext.getAttribute("rname",PageContext.REQUEST_SCOPE) %>
    <%=pageContext.getAttribute("sname",PageContext.SESSION_SCOPE) %>
    <%=pageContext.getAttribute("aname",PageContext.APPLICATION_SCOPE) %>
    <hr/>
    <%=pageContext.getAttribute("pname") %>
    <%=request.getAttribute("rname") %>
    <%=session.getAttribute("sname") %>
    <%=application.getAttribute("aname") %>
    <hr/>
    <%
        pageContext.setAttribute("name", "pvalue");
        request.setAttribute("name", "rvalue");
        session.setAttribute("name", "svalue");
        application.setAttribute("name", "avalue"); 
    %>
    <%= pageContext.findAttribute("name") %>
  </body>
相关标签: java