本文主要是介绍fasterxml.jackson json 字符串转对象相关,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
项目赶进度,直接贴代码了:
使用的包
import com.fasterxml.jackson.databind.ObjectMapper
c解决JsonIgnoreProperties异常
@JsonIgnoreProperties(ignoreUnknown = true) //并配置ignoreUnknown = true,则Jackson在反序列化的时候,会忽略该目标对象不存在的属性
new ObjectMapper().readValue(json,T.class); //json字符串,json转对象//list字符串json转为对象 JavaType javaType = getCollectionTypegetCollectionType(ArrayList.class, ItsmSystemOrganizationBean.class); List<ItsmSystemOrganizationBean> organizationList = (List<ItsmSystemOrganizationBean>) ReturnJsonObject.MAPPER.readValue(organizations, javaType);
/** * 获取泛型的Collection Type * * @param collectionClass 泛型的Collection * @param elementClasses 元素类 * @return JavaType Java类型 * @since 1.0 */ private JavaType getCollectionTypegetCollectionType(Class<?> collectionClass, Class<?>... elementClasses) {return new ObjectMapper.getTypeFactory().constructParametricType(collectionClass, elementClasses); }
这篇关于fasterxml.jackson json 字符串转对象相关的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!