本文主要是介绍tk.mybatis.mapper.MapperException: 当前实体类不包含名为的属性!,500错误,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
编译器报错:
tk.mybatis.mapper.MapperException: 当前实体类不包含名为的属性!
浏览器报错:
Error: Request failed with status code 500
解决办法:
因为实体类的属性使用的是int
类型,页面传递数据,原始数据(int)类型不能映射,改成包装类(Integer)或者String类型就可以解决问题。
Request processing failed; nested exception is tk.mybatis.mapper.MapperException: 当前实体类不包含名为的属性!
这篇关于tk.mybatis.mapper.MapperException: 当前实体类不包含名为的属性!,500错误的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!