Skip to content

Instantly share code, notes, and snippets.

View jakubbares's full-sized avatar

Jakub Bareš jakubbares

View GitHub Profile
@jakubbares
jakubbares / Author.java
Created November 2, 2016 19:15 — forked from jirkapenzes/Author.java
Springboot demo
package books.entity;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
@JsonIgnoreProperties(ignoreUnknown = true)
public class Author {
private String firstName;
private String lastName;