There is no getter for property named 'XXX' in 'cl

一、发现问题

 
Mybatis查询传入一个字符串传参数,报There is no getter for property named 'num' in 'class java.lang.String'。


 

二、解决问题


无论参数名,都要改成"_parameter"。


 

三、原因分析

Mybatis默认采用ONGL解析参数,所以会自动采用对象树的形式取string.num值,引起报错。也可以public List methodName(@Param(value="num") String num)的方法说明参数值

 

参考博客:

http://blog.sina.com.cn/s/blog_86e49b8f010191hw.html

http://txin0814.iteye.com/blog/1533645

转载于:https://my.oschina.net/passer007/blog/711588

你可能感兴趣的:(There is no getter for property named 'XXX' in 'cl)