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

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. <%@ taglib prefix="my" uri="http://jakarta.apache.org/tomcat/jsp2-example-taglib"%>
  17. <html>
  18.   <head>
  19.     <title>JSP 2.0 Expression Language - Functions</title>
  20.   </head>
  21.   <body>
  22.     <h1>JSP 2.0 Expression Language - Functions</h1>
  23.     <hr>
  24.     An upgrade from the JSTL expression language, the JSP 2.0 EL also
  25.     allows for simple function invocation.  Functions are defined
  26.     by tag libraries and are implemented by a Java programmer as 
  27.     static methods.
  28.     <blockquote>
  29.       <u><b>Change Parameter</b></u>
  30.       <form action="functions.jsp" method="GET">
  31.   foo = <input type="text" name="foo" value="${fn:escapeXml(param["foo"])}">
  32.           <input type="submit">
  33.       </form>
  34.       <br>
  35.       <code>
  36.         <table border="1">
  37.           <thead>
  38.     <td><b>EL Expression</b></td>
  39.     <td><b>Result</b></td>
  40.   </thead>
  41.   <tr>
  42.     <td>${param["foo"]}</td>
  43.     <td>${fn:escapeXml(param["foo"])}&nbsp;</td>
  44.   </tr>
  45.   <tr>
  46.     <td>${my:reverse(param["foo"])}</td>
  47.     <td>${my:reverse(fn:escapeXml(param["foo"]))}&nbsp;</td>
  48.   </tr>
  49.   <tr>
  50.     <td>${my:reverse(my:reverse(param["foo"]))}</td>
  51.     <td>${my:reverse(my:reverse(fn:escapeXml(param["foo"])))}&nbsp;</td>
  52.   </tr>
  53.   <tr>
  54.     <td>${my:countVowels(param["foo"])}</td>
  55.     <td>${my:countVowels(fn:escapeXml(param["foo"]))}&nbsp;</td>
  56.   </tr>
  57. </table>
  58.       </code>
  59.     </blockquote>
  60.   </body>
  61. </html>