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

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="tags" tagdir="/WEB-INF/tags" %>
  16. <html>
  17.   <head>
  18.     <title>JSP 2.0 Examples - Hello World Using a Tag File</title>
  19.   </head>
  20.   <body>
  21.     <h1>JSP 2.0 Examples - Hello World Using a Tag File</h1>
  22.     <hr>
  23.     <p>This JSP page invokes a custom tag that simply echos "Hello, World!"  
  24.     The custom tag is generated from a tag file in the /WEB-INF/tags
  25.     directory.</p>
  26.     <p>Notice that we did not need to write a TLD for this tag.  We just
  27.     created /WEB-INF/tags/helloWorld.tag, imported it using the taglib
  28.     directive, and used it!</p>
  29.     <br>
  30.     <b><u>Result:</u></b>
  31.     <tags:helloWorld/>
  32.   </body>
  33. </html>