Reputation: 53876
I've encountered some code that is using Spring ehcache. The objects that are being cached do not implement the serializable interface.
class MyObj(){
}
List<MyObj> = new ArrayList<MyObj>
So even though ArrayList implements serializable should'nt MyObj also implement serializable for ehcache to work correctly ?
Upvotes: 2
Views: 4748