vote up 0 vote down star

Hello!

I have

@XmlAttribute(required=true)

in hundreds places in a projects.

Can I make this default?...

...So that I then only need to specify

@XmlAttribute(required=false)

when needed.

flag

64% accept rate

1 Answer

vote up 0 vote down check

No, that behaviour is hard-wired. However, the required attribute is really a lightweight alternative to a proper XML schema. If you need better control over document validation, then I suggest you define an XML Schema for your documents, and inject the schema into the JAXBContext. The documents will then be checked on marshalling and unmarshalling, and you won't have to rely on the annotations for validation.

link|flag
Would you suggest that I first let JAXB generate a schema file, then modify it, and then let JAXB use that for validation? – ivan_ivanovich_ivanoff Aug 3 at 22:37
Yeah, that's a good approach. – skaffman Aug 25 at 15:50

Your Answer

Get an OpenID
or

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