ttomcat-1778514358873.zip-extract/apache-tomcat-11.0.18-src/test/org/apache/catalina/startup/TestTomcatClassLoader.java

Path
ttomcat-1778514358873.zip-extract/apache-tomcat-11.0.18-src/test/org/apache/catalina/startup/TestTomcatClassLoader.java
Status
scanned
Type
file
Name
TestTomcatClassLoader.java
Extension
.java
Programming language
Java
Mime type
text/plain
File type
ASCII text, with CRLF line terminators
Tag

      
    
Rootfs path

      
    
Size
3934 (3.8 KB)
MD5
6bac3d16686b76a6b2effeb848b1c168
SHA1
21517129369fe907dded4853e95939d957310ae2
SHA256
e1cada4854ed8986d13244ecabbe39c92139041f7d355f56eb22fde5bcd82d36
SHA512

      
    
SHA1_git
775f2634d4fc0bb823d522b88ebbb3ec72a73cae
Is binary

      
    
Is text
True
Is archive

      
    
Is media

      
    
Is legal

      
    
Is manifest

      
    
Is readme

      
    
Is top level

      
    
Is key file

      
    
TestTomcatClassLoader.java | 3.8 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 org.apache.catalina.startup; import java.io.IOException; import java.io.PrintWriter; import java.net.URL; import java.net.URLClassLoader; import jakarta.servlet.ServletException; import jakarta.servlet.http.HttpServlet; import jakarta.servlet.http.HttpServletRequest; import jakarta.servlet.http.HttpServletResponse; import org.junit.Assert; import org.junit.Test; import org.apache.catalina.Context; import org.apache.catalina.loader.WebappClassLoaderBase; import org.apache.tomcat.util.buf.ByteChunk; public class TestTomcatClassLoader extends TomcatBaseTest { @Test public void testDefaultClassLoader() throws Exception { Tomcat tomcat = getTomcatInstance(); // No file system docBase required Context ctx = getProgrammaticRootContext(); Tomcat.addServlet(ctx, "ClassLoaderReport", new ClassLoaderReport(null)); ctx.addServletMappingDecoded("/", "ClassLoaderReport"); tomcat.start(); ByteChunk res = getUrl("http://localhost:" + getPort() + "/"); Assert.assertEquals("WEBAPP,SYSTEM,OTHER,", res.toString()); } @Test public void testNonDefaultClassLoader() throws Exception { Thread currentThread = Thread.currentThread(); ClassLoader cl = new URLClassLoader(new URL[0], currentThread.getContextClassLoader()); currentThread.setContextClassLoader(cl); Tomcat tomcat = getTomcatInstance(); tomcat.getServer().setParentClassLoader(cl); // No file system docBase required Context ctx = getProgrammaticRootContext(); Tomcat.addServlet(ctx, "ClassLoaderReport", new ClassLoaderReport(cl)); ctx.addServletMappingDecoded("/", "ClassLoaderReport"); tomcat.start(); ByteChunk res = getUrl("http://localhost:" + getPort() + "/"); Assert.assertEquals("WEBAPP,CUSTOM,SYSTEM,OTHER,", res.toString()); } private static final class ClassLoaderReport extends HttpServlet { private static final long serialVersionUID = 1L; private transient ClassLoader custom; ClassLoaderReport(ClassLoader custom) { this.custom = custom; } @Override protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException { resp.setContentType("text/plain"); PrintWriter out = resp.getWriter(); ClassLoader system = ClassLoader.getSystemClassLoader(); ClassLoader cl = Thread.currentThread().getContextClassLoader(); while (cl != null) { if (system == cl) { out.print("SYSTEM,"); } else if (custom == cl) { out.print("CUSTOM,"); } else if (cl instanceof WebappClassLoaderBase) { out.print("WEBAPP,"); } else { out.print("OTHER,"); } cl = cl.getParent(); } } } }
Detected license expression
apache-2.0
Detected license expression (SPDX)
Apache-2.0
Percentage of license text
31.73
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