Skip to content

Instantly share code, notes, and snippets.

@ajduke
Created January 5, 2014 14:13
Show Gist options
  • Save ajduke/8268653 to your computer and use it in GitHub Desktop.
Save ajduke/8268653 to your computer and use it in GitHub Desktop.
public class GsonEx {
public static void main(String[] args) throws IOException {
Gson gson = new GsonBuilder().excludeFieldsWithoutExposeAnnotation().create();
String json = gson.toJson(new Developer());
System.out.println(json);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment