I have some new xsd schema version updates for which I need to generate corresponding java classes. In the past, I understand that the classes where always generated using EclipseLink's Moxy JAXB implementation and I can see that if the schemas contained <xs:restriction/> patterns such as <xs:pattern value="[a-zA-Z]"/>, then the corresponding java classes would be generated with @Pattern(regexp="[a-zA-Z]", message= "...") annotations in them.
When I use Moxy in my setup to generate these java classes, the classes are generated okay but without the @Pattern annotations in them. I am not too familiar with JAXB and I am wondering what I may be missing to allow for these annotations to be derived from the schemas and inserted into the java classes themselves automatically.
I am not too sure if this is because I am not using a new enough version of Moxy (currently using 2.1.2 version of EclipseLink) which allows for these annotations to be automatically created or, whether previously another tool was used for inserting these annotations into the classes.
Any help on this matter would be much appreciated.
Regards, PM.