Unloading classes in java?

前端 未结 7 1641
遥遥无期
遥遥无期 2020-11-22 01:40

I have a custom class loader so that a desktop application can dynamically start loading classes from an AppServer I need to talk to. We did this since the amount of jars th

7条回答
  •  梦毁少年i
    2020-11-22 02:16

    You can unload a ClassLoader but you cannot unload specific classes. More specifically you cannot unload classes created in a ClassLoader that's not under your control.

    If possible, I suggest using your own ClassLoader so you can unload.

提交回复
热议问题