我遇到了一个问题,看起来它正在被引起,因为同时使用了类加载器的两个实例。计划任务始终运行两次而不是一次,即使设置为避免并发使用也是如此。
如何在运行时唯一标识给定类实例的类加载器实例?我知道它的完全限定名称将是classloader,package和class name的组合。我想知道同一个类加载器的两个单独实例是否同时运行。
我尝试使用以下内容进行日志记录,但是就我实际希望看到的内容(相当于一个独特的线程ID等)而言,它没有给我带来任何帮助。是的,它确实给出了类加载器及其父名称的类型,但这不足以帮助我解决问题。
final String classLoaderInfoCurrentThread = Thread.currentThread().getContextClassLoader().toString();
final String classLoaderInfoClass = getClass().getClassLoader().toString();
logger.debug("Class loader info current thread: " + classLoaderInfoClass);
logger.debug("Class loader info class: " + classLoaderInfoCurrentThread);
上述结果:
类加载器信息类:WebappClassLoader
上下文:
委托:false
库: / WEB-INF /类/
---------->父类加载器: org.apache.catalina.loader.StandardClassLoader@68de123
任何想法都非常感激。
更新:
感谢您的快速反馈。使用系统哈希码足以确认相同的类加载器。 StandardClassLoader上的哈希在回顾中也很有用,正如评论中有用地指出的那样。我对不同的线程ID进行了检查。
使用Spring与Tomcat和Quartz 1.8调度框架。
通过提高Spring / Quartz的日志记录,我能够确定正在启动两个不同的调度程序实例:
org.quartz.core.QuartzScheduler - Scheduler meta-data: Quartz Scheduler (v1.8.6) 'scheduler' with instanceId '<compname>.local1375104695468'
org.quartz.core.QuartzScheduler - Scheduler meta-data: Quartz Scheduler (v1.8.6) 'scheduler' with instanceId '<compname>.local1375104696411'
这似乎存在一个已知问题:
Quartz job runs twice when deployed on tomcat 6/Ubuntu 10.04LTS
答案 0 :(得分:2)
System.identityHashCode(getClass().getClassLoader());
将为不同的classloaders
返回不同的值。您可以将其用作classloader ID
并将其包含在日志信息中。