tags:

views:

243

answers:

2

What is the difference between JAXP and JAXB.

+2  A: 

JAXP (Java API for XML Processing) is a rather outdated umbrella term covering the various low-level XML APIs in JavaSE, such as DOM, SAX and StAX.

JAXB (Java API for XML Binding) is a specific API (the stuff under javax.xml.bind) that uses annotations to bind XML documents to a java object model.

skaffman
A: 
harigm