|
@@ -1,6 +1,7 @@
|
|
|
package com.yiqi.framework.config;
|
|
|
|
|
|
import com.fasterxml.jackson.annotation.JsonInclude;
|
|
|
+import com.fasterxml.jackson.databind.DeserializationFeature;
|
|
|
import com.fasterxml.jackson.databind.ObjectMapper;
|
|
|
import org.springframework.context.annotation.Bean;
|
|
|
import org.springframework.context.annotation.Configuration;
|
|
@@ -11,6 +12,7 @@ public class JacksonConfig {
|
|
|
public ObjectMapper objectMapper() {
|
|
|
ObjectMapper mapper = new ObjectMapper();
|
|
|
mapper.setSerializationInclusion(JsonInclude.Include.NON_NULL);
|
|
|
+ mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false);
|
|
|
return mapper;
|
|
|
}
|
|
|
}
|