Skip to content

Instantly share code, notes, and snippets.

@marcus-nl
Created September 13, 2014 11:29
Show Gist options
  • Save marcus-nl/e1e70202c3890fc8e809 to your computer and use it in GitHub Desktop.
Save marcus-nl/e1e70202c3890fc8e809 to your computer and use it in GitHub Desktop.
EmberSchema to JSON
EmberSchema schema = ...;
JsonGenerator jgen = objectMapper.getFactory()
.createGenerator(System.out)
.useDefaultPrettyPrinter();
jgen.writeObject(schema);
jgen.close();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment