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

I have the following xml:

<parameters>
    <parameter >value1</param>
    <parameter >value2</param>
</parameters>

with the following class:

@XmlRootElement
public class Parameters {
    @XmlElement public String parameter;
}

How can I get warned (exception?) of the duplicate values when unmarshaling the xml to object?

share|improve this question

1 Answer

up vote 2 down vote accepted

You should have a schema a make a schema validation. If your schema permits duplicates then maybe you should switch from String to a Collection type.

If you don't have a schema, you could use schemagen tool to generate it from your java classes. You could even generate a schema at runtime, maybe cache it together with the JaxbContext and then use it for validation.

share|improve this answer
can I avoid duplicates only using the java class? – oshai Aug 16 '12 at 9:33
I updated the answer, I don't think you can do this type of validation another way. – tibtof Aug 16 '12 at 9:39
1  
+1 - The following article demonstrates how to leverage schema validation during an unmarshal operation: blog.bdoughan.com/2010/12/jaxb-and-marshalunmarshal-schema.html – Blaise Doughan Aug 16 '12 at 13:22

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.