在测试时报错:There is no getter for property named 'id' in 'class java.lang.Integer'
问题分析:Mybatis默认采用ONGL解析参数,所以会自动采用对象树的形式取integer.id值,引起报错。
解决方法: public User findUserById(@Param("id")int id);说明参数值。
本文共 336 字,大约阅读时间需要 1 分钟。
在测试时报错:There is no getter for property named 'id' in 'class java.lang.Integer'
问题分析:Mybatis默认采用ONGL解析参数,所以会自动采用对象树的形式取integer.id值,引起报错。
解决方法: public User findUserById(@Param("id")int id);说明参数值。
转载于:https://www.cnblogs.com/flandre/p/6276833.html