Castor | |
Latest Release Version: | 1.4.1 |
Operating System: | Cross-platform (JVM) |
Platform: | Java Virtual Machine |
Programming Language: | Java |
Genre: | Data binding |
License: | Apache 2.0 |
Castor is a data binding framework for Java with some features like Java to Java-to-XML binding, Java-to-SQL persistence, paths between Java objects, XML documents, relational tables, etc.[1] [2] [3] Castor is one of the oldest data binding projects.[3]
Basic process flows include class generation, marshalling, unmarshalling, etc.[2] Marshalling framework includes a set of ClassDescriptors and FieldDescription to describe objects.[3]
Class generation is similar to JAXB and Zeus. Castor supports XML Schema instead of DTDs (DTDs are not supported by Castor).[2] [3] [4]
Unmarshalling and marshalling are dealt with marshall and unmarshall methods respectively. During marshalling, conversion process from Java to XML is carried out, and, during unmarshalling, conversion process from XML to Java is carried out. Mapping files are the equivalent of a binding schema, which allows to transforms names from XML to Java and vice versa.[2]
Castor offers some additional features which are not present in JAXB. Additional features include:
Code for marshalling may look like as follows:
Code for unmarshalling may look like as follows:
Sample mapping file may look like as follows: