EL 表达式其他隐含对象的使用

EL 表达式其他隐含对象的使用


<%--
  Created by IntelliJ IDEA.
  User: xhc
  Date: 2021/1/10
  Time: 12:00
  To change this template use File | Settings | File Templates.
--%>
<%@ page contentType="text/html;charset=UTF-8" language="java" %>


    Title


    输出请求参数username的值:${ param.username } 
输出请求参数password的值:${ param.password }
输出请求参数username的值:${ paramValues.username[0] }
输出请求参数hobby的值:${ paramValues.hobby[0] }
输出请求参数hobby的值:${ paramValues.hobby[1] }

输出请求头【User-Agent】的值:${ header['User-Agent'] }
输出请求头【Connection】的值:${ header.Connection }
输出请求头【User-Agent】的值:${ headerValues['User-Agent'][0] }

获取Cookie的名称:${ cookie.JSESSIONID.name }
获取Cookie的值:${ cookie.JSESSIONID.value }

输出<Context-param>username的值:${ initParam.username }
输出<Context-param>url的值:${ initParam.url }

 

你可能感兴趣的:(java)