大家好,又见面了,我是你们的朋友全栈君。如果您正在找激活码,请点击查看最新教程,关注关注公众号 “全栈程序员社区” 获取激活教程,可能之前旧版本教程已经失效.最新Idea2022.1教程亲测有效,一键激活。
Jetbrains全系列IDE使用 1年只要46元 售后保障 童叟无欺
spring根本不会去管自己被放在哪里,它统统使用TCCL来加载类,而TCCL默认设置为了WebAppClassLoader,也就是说哪个WebApp应用调用了spring,spring就去取该应用自己的WebAppClassLoader来加载bean。这在真正理解线程上下文类加载器(多案例分析)中已有详细描述。
因此,为了使spring使用自定义的类加载器进行加载,需要开一个线程,将这个线程的类加载器设置为自定义类加载器。
public String test(){
try{
// MyClassLoaderCustom 见 https://blog.csdn.net/qq_32506245/article/details/113059028
MyClassLoaderCustom myClassLoaderCustom = new MyClassLoaderCustom(Thread.currentThread().getContextClassLoader().getParent());
Callable<String> callable=()->{
ApplicationContext ctx=new ClassPathXmlApplicationContext("application.xml");
TestA testA=(TestA) ctx.getBean("com.example.TestA");
return testA.getClass().getClassLoader().toString();
};
FutureTask<String> task=new FutureTask<>(callable);
Thread thread=new Thread(task);
// 设置线程上下文类加载器
thread.setContextClassLoader(myClassLoaderCustom);
thread.start();
while (!task.isDone());
return task.get();
}catch (Exception e){
e.printStackTrace();
}
return null;
}
参考网站
真正理解线程上下文类加载器(多案例分析)
saturn java 热加载(二)资源文件 spring & logback
发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/196835.html原文链接:https://javaforall.cn
【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛
【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...