An open API service indexing awesome lists of open source software.

https://github.com/tyrcho/java-xml-serialization-demo


https://github.com/tyrcho/java-xml-serialization-demo

Last synced: about 2 months ago
JSON representation

Awesome Lists containing this project

README

          

## Sample project for basic, pure Java, serialization of XML files

### Usage

run maven to generate the java types related to your xsd files
(the xjc plugins looks for xsd files in `src/main/xsd`)

mvn jaxb2:xjc


Files are generated in `target/generated-sources`

You can configure the target package in the `pom.xml` file.

Then run the `main` from `XmlSerializationDemo`

## See also