Replacement System Classloader for Classes In Jars containing Jars

前端 未结 2 665
无人及你
无人及你 2020-11-30 07:55

So far, the examples I have seen for custom ClassLoaders involve subclassing the URLClassLoader, and using that specific instance to load classes in resources.

I hav

2条回答
  •  一向
    一向 (楼主)
    2020-11-30 08:30

    Run JVM with java.system.class.loader property:

    java -Djava.system.class.loader=myClassLoader myApplication
    

提交回复
热议问题