美文网首页
Struts2 Day02 学习记录

Struts2 Day02 学习记录

作者: 笔下的葫芦 | 来源:发表于2017-12-18 23:00 被阅读0次

    今日所学笔记:

    1. EL表达式

    1.1 从隐式对象中得到数据

    pageScope:${pageScope.user.userName}相当于<%=page.getAttribute("user").getUserName%>
    requestScope:${requestScope.books}相当于<%request.getAttribute("books")%>
    sessionScope:同上~
    applicationScope:同上~

    1.2 从请求头中取得数据

    header:${header.referer}得到请求过来的URL

    1.3 访问JSP内置对象

    pageContext:在EL表达式中不能直接获得内置对象,得通过pageContext间接来得到这些内置对象

    随堂笔记:

    1.request.getRequestDispatcher()是请求转发,前后页面共享一个request ;
    response.sendRedirect()是重新定向,前后页面不是一个request

    相关文章

      网友评论

          本文标题:Struts2 Day02 学习记录

          本文链接:https://www.haomeiwen.com/subject/qyxpwxtx.html