当前使用版本(必填,否则不予处理)
Implementation-Version: 3.4.0
该问题是如何引起的?(确定最新版也有问题再提!!!)
controller 层 传参问题,Int String 不能转为 Serializable
重现步骤(如果有就写完整)
@ResponseBody
@RequestMapping("get")
public R selectOne(Serializable id) {
return success(this.baseAccountService.getById(id));
}
可行
@ResponseBody
@RequestMapping("get")
public R selectOne(Integer id) {
return success(this.baseAccountService.getById(id));
}
报错信息
llegalStateException: No primary or default constructor found for interface java.io.Serializable