jackson objectMapper json字符串、对象bean、map、数组list互相转换常用的方法
-对象转json字符串Useruser=newUser();StringuserJson=mapper.writeValueAsString(user);-Map转json字符串Mapmap=newHashMap();Stringjson=mapper.writeValueAsString(map);-数组list转json字符串Student[]stuArr={student1,student2