ttomcat-1778514358873.zip-extract/apache-tomcat-11.0.18-src/webapps/docs/appdev/sample/src/mypackage/Hello.java

Path
ttomcat-1778514358873.zip-extract/apache-tomcat-11.0.18-src/webapps/docs/appdev/sample/src/mypackage/Hello.java
Status
scanned
Type
file
Name
Hello.java
Extension
.java
Programming language
Java
Mime type
text/plain
File type
Perl5 module source, ASCII text, with CRLF line terminators
Tag

      
    
Rootfs path

      
    
Size
3011 (2.9 KB)
MD5
189d29903c30f3cbe6d08782336d6116
SHA1
7b3bbe2d30b54b672a4d2e4703daed4892db8b2a
SHA256
215c94ac13a0e9e1db923adc20678c1d87c917b1e95dd442ad33cb78f80758a5
SHA512

      
    
SHA1_git
a369bf5e1bbc78af5bff58c61e280115119b4bb9
Is binary

      
    
Is text
True
Is archive

      
    
Is media

      
    
Is legal

      
    
Is manifest

      
    
Is readme

      
    
Is top level

      
    
Is key file

      
    
Hello.java | 2.9 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. */ package mypackage; import java.io.IOException; import java.io.PrintWriter; import jakarta.servlet.ServletException; import jakarta.servlet.http.HttpServlet; import jakarta.servlet.http.HttpServletRequest; import jakarta.servlet.http.HttpServletResponse; /** * Simple servlet to validate that the Hello, World example can * execute servlets. In the web application deployment descriptor, * this servlet must be mapped to correspond to the link in the * "index.html" file. */ public final class Hello extends HttpServlet { private static final long serialVersionUID = 1L; /** * Respond to a GET request for the content produced by * this servlet. * * @param request The servlet request we are processing * @param response The servlet response we are producing * * @exception IOException if an input/output error occurs * @exception ServletException if a servlet error occurs */ @Override public void doGet(HttpServletRequest request, HttpServletResponse response) throws IOException, ServletException { response.setContentType("text/html"); response.setCharacterEncoding("UTF-8"); try (PrintWriter writer = response.getWriter()) { writer.println("<!DOCTYPE html><html>"); writer.println("<head>"); writer.println("<meta charset=\"UTF-8\" />"); writer.println("<title>Sample Application Servlet Page</title>"); writer.println("</head>"); writer.println("<body>"); writer.println("<div style=\"float: left; padding: 10px;\">"); writer.println("<img src=\"images/tomcat.gif\" alt=\"\" />"); writer.println("</div>"); writer.println("<h1>Sample Application Servlet</h1>"); writer.println("<p>"); writer.println("This is the output of a servlet that is part of"); writer.println("the Hello, World application."); writer.println("</p>"); writer.println("</body>"); writer.println("</html>"); } } }
Detected license expression
apache-2.0
Detected license expression (SPDX)
Apache-2.0
Percentage of license text
36.17
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