through reference chain: propertymanagement.entity.R[“list“]

编程入门 行业动态 更新时间:2024-10-08 08:33:29

through reference <a href=https://www.elefans.com/category/jswz/34/1757048.html style=chain: propertymanagement.entity.R[“list“]"/>

through reference chain: propertymanagement.entity.R[“list“]

一、问题描述

Resolved [org.springframework.http.converter.HttpMessageConversionException: Type definition error: [simple type, class org.apache.ibatis.executor.loader.javassist.JavassistProxyFactory$EnhancedResultObjectProxyImpl]; nested exception is com.fasterxml.jackson.databind.exc.InvalidDefinitionException: No serializer found for class org.apache.ibatis.executor.loader.javassist.JavassistProxyFactory$EnhancedResultObjectProxyImpl and no properties discovered to create BeanSerializer (to avoid exception, disable SerializationFeature.FAIL_ON_EMPTY_BEANS) (through reference chain: com.example.propertymanagement.entity.R["list"]->java.util.ArrayList[0]->com.example.propertymanagement.entity.Payment_$$_jvstd3b_0["handler"])]

大意是,`com.example.propertymanagement.entity.R["list"]`要转换成Json,转换失败。

问题代码段:

    /*** 获取用户需缴费单列表* @return*/@RequestMapping("/myList")public R myList(@RequestBody Integer id){List<Payment> list = paymentService.getByUserId(id);System.out.println(list);Map<String,Object> map = new HashMap<>();map.put("list",list);return R.ok(map);}

二、解决方法

既然帮转json转不了,那就自己转json。

    /*** 获取用户需缴费单列表* @return*/@RequestMapping("/myList")public R myList(@RequestBody Integer id){List<Payment> list = paymentService.getByUserId(id);Object json = JSON.toJSON(list);    //自己将数据转为jsonMap<String,Object> map = new HashMap<>();map.put("list",json);return R.ok(map);}

更多推荐

through reference chain: propertymanagement.entity.R[“list“]

本文发布于:2024-02-07 03:05:14,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1752899.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:chain   reference   propertymanagement   list   entity

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!