Control serialization of GWT
- by Phuong Nguyen de ManCity fan
I want GWT to not serialize some fields of my object (which implements Serializable interface). Normally, transient keyword would be enough. However, I also need to put the object on memcache. The use of transient keyword would make the field not being stored on memcache also.
Is there any GWT-specific technique to tell the serializer to not serialize a field?