Настройка схемы XSD для маршаллера и демаршалера JAXB:
SchemaFactory schemaFactory = SchemaFactory.newInstance(W3C_XML_SCHEMA_NS_URI);
InputStream schemaStream = openMySchemaFileStream();
Schema schema = schemaFactory.newSchema(new StreamSource(schemaStream));
marshaller.setSchema(schema);
unmarshaller.setSchema(schema);
Проверка строки XML путем ее демаршаллинга:
Reader reader = new StringReader(xml);
StreamSource source = new StreamSource(reader);
unmarshaller.unmarshal(source, YourJAXBClass.class);
Проверка объекта JAXB путем маршаллинга в SAX 'DefaultHandler, который ничего не делает:
marshaller.marshal(obj, new DefaultHandler());