Control serialization of GWT

Posted by Phuong Nguyen de ManCity fan on Stack Overflow See other posts from Stack Overflow or by Phuong Nguyen de ManCity fan
Published on 2010-04-26T09:24:02Z Indexed on 2010/04/26 13:53 UTC
Read the original article Hit count: 259

Filed under:
|

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?

© Stack Overflow or respective owner

Related posts about gwt

Related posts about serialization