Using the "transient" keyword on a variable declaration or "@Transient" on the getter does not stop the XMLEncoder from serializing properties. The only way I've found to tell the XMLEncoder not to serialize specific properties is with code like:
BeanInfo info = Introspector.getBeanInfo(MyClass2.class);
PropertyDescriptor[] propertyDescriptors = info.getPropertyDescriptors();
for (int i = 0; i < propertyDescriptors.length; ++i) {
PropertyDescriptor pd = propertyDescriptors[i];
if (pd.getName().equals("props")) {
pd.setValue("transient", Boolean.TRUE);
}
}
Really??? Is there an easier way that doesn't require runtime code to loop through all the properties? Something like the transient modifier would rock!
Here's a JavaBean that will have all it's properties serialized by XMLEncoder, despite the use of "transient":
import java.io.Serializable;
import java.beans.XMLEncoder;
public class TestJavaBeanSerialization implements Serializable {
public TestJavaBeanSerialization() {}
private transient String myProp1 = null;
private String myProp2 = null;
@Transient public String getMyProp1() { return myProp1; }
public void setMyProp1(String a) { myProp1 = a; }
public String getMyProp2() { return myProp2; }
public void setMyProp2(String a) { myProp2 = a; }
public static void main( String[] args ) {
TestJavaBeanSerialization myObj = new TestJavaBeanSerialization();
myObj.setMyProp1("prop 1");
myObj.setMyProp2("prop 2");
XMLEncoder encoder = new XMLEncoder(System.out);
encoder.writeObject(myObj);
encoder.close();
}
}
Here's the output of running this program:
<?xml version="1.0" encoding="UTF-8"?>
<java version="1.6.0_29" class="java.beans.XMLDecoder">
<object class="TestJavaBeanSerialization">
<void property="myProp1">
<string>prop 1</string>
</void>
<void property="myProp2">
<string>prop 2</string>
</void>
</object>
</java>
UPDATE
I still have not received a definitive answer to the original question. There's this article that people keep referencing, but it's not clear and no one's given a reference to an API or spec that clearly states the only way to mark a property as transient is to loop through all the properties and call "setValue".