请教一下,为啥return CommonReturnType.create(itemVO)就会报下面这个错误?

来源:4-3 商品模型模型--商品创建03

dusty_z

2019-01-15 00:54

WARN 2332 --- [nio-8090-exec-1] .m.m.a.ExceptionHandlerExceptionResolver :

Resolved [org.springframework.http.converter.HttpMessageConversionException: Type definition error: [simple type, class com.miaoshaproject.controller.viewobject.ItemVO]; nested exception is com.fasterxml.jackson.databind.exc.InvalidDefinitionException: No serializer found for class com.miaoshaproject.controller.viewobject.ItemVO and no properties discovered to create BeanSerializer (to avoid exception, disable SerializationFeature.FAIL_ON_EMPTY_BEANS) (through reference chain: com.miaoshaproject.response.CommonReturnType["data"])]

我调试了一下,发现

BeanUtils.copyProperties(itemModel, itemVO);

根本就没有把属性值copy给itemVO,但是我的itemModel和itemVO的字段完全一致,包括字段的类型。这是为什么

写回答 关注

7回答

  • aimutong
    2020-06-07 15:10:33

    我也这个错误,哭了


  • 慕村8372306
    2020-04-22 11:28:48

    我也是这个错误555555

  • 慕数据6486521
    2019-09-11 20:06:37

    我也是你这个错误哈哈

  • weixin_慕村3424678
    2019-05-31 11:21:49

    根据你的提示,我也给ItemVO里要加getset方法。但是,程序还是有点儿问题,http://localhost:8090/item/get?id=1

    提示报错(数据库里存在id=1的商品),

    status"fail"
    data
    errCode10002
    errMsg"未知错误"


    但是,http://localhost:8090/item/get?id=3 的时候,却是:

    status"success"
    datanull

    可是,数据库里明明没有id=3的商品啊。。。。。

    还在找原因中.....


    qq_慕数据...

    我也是这样的,兄弟怎么解决啊

    2019-12-19 13:15:44

    共 1 条回复 >

  • 斯基姆斯
    2019-01-23 23:48:24

    翻译过来就是——spring报错说:兄弟,我没办法给你的ItemVO序列化啊,我不能get和set你的ItemVO里的私有变量。。。。spacer.gif 

    dusty_... 回复斯基姆斯

    “特意”锻炼学生的debug能力

    2019-01-25 20:59:57

    共 3 条回复 >

  • 于见怪不怪
    2019-01-23 03:41:02

    3点40看到你这条。。。关灯睡觉了。

  • dusty_z
    2019-01-15 14:00:08

    还是自己来终结吧。经过跟踪源码,发现是忘了给itemVO的属性赋予get/set方法。ps:建议各位不是夜猫子的还是不要半夜里写代码,是真容易出bug。。。

    OCM

    我还想实现序列化接口呢,原来是没有生成get/set方法。

    2019-05-30 18:51:15

    共 1 条回复 >

SpringBoot构建电商基础秒杀项目

应用SpringBoot快速搭建拥有用户、商品、交易及秒杀活动的电商秒杀应用。

49118 学习 · 954 问题

查看课程

相似问题