implicit-objects.jsp
上传用户:bj_pst
上传日期:2019-07-07
资源大小:7353k
文件大小:3k
源码类别:

Java编程

开发平台:

Java

  1. <!--
  2.  Licensed to the Apache Software Foundation (ASF) under one or more
  3.   contributor license agreements.  See the NOTICE file distributed with
  4.   this work for additional information regarding copyright ownership.
  5.   The ASF licenses this file to You under the Apache License, Version 2.0
  6.   (the "License"); you may not use this file except in compliance with
  7.   the License.  You may obtain a copy of the License at
  8.       http://www.apache.org/licenses/LICENSE-2.0
  9.   Unless required by applicable law or agreed to in writing, software
  10.   distributed under the License is distributed on an "AS IS" BASIS,
  11.   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12.   See the License for the specific language governing permissions and
  13.   limitations under the License.
  14. -->
  15. <%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions" %>
  16. <html>
  17.   <head>
  18.     <title>JSP 2.0 Expression Language - Implicit Objects</title>
  19.   </head>
  20.   <body>
  21.     <h1>JSP 2.0 Expression Language - Implicit Objects</h1>
  22.     <hr>
  23.     This example illustrates some of the implicit objects available 
  24.     in the Expression Lanaguage.  The following implicit objects are 
  25.     available (not all illustrated here):
  26.     <ul>
  27.       <li>pageContext - the PageContext object</li>
  28.       <li>pageScope - a Map that maps page-scoped attribute names to 
  29.           their values</li>
  30.       <li>requestScope - a Map that maps request-scoped attribute names 
  31.           to their values</li>
  32.       <li>sessionScope - a Map that maps session-scoped attribute names 
  33.           to their values</li>
  34.       <li>applicationScope - a Map that maps application-scoped attribute 
  35.           names to their values</li>
  36.       <li>param - a Map that maps parameter names to a single String 
  37.           parameter value</li>
  38.       <li>paramValues - a Map that maps parameter names to a String[] of 
  39.           all values for that parameter</li>
  40.       <li>header - a Map that maps header names to a single String 
  41.           header value</li>
  42.       <li>headerValues - a Map that maps header names to a String[] of 
  43.           all values for that header</li>
  44.       <li>initParam - a Map that maps context initialization parameter 
  45.           names to their String parameter value</li>
  46.       <li>cookie - a Map that maps cookie names to a single Cookie object.</li>
  47.     </ul>
  48.     <blockquote>
  49.       <u><b>Change Parameter</b></u>
  50.       <form action="implicit-objects.jsp" method="GET">
  51.   foo = <input type="text" name="foo" value="${fn:escapeXml(param["foo"])}">
  52.           <input type="submit">
  53.       </form>
  54.       <br>
  55.       <code>
  56.         <table border="1">
  57.           <thead>
  58.     <td><b>EL Expression</b></td>
  59.     <td><b>Result</b></td>
  60.   </thead>
  61.   <tr>
  62.     <td>${param.foo}</td>
  63.     <td>${fn:escapeXml(param["foo"])}&nbsp;</td>
  64.   </tr>
  65.   <tr>
  66.     <td>${param["foo"]}</td>
  67.     <td>${fn:escapeXml(param["foo"])}&nbsp;</td>
  68.   </tr>
  69.   <tr>
  70.     <td>${header["host"]}</td>
  71.     <td>${fn:escapeXml(header["host"])}&nbsp;</td>
  72.   </tr>
  73.   <tr>
  74.     <td>${header["accept"]}</td>
  75.     <td>${fn:escapeXml(header["accept"])}&nbsp;</td>
  76.   </tr>
  77.   <tr>
  78.     <td>${header["user-agent"]}</td>
  79.     <td>${fn:escapeXml(header["user-agent"])}&nbsp;</td>
  80.   </tr>
  81. </table>
  82.       </code>
  83.     </blockquote>
  84.   </body>
  85. </html>