private ObjectMapper mapper;
this.mapper = new ObjectMapper();因此,我尝试创建自己的Objectmapper @Component,它只是像这个线程中的一些答案那样扩展了ObjectMapper: --让我们称它为FromLegacyObjectMapper --我试着把它弄起来然后像这样跑:
frontend <---> My Api using Standard Objec
@Configuration public ObjectMapperobjectMapper() {return new ObjectMapper();}
我正在创建对象映射器( ObjectMapper,Jackson) bean作为模型映射器,但是我相信Spring必须抛出BeanDefinitionOverrideException,因为我正在重写ObjectMapper。