What should a programmer do in case of the following error? EJB5013: problem occurred while desenalizing statefulbeen state.
Answers
Answered by
0
Answer:
Clear all the concepts
Answered by
0
A programmer should make ensure that the classes required during deserialization are available in case of this error.
- The error "EJB5013: problem occurred while deserializing stateful bean state" occurs when all the classes are not present for deserialization.
- The programmer should check the classpath of the application.
- He can get the root of all classpath by passing an empty String into "ClassLoader#getResources( )." The code for the same is
Enumerate<URL> roots = classLoader . getResources(" ");
Similar questions