How to generate JSON schema from a JAXB annotated class? - Stack Overflow
Have you tried configuring your ObjectMapper to include jaxb introspector? We use spring mvc3 for implementing REST services and use the same model objects to serialize into xml/json.
AnnotationIntrospector introspector = new Pair(new JaxbAnnotationIntrospector(), new JacksonAnnotationIntrospector()); objectMapper.setAnnotationIntrospector(introspector); objectMapper.generateJsonSchema(ImageSuffix.class);
Read full article from How to generate JSON schema from a JAXB annotated class? - Stack Overflow
No comments:
Post a Comment