ppamorim

Untitled

Sep 26th, 2014
358
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.30 KB | None | 0 0
  1. import com.fasterxml.jackson.databind.DeserializationFeature;
  2. import com.fasterxml.jackson.databind.ObjectMapper;
  3.  
  4. public class JsonMapper extends ObjectMapper {
  5.  
  6.     public JsonMapper() {
  7.         super();
  8.         configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false);
  9.     }
  10.    
  11. }
Advertisement
Add Comment
Please, Sign In to add comment