Long story short : when mapping XML, is it better to have complex types and thus multiple top-level classes or just anonymous types and thus hierarchies of inner classes?
Long story : I am in a fortunate position to have the schema the way i like it. I tried both approaches with eclipse and XJC and discovered that the classes generated from a schema with complex types lead to an inexplicable ClassCastException on unmarshalling (i guess i did sth wrong but lacking experience with JAXB i cant put my finger on it yet). The anonymous type/inner classes approach works fine but seems "smelly" considering separation of concerns and reuse.
Bonus question : is there an obvious mistake inexperienced JAXB/XSD users make frequently WRT complex type mapping that is likely to result in a ClassCastException on unmarshalling?
Thank you.