How do I specify minOccurence and maxOccurence for the collection(list) in .java file with jaxb annotations?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
You can't. JAXB annotations have only a very minimal set of validation abilities. If you need to perform validation at runtime, you need to use an XML Schema for this. If you need to generate an XML Schema from Java, then you need to alter it after you generate it, to add the various bits of tight validation that you need. |
|||
|