ttomcat-1778514358873.zip-extract/apache-tomcat-11.0.18-src/webapps/examples/jsp/index.html

Path
ttomcat-1778514358873.zip-extract/apache-tomcat-11.0.18-src/webapps/examples/jsp/index.html
Status
scanned
Type
file
Name
index.html
Extension
.html
Programming language
HTML
Mime type
text/html
File type
HTML document, ASCII text, with CRLF line terminators
Tag

      
    
Rootfs path

      
    
Size
13941 (13.6 KB)
MD5
b377c5f1f75fc8724e090b26a4d0e15d
SHA1
c577846ecd5d9a7198615b01d50c71863a9e702e
SHA256
285bf75c3346d5b048a71ecf00e0bb897aa4a9bd5eb5d09fa27399e071170dbf
SHA512

      
    
SHA1_git
96d5d3439b26543ec2a6e2f270beeeabcaba402f
Is binary

      
    
Is text
True
Is archive

      
    
Is media

      
    
Is legal

      
    
Is manifest

      
    
Is readme

      
    
Is top level

      
    
Is key file

      
    
index.html | 13.6 KB |

<!-- Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to You under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. --> <!DOCTYPE html><html lang="en"> <head> <meta charset="UTF-8"/> <title>JSP Examples</title> <style type="text/css"> img { border: 0; } th { text-align: left; } tr { vertical-align: top; } </style> </head> <body> <h1>JSP Samples</h1> <p>This is a collection of samples demonstrating the usage of different parts of the Jakarta Pages (JSP) specification. Both JSP 2.0 and JSP 1.2 examples are presented below. <p>These examples will only work when these pages are being served by a servlet engine; of course, we recommend <a href="https://tomcat.apache.org/">Tomcat</a>. They will not work if you are viewing these pages via a "file://..." URL. <p>To navigate your way through the examples, the following icons will help:</p> <ul style="list-style-type: none; padding-left: 0;"> <li><img src="images/execute.gif" alt=""> Execute the example</li> <li><img src="images/code.gif" alt=""> Look at the source code for the example</li> <li><img src="images/return.gif" alt=""> Return to this screen</li> </ul> <p>Tip: For session scoped beans to work, the cookies must be enabled. This can be done using browser options.</p> <h2>JSP 2.0 Examples</h2> <table style="width: 85%;"> <tr> <th colspan="3">Expression Language</th> </tr> <tr> <td>Basic Arithmetic</td> <td style="width: 30%;"><a href="jsp2/el/basic-arithmetic.jsp"><img src="images/execute.gif" alt=""></a><a href="jsp2/el/basic-arithmetic.jsp">Execute</a></td> <td style="width: 30%;"><a href="jsp2/el/basic-arithmetic.html"><img src="images/code.gif" alt=""></a><a href="jsp2/el/basic-arithmetic.html">Source</a></td> </tr> <tr> <td>Basic Comparisons</td> <td style="width: 30%;"><a href="jsp2/el/basic-comparisons.jsp"><img src="images/execute.gif" alt=""></a><a href="jsp2/el/basic-comparisons.jsp">Execute</a></td> <td style="width: 30%;"><a href="jsp2/el/basic-comparisons.html"><img src="images/code.gif" alt=""></a><a href="jsp2/el/basic-comparisons.html">Source</a></td> </tr> <tr> <td>Implicit Objects</td> <td style="width: 30%;"><a href="jsp2/el/implicit-objects.jsp?foo=bar"><img src="images/execute.gif" alt=""></a><a href="jsp2/el/implicit-objects.jsp?foo=bar">Execute</a></td> <td style="width: 30%;"><a href="jsp2/el/implicit-objects.html"><img src="images/code.gif" alt=""></a><a href="jsp2/el/implicit-objects.html">Source</a></td> </tr> <tr> <td>Functions</td> <td style="width: 30%;"><a href="jsp2/el/functions.jsp?foo=JSP+2.0"><img src="images/execute.gif" alt=""></a><a href="jsp2/el/functions.jsp?foo=JSP+2.0">Execute</a></td> <td style="width: 30%;"><a href="jsp2/el/functions.html"><img src="images/code.gif" alt=""></a><a href="jsp2/el/functions.html">Source</a></td> </tr> <tr> <td>Composite Expressions</td> <td style="width: 30%;"><a href="jsp2/el/composite.jsp"><img src="images/execute.gif" alt=""></a><a href="jsp2/el/composite.jsp">Execute</a></td> <td style="width: 30%;"><a href="jsp2/el/composite.html"><img src="images/code.gif" alt=""></a><a href="jsp2/el/composite.html">Source</a></td> </tr> <tr> <th colspan="3"><br />SimpleTag Handlers and JSP Fragments</th> </tr> <tr> <td>Hello World Tag</td> <td style="width: 30%;"><a href="jsp2/simpletag/hello.jsp"><img src="images/execute.gif" alt=""></a><a href="jsp2/simpletag/hello.jsp">Execute</a></td> <td style="width: 30%;"><a href="jsp2/simpletag/hello.html"><img src="images/code.gif" alt=""></a><a href="jsp2/simpletag/hello.html">Source</a></td> </tr> <tr> <td>Repeat Tag</td> <td style="width: 30%;"><a href="jsp2/simpletag/repeat.jsp"><img src="images/execute.gif" alt=""></a><a href="jsp2/simpletag/repeat.jsp">Execute</a></td> <td style="width: 30%;"><a href="jsp2/simpletag/repeat.html"><img src="images/code.gif" alt=""></a><a href="jsp2/simpletag/repeat.html">Source</a></td> </tr> <tr> <td>Book Example</td> <td style="width: 30%;"><a href="jsp2/simpletag/book.jsp"><img src="images/execute.gif" alt=""></a><a href="jsp2/simpletag/book.jsp">Execute</a></td> <td style="width: 30%;"><a href="jsp2/simpletag/book.html"><img src="images/code.gif" alt=""></a><a href="jsp2/simpletag/book.html">Source</a></td> </tr> <tr> <th colspan="3"><br />Tag Files</th> </tr> <tr> <td>Hello World Tag File</td> <td style="width: 30%;"><a href="jsp2/tagfiles/hello.jsp"><img src="images/execute.gif" alt=""></a><a href="jsp2/tagfiles/hello.jsp">Execute</a></td> <td style="width: 30%;"><a href="jsp2/tagfiles/hello.html"><img src="images/code.gif" alt=""></a><a href="jsp2/tagfiles/hello.html">Source</a></td> </tr> <tr> <td>Panel Tag File</td> <td style="width: 30%;"><a href="jsp2/tagfiles/panel.jsp"><img src="images/execute.gif" alt=""></a><a href="jsp2/tagfiles/panel.jsp">Execute</a></td> <td style="width: 30%;"><a href="jsp2/tagfiles/panel.html"><img src="images/code.gif" alt=""></a><a href="jsp2/tagfiles/panel.html">Source</a></td> </tr> <tr> <td>Display Products Example</td> <td style="width: 30%;"><a href="jsp2/tagfiles/products.jsp"><img src="images/execute.gif" alt=""></a><a href="jsp2/tagfiles/products.jsp">Execute</a></td> <td style="width: 30%;"><a href="jsp2/tagfiles/products.html"><img src="images/code.gif" alt=""></a><a href="jsp2/tagfiles/products.html">Source</a></td> </tr> <tr> <th colspan="3"><br />New JSP XML Syntax (.jspx)</th> </tr> <tr> <td>XHTML Basic Example</td> <td style="width: 30%;"><a href="jsp2/jspx/basic.jspx"><img src="images/execute.gif" alt=""></a><a href="jsp2/jspx/basic.jspx">Execute</a></td> <td style="width: 30%;"><a href="jsp2/jspx/basic.html"><img src="images/code.gif" alt=""></a><a href="jsp2/jspx/basic.html">Source</a></td> </tr> <tr> <td>SVG (Scalable Vector Graphics)</td> <td style="width: 30%;"><a href="jsp2/jspx/svgexample.html"><img src="images/execute.gif" alt=""></a><a href="jsp2/jspx/svgexample.html">Execute</a></td> <td style="width: 30%;"><a href="jsp2/jspx/textRotate.html"><img src="images/code.gif" alt=""></a><a href="jsp2/jspx/textRotate.html">Source</a></td> </tr> <tr> <th colspan="3"><br />Other JSP 2.0 Features</th> </tr> <tr> <td>&lt;jsp:attribute&gt; and &lt;jsp:body&gt;</td> <td style="width: 30%;"><a href="jsp2/jspattribute/jspattribute.jsp"><img src="images/execute.gif" alt=""></a><a href="jsp2/jspattribute/jspattribute.jsp">Execute</a></td> <td style="width: 30%;"><a href="jsp2/jspattribute/jspattribute.html"><img src="images/code.gif" alt=""></a><a href="jsp2/jspattribute/jspattribute.html">Source</a></td> </tr> <tr> <td>Shuffle Example</td> <td style="width: 30%;"><a href="jsp2/jspattribute/shuffle.jsp"><img src="images/execute.gif" alt=""></a><a href="jsp2/jspattribute/shuffle.jsp">Execute</a></td> <td style="width: 30%;"><a href="jsp2/jspattribute/shuffle.html"><img src="images/code.gif" alt=""></a><a href="jsp2/jspattribute/shuffle.html">Source</a></td> </tr> <tr> <td>Attributes With Dynamic Names</td> <td style="width: 30%;"><a href="jsp2/misc/dynamicattrs.jsp"><img src="images/execute.gif" alt=""></a><a href="jsp2/misc/dynamicattrs.jsp">Execute</a></td> <td style="width: 30%;"><a href="jsp2/misc/dynamicattrs.html"><img src="images/code.gif" alt=""></a><a href="jsp2/misc/dynamicattrs.html">Source</a></td> </tr> <tr> <td>JSP Configuration</td> <td style="width: 30%;"><a href="jsp2/misc/config.jsp"><img src="images/execute.gif" alt=""></a><a href="jsp2/misc/config.jsp">Execute</a></td> <td style="width: 30%;"><a href="jsp2/misc/config.html"><img src="images/code.gif" alt=""></a><a href="jsp2/misc/config.html">Source</a></td> </tr> </table> <h2>JSP 1.2 Examples</h2> <table style="width: 85%;"> <tr> <td>Numberguess</td> <td style="width: 30%;"><a href="num/numguess.jsp"><img src="images/execute.gif" alt=""></a><a href="num/numguess.jsp">Execute</a></td> <td style="width: 30%;"><a href="num/numguess.html"><img src="images/code.gif" alt=""></a><a href="num/numguess.html">Source</a></td> </tr> <tr> <td>Date</td> <td style="width: 30%;"><a href="dates/date.jsp"><img src="images/execute.gif" alt=""></a><a href="dates/date.jsp">Execute</a></td> <td style="width: 30%;"><a href="dates/date.html"><img src="images/code.gif" alt=""></a><a href="dates/date.html">Source</a></td> </tr> <tr> <td>Snoop</td> <td style="width: 30%;"><a href="snp/snoop.jsp"><img src="images/execute.gif" alt=""></a><a href="snp/snoop.jsp">Execute</a></td> <td style="width: 30%;"><a href="snp/snoop.html"><img src="images/code.gif" alt=""></a><a href="snp/snoop.html">Source</a></td> </tr> <tr> <td>ErrorPage</td> <td style="width: 30%;"><a href="error/error.html"><img src="images/execute.gif" alt=""></a><a href="error/error.html">Execute</a></td> <td style="width: 30%;"><a href="error/er.html"><img src="images/code.gif" alt=""></a><a href="error/er.html">Source</a></td> </tr> <tr> <td>Carts</td> <td style="width: 30%;"><a href="sessions/shopping.jsp"><img src="images/execute.gif" alt=""></a><a href="sessions/shopping.jsp">Execute</a></td> <td style="width: 30%;"><a href="sessions/crt.html"><img src="images/code.gif" alt=""></a><a href="sessions/crt.html">Source</a></td> </tr> <tr> <td>Checkbox</td> <td style="width: 30%;"><a href="checkbox/check.html"><img src="images/execute.gif" alt=""></a><a href="checkbox/check.html">Execute</a></td> <td style="width: 30%;"><a href="checkbox/cresult.html"><img src="images/code.gif" alt=""></a><a href="checkbox/cresult.html">Source</a></td> </tr> <tr> <td>Color</td> <td style="width: 30%;"><a href="colors/colors.html"><img src="images/execute.gif" alt=""></a><a href="colors/colors.html">Execute</a></td> <td style="width: 30%;"><a href="colors/clr.html"><img src="images/code.gif" alt=""></a><a href="colors/clr.html">Source</a></td> </tr> <tr> <td>Include</td> <td style="width: 30%;"><a href="include/include.jsp"><img src="images/execute.gif" alt=""></a><a href="include/include.jsp">Execute</a></td> <td style="width: 30%;"><a href="include/inc.html"><img src="images/code.gif" alt=""></a><a href="include/inc.html">Source</a></td> </tr> <tr> <td>Forward</td> <td style="width: 30%;"><a href="forward/forward.jsp"><img src="images/execute.gif" alt=""></a><a href="forward/forward.jsp">Execute</a></td> <td style="width: 30%;"><a href="forward/fwd.html"><img src="images/code.gif" alt=""></a><a href="forward/fwd.html">Source</a></td> </tr> <tr> <td>JSP-Servlet-JSP</td> <td style="width: 30%;"><a href="jsptoserv/jsptoservlet.jsp"><img src="images/execute.gif" alt=""></a><a href="jsptoserv/jsptoservlet.jsp">Execute</a></td> <td style="width: 30%;"><a href="jsptoserv/jts.html"><img src="images/code.gif" alt=""></a><a href="jsptoserv/jts.html">Source</a></td> </tr> <tr> <td>Custom tag example</td> <td style="width: 30%;"><a href="simpletag/foo.jsp"><img src="images/execute.gif" alt=""></a><a href="simpletag/foo.jsp">Execute</a></td> <td style="width: 30%;"><a href="simpletag/foo.html"><img src="images/code.gif" alt=""></a><a href="simpletag/foo.html">Source</a></td> </tr> <tr> <td>XML syntax example</td> <td style="width: 30%;"><a href="xml/xml.jsp"><img src="images/execute.gif" alt=""></a><a href="xml/xml.jsp">Execute</a></td> <td style="width: 30%;"><a href="xml/xml.html"><img src="images/code.gif" alt=""></a><a href="xml/xml.html">Source</a></td> </tr> </table> <h2>Tag Plugins</h2> <table style="width: 85%;"> <tr> <td>If</td> <td style="width: 30%;"> <a href="tagplugin/if.jsp"><img src="images/execute.gif" alt=""></a> <a href="tagplugin/if.jsp">Execute</a> </td> <td style="width: 30%;"> <a href="tagplugin/if.html"><img src="images/code.gif" alt=""></a> <a href="tagplugin/if.html">Source</a> </td> </tr> <tr> <td>ForEach</td> <td style="width: 30%;"> <a href="tagplugin/foreach.jsp"><img src="images/execute.gif" alt=""></a> <a href="tagplugin/foreach.jsp">Execute</a> </td> <td style="width: 30%;"> <a href="tagplugin/foreach.html"><img src="images/code.gif" alt=""></a> <a href="tagplugin/foreach.html">Source</a> </td> </tr> <tr> <td>Choose</td> <td style="width: 30%;"> <a href="tagplugin/choose.jsp"><img src="images/execute.gif" alt=""></a> <a href="tagplugin/choose.jsp">Execute</a> </td> <td style="width: 30%;"> <a href="tagplugin/choose.html"><img src="images/code.gif" alt=""></a> <a href="tagplugin/choose.html">Source</a> </td> </tr> </table> <h2>Other Examples</h2> <table style="width: 85%;"> <tr> <td>FORM Authentication</td> <td style="width: 30%;"> <a href="security/protected/index.jsp"><img src="images/execute.gif" alt=""> Execute</a> </td> <td style="width: 30%;"></td> </tr> <tr> <td colspan="3">Example that demonstrates protecting a resource and using Form-Based authentication. To access the page the user must have role of either "tomcat" or "role1". By default no user is configured to have these roles.</td> </tr> </table> </body> </html>
Detected license expression
apache-2.0
Detected license expression (SPDX)
Apache-2.0
Percentage of license text
9.1
Copyrights

      
    
Holders

      
    
Authors

      
    
License detections License expression License expression SPDX
apache_2_0-4bde3f57-78aa-4201-96bf-531cba09e7de apache-2.0 Apache-2.0
URL Start line End line
http://www.apache.org/licenses/LICENSE-2.0 9 9
https://tomcat.apache.org/ 35 35