//随机加在任何一个实例化的bean下
static {
try {
ArrayList urls = Collections.list(Thread.currentThread().getContextClassLoader().getResources("META-INF"));
if (urls != null) {
for (Object object : urls) {
System.out.println("======================" + object);
}
}
} catch (Exception e) {
}
}
打印classpath下加载的jar包
最新推荐文章于 2023-04-15 00:26:29 发布