我正在使用Spring Boot,我需要接受具有application / json格式的http请求。有些参数等于“”,我需要接受带有null的那些参数。
我知道有一些类似的问题,但是对于这些问题没有任何具体的答案,如果有人可以对代码实现进行具体说明,我将不胜感激。
================================================ =====================
这是我最终的代码解决方案,希望对您有所帮助。
@Configuration public class MessageConverterConfig{ @Bean @Primary // Use this to shadow other objectmappers public ObjectMapper objectMapper(){ ObjectMapper objMapper = new ObjectMapper(); objMapper.configure(DeserializationFeature.ACCEPT_EMPTY_STRING_AS_NULL_OBJECT,true); return objMapper; } }