zoukankan      html  css  js  c++  java
  • 今日总结

    今天的内容:

    学习了jsp EL隐含对象:

    隐含对象描述
    pageScope page 作用域
    requestScope request 作用域
    sessionScope session 作用域
    applicationScope application 作用域
    param Request 对象的参数,字符串
    paramValues Request对象的参数,字符串集合
    header HTTP 信息头,字符串
    headerValues HTTP 信息头,字符串集合
    initParam 上下文初始化参数
    cookie Cookie值
    pageContext 当前页面的pageContext

    pageContext对象

    pageContext对象是JSP中pageContext对象的引用。通过pageContext对象,您可以访问request对象

    Scope对象

    pageScope,requestScope,sessionScope,applicationScope变量用来访问存储在各个作用域层次的变量

    param和paramValues对象

    param和paramValues对象用来访问参数值,通过使用request.getParameter方法和request.getParameterValues方法

    header和headerValues对象

    header和headerValues对象用来访问信息头,通过使用 request.getHeader方法和request.getHeaders方法。

    问题:无

    明天的打算:继续学习Javaweb

  • 相关阅读:
    mybatis-plus 相关
    Nginx 相关
    Docker 相关
    shiro & jwt
    Java GC
    C++ Q&A
    epoll ET & LT
    关于 free 命令显示内存使用情况问题
    Metaprogramming in Ruby: It’s All About the Self
    On The Value Of Fundamentals In Software Development (基础知识在软件开发中的价值)
  • 原文地址:https://www.cnblogs.com/MXming/p/14162935.html
Copyright © 2011-2022 走看看