我想通过使用对象映射器来序列化不同类型的列表,但我不知道如何一次将不同类型的列表对象传递给对象映射器。以下是我的代码:
AccountingService accService = ServiceFactory.getAccountingService();
List<TaxCategory> taxCategoryList = accService.getAllTaxCategories();
ProductService productService = ServiceFactory.getProductService();
List<SimpleUom> simpleUomList = productService.getSimpleUomsList();
ObjectMapper objMapper;
objMapper.writeValueAsString(?)--
请你建议我必须通过什么而不是?在上面的代码中。这是因为我必须获取包含上述列表的杰克逊序列化字符串作为 jsp 中的单个字符串,并解析该字符串以获取要在客户端使用的单个列表。