接口异常 nested exception is org.apache.ibatis.reflection.ReflectionException: Could not set property 'deptId' of 'class com.yibo.cloud.adverseevent.modules.process.entity.ProcessPubData' with value '4' Cause: org.apache.ibatis.reflection.ReflectionException: There is no setter for property named 'deptId' in 'class com.yibo.cloud.adverseevent.modules.process.entity.ProcessPubData'
时间: 2023-07-19 19:47:05 浏览: 168
kafka处理超大消息的配置 org.apache.kafka.common.errors.RecordTooLargeException
这个异常出现的原因是因为在 com.yibo.cloud.adverseevent.modules.process.entity.ProcessPubData 中没有名为 deptId 的 Setter 方法,导致无法将值设置到该属性中。您需要检查该类中是否存在该属性的 Setter 方法,或者将属性名修改为已有的 Setter 方法名。
阅读全文