jaxb: create, validate xml message and edit xml schema

19
JAXB: XML Binding Create, Validate XML Message and Edit XML Schema e-mail: [email protected]

Upload: sitdhibong-laokok

Post on 05-Dec-2014

10.091 views

Category:

Technology


6 download

DESCRIPTION

Explain how to generate java xml binding class from xml schema file validation xml message and editing xml schema

TRANSCRIPT

Page 1: JAXB: Create, Validate XML Message and Edit XML Schema

JAXB: XML BindingCreate, Validate XML Message and Edit XML Schema

e-mail: [email protected]

Page 2: JAXB: Create, Validate XML Message and Edit XML Schema

Agenda

Create: Java binding class and XML message

Validate: XML Source (file, stream, etc.)

Edit: XML Schema

Page 3: JAXB: Create, Validate XML Message and Edit XML Schema

Create

JDK 6

JAXB: Java Architecture for XML Binding

xjc: generate binding class

XML Schema file

Editor: NotePad++, TextMate, vi, etc.

Apache Ant

Page 4: JAXB: Create, Validate XML Message and Edit XML Schema

<?xml version="1.0" encoding="UTF-8"?><xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:jxb="http://java.sun.com/xml/ns/jaxb" jxb:version="2.0">

...

</xs:schema>

Page 5: JAXB: Create, Validate XML Message and Edit XML Schema

# xjc [-options ...] schema

info: http://technology-related.com/javaee/5/docs/tutorial/doc/bnbah.html

Page 6: JAXB: Create, Validate XML Message and Edit XML Schema

# xjc -p net.sitdh.schema \ schema/test.xsd

info: http://technology-related.com/javaee/5/docs/tutorial/doc/bnbah.html

Page 7: JAXB: Create, Validate XML Message and Edit XML Schema
Page 8: JAXB: Create, Validate XML Message and Edit XML Schema
Page 9: JAXB: Create, Validate XML Message and Edit XML Schema
Page 10: JAXB: Create, Validate XML Message and Edit XML Schema
Page 11: JAXB: Create, Validate XML Message and Edit XML Schema
Page 12: JAXB: Create, Validate XML Message and Edit XML Schema

Validate

XML Source (File, Stream, etc.)

Java Binding Class

XML Schema file

Page 13: JAXB: Create, Validate XML Message and Edit XML Schema

Validator

ContentObjects

XML Source

XML Schema Source

Valid

Invalid

Binding Class

1

2

3

4 5

Page 14: JAXB: Create, Validate XML Message and Edit XML Schema

1

2

5

3

4

Page 15: JAXB: Create, Validate XML Message and Edit XML Schema
Page 16: JAXB: Create, Validate XML Message and Edit XML Schema

Edit

XML Schema File

XML Schema Syntax

Page 17: JAXB: Create, Validate XML Message and Edit XML Schema
Page 18: JAXB: Create, Validate XML Message and Edit XML Schema
Page 19: JAXB: Create, Validate XML Message and Edit XML Schema