I'm trying to retrieve synchronized method using reflection API.
Sample code snippet given below:
class ABC {
class XYZ {
synchronized List methodOfXYZ() {
System.out.println("Im in Method");
// do sum stuff
return <Obj-List>;
}
}
}
I'm getting the runtime exception like:
java.lang.IllegalAccessException: Class "com.TestReflection" can not access a member of class "com.ABC$XYZ" with modifiers "synchronized".
try this: