Steve Ebersole is there a ticket for the 6.0 rewrite? I do have two issues - or thoughts - to add:
- FallbackJavaTypeDescriptor relies on the object's implementation of hashCode() and equals(..) which probably is less reliable than the converted class' implementations. Most converters will convert to primitive and native types (e.g. String) anyway
- using SerializableTypeDescriptor for all Serializable classes seems to be an odd choice. This descriptor serializes objects every time a dirty-check is performed which really doesn't feel right for a @Convert annotated class
|