자바 클래스 로 딩 및 사용자 정의 클래스 로 더 상세 설명
모든 종류의 로 더 는 ClassLoader 의 하위 클래스 입 니 다.
클래스 로 더 는 영원히.class 가 실행 하 는 디 렉 터 리 를 기준 으로 합 니 다.
classpath 루트 디 렉 터 리 의 파일 을 읽 는 방법 은 다음 과 같 습 니 다.
1.자바 프로젝트 에서 다음 과 같은 방식 으로 classspath 의 파일 을 가 져 올 수 있 습 니 다.
public void abc(){
// , Appclassloader
ClassLoader cl = ReadFile.class.getClassLoader();
URL url = cl.getResource("a.txt");
System.err.println("url1 is:"+url.getPath());
// , ClassLoader
URL url2 = ClassLoader.getSystemResource("a.txt");
System.err.println("url2 is:"+url2.getPath());
}
Tomcat 에서 tomcat 는 두 가지 종류의 캐리어 를 설명 했다.StandardClassLoaderC tomcat/lib/*.jar 불 러 오기 - serlvetapi.jar
Webappclasloader/tomcat/webapps/project/web-inf/lib/*.jar 불 러 오기 && web-inf/classes/*.class
모든 항목 에서 클래스 를 가 져 오 는 로 더 는 다음 과 같은 방식 을 사용 해 야 합 니 다.
SomeClass(당신 이 쓴).class.getClassLoader().getResource;이 종류의 클래스 로 더 가 져 오기
자바 프로젝트 중:AppClassLoader
웹 프로젝트 중:WebAppClassLoader
부모 클래스 로 더 테스트:
public class OneServlet extends HttpServlet {
@Override
public void doGet(HttpServletRequest req, HttpServletResponse resp)
throws ServletException, IOException {
ClassLoader loader = OneServlet.class.getClassLoader();//WebAppClassLoader
int index=1;
while(loader!=null){
System.err.println((index++)+" :"+loader.getClass());
loader=loader.getParent();//
}
}
}
실행 결과:
1 :class org.apache.catalina.loader.WebappClassLoader
2 :class org.apache.catalina.loader.StandardClassLoader
3 :class sun.misc.Launcher$AppClassLoader
4 :class sun.misc.Launcher$ExtClassLoader
사용자 정의 클래스 로 더JDK 는 A 클래스 의 바이트 코드 를 어떤 종류의 로 더 로 읽 으 면 A 클래스 는 어떤 종류의 로 더 에 의 해 불 러 옵 니까?
같은 이름 의 클래스 입 니 다.서로 변환 할 수 있 는 지,같은 종류의 로 더 에 있 는 지 확인 하 십시오.
package cn.hx.demo;
import java.io.File;
import java.io.FileInputStream;
import java.io.InputStream;
import java.net.URL;
public class MyClassLoader2 extends ClassLoader {
/**
* name:cn.itcast.demo.Person
* .class
* cn.itcast.demo.person = > cn/itcast/demo/Person.class
*/
public Class<?> findClass(String name ) throws ClassNotFoundException {
String classNameWithPackage=name;
Class<?> cls = null;
try {
//
name = name.replace(".","/");
name +=".class";
//
URL url = MyClassLoader2.class.getClassLoader().getResource(name);
System.err.println(">>:"+url.getPath());
File file = new File(url.getPath());
InputStream in = new FileInputStream(file);
// .class
byte[] b = new byte[in.available()];//
int len = in.read(b);//len=621
System.err.println(len);
/**
*
*/
cls = defineClass(classNameWithPackage,b,0,len);
} catch (Exception e) {
e.printStackTrace();
}
return cls;
}
}
테스트 클래스 사용자 정의 클래스 로 더
public class ClassLoaderDemo {
public static void main(String[] args) throws Exception {
MyClassLoader2 mc = new MyClassLoader2();
Class cls = mc.findClass("cn.itcast.demo.Person");
Object o = cls.newInstance();
System.err.println("toString:"+o+","+o.getClass().getClassLoader());
// peron AppClassLoader
System.err.println(">>:"+Person.class.getClassLoader());
// o mc 。 Person App , =
//Person p = (Person) o;// ClassCastException
//System.err.println(p);
}
}
이상 은 본 고의 모든 내용 입 니 다.본 고의 내용 이 여러분 의 학습 이나 업무 에 어느 정도 도움 이 되 기 를 바 랍 니 다.또한 저 희 를 많이 지지 해 주시 기 바 랍 니 다!
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Is Eclipse IDE dying?In 2014 the Eclipse IDE is the leading development environment for Java with a market share of approximately 65%. but ac...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.