java类加载器分为
根类加载器
加载
System.getProperty("java.ext.dirs")目录下的类,该类加载器有c++代码实现
扩展类加载器
加载
System.getProperty("java.class.path")目录下的类 该类由java代码实现
系统类加载器
加载用户写的类,同样是由java代码实现
自定义类加载器
继承ClassLoader类,重写findClass方法,在该方法中调用
defineClass方法获取对应的class对象并返回
FileInputStream fileInputStream = new FileInputStream("C://Users//Dronff//Desktop//TEST//A.class");
byte[] t = new byte[1024];
ByteArrayOutputStream byteArrayOutputStream = new ByteArrayOutputStream();
int length = -1;
while ((length = fileInputStream.read(t))!=-1){
byteArrayOutputStream.write(t,0,length);
}
return defineClass("A",byteArrayOutputStream.toByteArray(),0,byteArrayOutputStream.size());
他们的加载顺序是 根加载器加载扩展类加载器再由扩展类加载器加载系统类加载器
上下文类加载器
由于双亲委派机制的存在 jdbc jndi这类使用中,
JDBC的接口在rt.jar包中(这个包是由根类加载器加载的),所以无法访问到由下层类加载器加载的类,所以需要有一个线程上下文类加载器
上下文类加载器默认是系统类加载器,可以使用
重要!!!!!!!!
package com.dronff;
import sun.net.spi.nameservice.dns.DNSNameService;
import java.sql.Driver;
import java.util.ServiceLoader;
import java.util.function.Consumer;
/**
* @author: tyf
* @date: 2022/8/4 21:30
* @description: todo(你干嘛 哈哈 哎哟)
*/
public class Test {
public static void main(String[] args) throws ClassNotFoundException, InstantiationException, IllegalAccessException {
Class<?> aClass = Class.forName("com.mysql.cj.jdbc.Driver");
new IM();
//根类加载器 -> 扩展类加载器 -> 系统类加载器
System.out.println(Object.class.getClassLoader()==null);
System.out.println(System.getProperty("java.ext.dirs"));
System.out.println(System.getProperty("java.class.path"));
System.out.println(DNSNameService.class.getClassLoader());
System.out.println(DNSNameService.class.getClassLoader().getClass().getClassLoader());
MyClassLoader myClassLoader = new MyClassLoader();
Class<?> a = myClassLoader.findClass("A");
System.out.println(a);
myClassLoader.loadClass("A");
a.newInstance();
ServiceLoader<Driver> load = ServiceLoader.load(Driver.class);
System.out.println("长度:"+load.iterator().hasNext());
load.forEach(inter -> System.out.println(inter instanceof Driver));
}
}
ServiceLoader貌似只能加载根加载器加载的接口
原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/278968.html