• jsp篇 之 Jsp中的内置对象和范围对象


    Jsp中的内置对象:

    jsp页面代码中不需要声明,直接可以使用的对象。

    一共有【9个内置对象】可以直接使用.

     对象类型                   名字

    PageContext                pageContext

    HttpServletRequest        request

    HttpSession         session

    ServletContext              application

    Object           page

    HttpServletResponse     response

    JspWriter             out

    ServletConfig             config

    Throwable        exception  isErrorPage才可以用】

    范围对象

    范围对象有四个,在一定范围内可以存取数据。

    pageContext  【比request小】

    页面范围(只能在同一个页面中起作用)

    Request  一次请求

    Session 一次会话          同一个session,只要浏览器不关,一个浏览器独占一个session对象(默认情况下)。

    Application 一个上下文(项目)

  • 相关阅读:
    git中文输入显示问题
    how to write a DLL/SO in C/C++ for Python
    python,ctypes
    vc++,dll,lib文件百科
    c++ singleton
    build python on windows
    web前端后端
    动态链接库*.so的编译与使用
    qt,ui,QUiLoader
    qt,script
  • 原文地址:https://www.cnblogs.com/wskb/p/10741821.html
Copyright © 2020-2023  润新知