views:

70

answers:

2

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.

A: 

Hello,

extend URLClassLoader in the method loadClass return super.loadClass(originalName) if in the set of inclusions or super.load(myDummyClass) otherwise...

pgras
This won't work. It is essentially the same as what the OP tried in his earlier question.
Stephen C
A: 

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

Stephen C