Tomcat parses XML and creates objects through reflection

Tomcat parses XML and creates objects through reflection

The following example code introduces the principles of Tomcat parsing XML and creating objects through reflection. The specific code is as follows:

import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;
import java.util.List;
import org.dom4j.Document;
import org.dom4j.DocumentException;
import org.dom4j.Element;
import org.dom4j.io.SAXReader;
public class ServerReadXML1 {
  public static void main(String[] args)
      throws DocumentException, ClassNotFoundException, InstantiationException, IllegalAccessException,
      NoSuchMethodException, SecurityException, IllegalArgumentException, InvocationTargetException {
    // Now if you enter a Servlet url-pattern in the browser
    String urlPattern = "/first";
    // Get the class name according to urlPattern String className = getClassByUrl(urlPattern);
    // Get the Class object based on the full class name Class clazz = Class.forName(className);
    // Create the specified object by reflecting the clazz object Object obj = clazz.newInstance();
    // Get the service method Method method = clazz.getDeclaredMethod("service");
    // Get permissions method.setAccessible(true);
    // Execute the service method method.invoke(obj);
  }
  private static String getClassByUrl(String urlPattern) throws DocumentException {
    // 1. Create a SAXReader object SAXReader reader = new SAXReader();
    // 2. Read the file Document document = reader.read(ServerReadXML1.class.getClassLoader().getResourceAsStream("web.xml"));
    // 3. Get the root node Element rootElement = document.getRootElement();
    //System.out.println(rootElement.getName());
    // 4. Get the child nodes List<Element> under the root node servletList = rootElement.elements();
    // Record the content of the servlet-name tag that is the same as urlPattern String servletName = "";
    // Record the content of servlet-class in the servlet tag // The content of servletClassName is the full class name of the Servlet String servletClassName = "";
    // 5. Traverse child nodes for (Element servletElement : servletList) {
      //System.out.println(servletElement.getName());
      // If it is a servlet-mapping tag, execute the code if ("servlet-mapping".equals(servletElement.getName())) {
        // Get the url-pattern tag object Element url = servletElement.element("url-pattern");
        // Check if the content of the tag is the same as the entered urlPattern value if (urlPattern.equals(url.getText())) {
          //Record the content of the servlet-name tag that is the same as urlPattern //If they are the same, record ServletName
          // Get the content of servelt-name in servlet-mapping servletName = servletElement.element("servlet-name").getText();
        }
      }
    }
    // Traverse again for (Element servletElement : servletList) {
      // If it is a servlet tag, execute this code if ("servlet".equals(servletElement.getName())) {
        // Determine whether the value of servletName obtained in the previous traversal is the same as the content of servlet-name in this traversal if (servletName.equals(servletElement.element("servlet-name").getText())) {
          // If the same record servletClassName
          servletClassName = servletElement.element("servlet-class").getText();
        }
      }
    }
    // Return the full class name of the Servlet servletClassName
    return servletClassName;
  }
}

1. 4 ways to obtain Class through reflection

@Test
  public void test1() throws ClassNotFoundException {
    //1. Class name.class
    Class clazz = String.class;
    System.out.println(clazz);
    //2. Object.getClass()
    Class clazz1 = "abc".getClass();
    System.out.println(clazz1);
    //3.Class.forName();
    Class clazz2 = Class.forName("java.lang.String");
    System.out.println(clazz2);
    //4.ClassLoader .loadClass("full class name")
    Class clazz3 = ReflectTest1.class.getClassLoader().loadClass("java.lang.String");
    System.out.println(clazz3);
  }

2. Common methods of using reflection properties

@Test
  public void test2() throws ClassNotFoundException, NoSuchFieldException, SecurityException, IllegalArgumentException, IllegalAccessException {
    //Get the Class object to get its internal properties Class clazz = Class.forName("com.atguigu.bean.User");
    User user = new User();
    //The Field object represents the class attribute getField can only get the public attribute Field field = clazz.getField("email");
    System.out.println(field);
     //This method destroys the encapsulation of the code and is not recommended. Field field2 = clazz.getDeclaredField("id");
    System.out.println(field2);
    field2.setAccessible(true);
    field2.setInt(user, 1001);
    System.out.println(user);
  }

3. Common methods of using reflection

@Test
  public void test3() throws ClassNotFoundException, InstantiationException, IllegalAccessException, NoSuchMethodException, SecurityException, IllegalArgumentException, InvocationTargetException {
    Class clazz = Class.forName("com.atguigu.bean.User");
    //Create an object through reflection Object obj = clazz.newInstance();
    //Now we want to set the name value String fileName = "name";
    //Create a method name String methodName = "set" + fileName.substring(0, 1).toUpperCase() //N
    + fileName.substring(1).toLowerCase(); //ame
    //Get the public method according to the method name Method method = clazz.getMethod(methodName, String.class);
    //Execute the specified method method.invoke(obj, "yangjian");
    System.out.println(obj);
  }

Summarize

The above is the principle of Tomcat parsing XML and creating objects through reflection introduced by the editor. I hope it will be helpful to everyone. If you have any questions, please leave me a message and the editor will reply to you in time. I would also like to thank everyone for their support of the 123WORDPRESS.COM website!
If you find this article helpful, please feel free to reprint it and please indicate the source. Thank you!

You may also be interested in:
  • Detailed explanation of Tomcat core components and application architecture
  • Detailed explanation of the startup principle of SpringBoot built-in tomcat
  • Analyze the working principle of Tomcat
  • Detailed analysis of the startup.bat principle in Tomcat
  • Detailed analysis of catalina.bat principle in Tomcat
  • Introduction to the principles, configuration, and use of Tomcat data sources
  • Detailed explanation of the implementation principle of Tomcat hot deployment
  • Analyze Tomcat architecture principles to architecture design

<<:  JavaScript built-in date and time formatting time example code

>>:  Detailed explanation of various loop speed tests in JS that you don’t know

Recommend

IDEA configuration process of Docker

IDEA is the most commonly used development tool f...

Steps to transplant the new kernel to the Linux system

1. Download the ubuntu16.04 image and the corresp...

Why should css be placed in the head tag

Think about it: Why should css be placed in the h...

Use of select, distinct, and limit in MySQL

Table of contents 1. Introduction 2. select 2.1 Q...

MySQL detailed single table add, delete, modify and query CRUD statements

MySQL add, delete, modify and query statements 1....

Some parameter descriptions of text input boxes in web design

In general guestbooks, forums and other places, t...

CSS3 analysis of the steps for making Douyin LOGO

"Tik Tok" is also very popular and is s...

Get a list of your top 10 most frequently used terminal commands in Linux

I think the commands I use most often are: Choice...

Linux kernel device driver virtual file system notes

/******************** * Virtual File System VFS *...

How to draw a mind map in a mini program

Table of contents What is a mind map? How to draw...

Problems with using multiple single quotes and triple quotes in MySQL concat

When dynamically concatenating strings, we often ...

JavaScript to implement the back to top button

This article shares the specific code for JavaScr...

Tutorial diagram of installing CentOS and Qt in Vmware virtual machine

Vmware Installation Installing Packages Download ...