I have the following simple code iterating over a PersistentSet:
if (workers instanceof PersistentSet) {
for (Object worker : workers) { // failed to lazily initialize a collection of role: ...
}
}
I get the following exception:
failed to lazily initialize a collection of role...
What is the wrong thing in my code?