Search code examples
javaclassloader

How can I write a ClassLoader that does this?


I'm trying to make a URLClassLoader which behaves as follows:

  • If asked for a class whose name is in a given set of inclusions, load it as normal
  • Otherwise, return a dummy class of my choice

How should I go about this? My attempt at doing this didn't work - see my earlier question for details.


Solution

  • Basically, you cannot do this. See my answer to your earlier question.