Skip to content

Instantly share code, notes, and snippets.

@marcosabel
Last active February 27, 2019 17:18
Show Gist options
  • Save marcosabel/35b47e18e67397397f2dd4633b483da6 to your computer and use it in GitHub Desktop.
Save marcosabel/35b47e18e67397397f2dd4633b483da6 to your computer and use it in GitHub Desktop.
import java.util.Calendar;
import lombok.Builder;
import lombok.Value;
import com.fasterxml.jackson.annotation.JsonIgnore;
@Builder
@Value
public class JacksonExample {
private String fieldOne;
@JsonIgnore
private String fieldTwo;
private Calendar someDate;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment