Skip to content

Instantly share code, notes, and snippets.

View cpeeyush's full-sized avatar

Peeyush Chandel cpeeyush

View GitHub Profile
@cpeeyush
cpeeyush / .gitignore
Created January 14, 2018 20:03 — forked from lordofthelake/.gitignore
.gitignore for Maven, Intellij, Eclipse
# Eclipse
.classpath
.project
.settings/
# Intellij
.idea/
*.iml
*.iws
@cpeeyush
cpeeyush / JsonUtils.java
Created April 15, 2017 09:09
Common Json Utilities based on jackson
package com.peeyush.common.utils;
import com.fasterxml.jackson.annotation.JsonInclude.Include;
import com.fasterxml.jackson.core.JsonGenerationException;
import com.fasterxml.jackson.core.JsonParseException;
import com.fasterxml.jackson.core.JsonProcessingException;
import com.fasterxml.jackson.core.type.TypeReference;
import com.fasterxml.jackson.databind.DeserializationFeature;
import com.fasterxml.jackson.databind.JsonMappingException;
import com.fasterxml.jackson.databind.JsonNode;