使用java中的ObjectMapper进行Jackson序列化

时间:2013-03-20 10:57:55

标签: java jackson

我想使用对象映射器序列化不同类型的列表,但我不知道如何   一次将不同类型的列表对象传递给对象Mapper。以下是我的代码:

AccountingService accService      = ServiceFactory.getAccountingService();
List<TaxCategory> taxCategoryList = accService.getAllTaxCategories();
ProductService productService     = ServiceFactory.getProductService();
List<SimpleUom> simpleUomList     = productService.getSimpleUomsList();

ObjectMapper objMapper;
objMapper.writeValueAsString(?)--

请你建议我要通过什么而不是?在上面的代码中。这是因为我必须得到包含上面列表的jackson序列化字符串作为jsp中的单个字符串并解析该字符串以获得在客户端使用的单个列表。

1 个答案:

答案 0 :(得分:24)

只需尝试:

ObjectMapper objMapper = new ObjectMapper();
String jsonString = objMapper.writeValueAsString(simpleUomList);

根据评论进行编辑:

您需要创建一个包装两个列表的类,然后编写它:

public class MyLists {
    private List<TaxCategory> taxCategoryList;
    private List<SimpleUom> simpleUomList;
    // + constructor, getters and setters
}

ObjectMapper objMapper = new ObjectMapper();
MyLists myLists = new MyLists(taxCategoryList, simpleUomList);
String jsonString = objMapper.writeValueAsString(myLists);