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

Is there a way to specify a regular expression pattern on an @XmlAttribute somehow through annotations? Is there a way of doing this besides validation through an external schema?

share|improve this question
1  
The MOXy JAXB implementation might have an annotation for this. It would bind you to a specific implementation, but its annotations seem highly useful and worth that investment. Blaise Doughan will probably pipe in with an answer soon. In the meantime, check this: eclipse.org/eclipselink/moxy.php – G_H Oct 25 '11 at 12:13
What are you trying to do? Associate regexp to do what? Match attribute name? Validate the value? – StaxMan Oct 25 '11 at 17:51

1 Answer

up vote 2 down vote accepted

You could use an implementation of JSR-303 which provides both annotations and an XML config file for specifying rules for bean validation:

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.