Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

JAXB version 1 spec have a Validator object, in version 2 Validator object was depricated and optional. What i need to use instead Validator object?

Thanks!

share|improve this question

1 Answer

up vote 3 down vote accepted

In JAXB 2.0, the setValidating() method has been deprecated. Now, schema validation is performed using the JAXP 1.3 validation API. To validate using JAXB 2.0, create a SchemaFactory

For an example see the Validator Section here

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.