我有一张地图Map<String, Object> map = new HashMap<>(); 我在这张地图中存储了多种类型的数据。1.) 原始类型 2.) 作为此映射中的值的用户定义类的对象。当我将任何原始类型值转换为 Object 并存储在 Map 中时,它工作正常,但在用户定义的情况下则不然。在此地图中存储用户定义的类型数据时,出现以下错误:-
**ERROR [WebExceptionHandler] Error occurred while serving request. Response is as [Response(
description=Type definition error: [simple type, class com.yyz.util.Abc];
nested exception is com.fasterxml.jackson.databind.exc.InvalidDefinitionException:
No serializer found for class com.yyz.util.Abc
and no properties discovered to create BeanSerializer
(to avoid exception, disable SerializationFeature.FAIL_ON_EMPTY_BEANS)
谁能解释为什么我收到此错误以及解决方案是什么?
慕桂英546537
MM们
相关分类