Skip to content

Instantly share code, notes, and snippets.

@ssaurel
Created July 20, 2018 13:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ssaurel/000ef61a1531fed2470261c8632315fd to your computer and use it in GitHub Desktop.
Save ssaurel/000ef61a1531fed2470261c8632315fd to your computer and use it in GitHub Desktop.
Encode JAVA Objects to JSON on the SSaurel's Blog
public String encode(Groups groups) {
// Encode POJO hierarchy to JSON quickly with Fastjson
return JSON.toJSONString(groups);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment