vote up 1 vote down star

I've tried this, but get a ClassNotFoundException when calling:

Class.forName("com.AClass", false, mySpecialLoader)
flag
can you elaborate a little more? – Thilo Sep 24 '08 at 4:17
need more information. You could be getting classnotfound for so many reasons... – John Gardner Sep 24 '08 at 4:45
Sorry, didn't know about comments! I've extended ClassLoader, and overrided loadClass(String, boolean). Basically, in the exceptional case it just returning an existing Class<?> object. – Michael Liddle Sep 24 '08 at 8:57

2 Answers

vote up 4 vote down

The ClassLoader will have to call defineClass to get the Class. According to the JavaDoc for defineClass:

If name is not null, it must be equal to the binary name of the class specified by the byte array.

If the name is null, it will get it from the bytecode. So you can return any class you want as long as it's called com.AClass. In other words, you could have multiple versions of com.AClass. You could even use something like JavaAssist to create a class on the fly.

But that doesn't explain the ClassNotFoundException - it sounds like your class loader isn't returning anything.

link|flag
vote up 1 vote down

It is impossible to return a class named differently than the one requested. However it is possible to use bytecode manipulation tools like ASM to automatically rename the class you want to return to the one requested.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.