Skip to content

Instantly share code, notes, and snippets.

@gtudan
Last active November 18, 2018 15:48
Show Gist options
  • Save gtudan/fe1fe4e005b8fc24e5cbe8ed497895f9 to your computer and use it in GitHub Desktop.
Save gtudan/fe1fe4e005b8fc24e5cbe8ed497895f9 to your computer and use it in GitHub Desktop.
Customizing JSON-B using annotations
import javax.json.bind.annotation.*;
public class Greeting {
@JsonbProperty("greeting") // name this field "greeting" in json
private String message;
@JsonbTransient // hide this field
private LocalDate created;
/* ... */
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment