Normally whats the reason to get java.lang.ClassCastException ..? I get the following error in my application
java.lang.ClassCastException: [Lcom.rsa.authagent.authapi.realmstat.AUTHw
|
Normally whats the reason to get java.lang.ClassCastException ..? I get the following error in my application
|
||||
|
|
According to the documentation: Thrown to indicate that the code has attempted to cast an
|
|||||||
|
|
@Laurențiu Dascălu's answer explains how / why you get a ClassCastException. Your exception message looks rather suspicious to me, but it might help you to know that "[Lcom.rsa.authagent.authapi.realmstat.AUTHw" means that the actual type of the object that you were trying to cast was Normally, the next steps to solving a problem like this are:
|
|||
|
|
|
A
This works because an apple 'is a' fruit. However if we reverse this.
This will throw a ClasCastException because a Fruit is not an Apple. It is good practise to guard any explicit casts with an
|
|||
|
|
|
It's because you're casting to the wrong thing - you're trying to convert to a particular type, and the object that your express refers to is incompatible with that type. For example:
If you could provide a code sample, that would really help... |
|||
|
|
|
To avoid
in your persistence.xml |
||||
|
|
The 2nd line will fail if ClassA is not a subclass of ClassB, and will throw a ClassCastException. |
|||
|
|