Consider putting the data in a Properties object and use its load()/store() serialization. That's a text-based technique so it's still readable in the database:
public String getFieldsAsString() {
Properties data = new Properties();
data.setProperty( "foo", this.getFoo() );
data.setProperty( "bar", this.getBar() );
.
Consider ..
ByteArrayOutputStream out = new ByteArrayOutputStream();
data.store( out, "" );
return new String( out.toByteArray(), "8859-1" ); //store() always uses this encoding
}
To load from string, do similar using BeanUtils to get data to/from a bean and a Map/Properties new Properties object .
Consider having a POJO interface, but and load() the back-end data.
This is really a Map<String,Object> of key/value pairsbetter than Java serialization because it's very readable and compact.The get/set hides this from client code, but now
If you can easily move to/from the Map need support for different data types (i.e. not just String), use BeanUtils to convert each field to and database columnsfrom a string representation.
