mybatis仅传入一个String类型参数报错
Posted zhouke233
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mybatis仅传入一个String类型参数报错相关的知识,希望对你有一定的参考价值。
mybatis中仅传入一个String类型参数时,不可以用 以下方式
List<Map<String,Object> selectEmployee(String time)
这种方式传参会报错There is no getter for property named ‘id‘ in class ‘java.lang.String‘
目前我知道有两种方式解决问题
1.用 _parameter
<if test="_parameter !=null and _parameter !=‘‘"> DATE_FORMAT( dms.statistic_date, ‘%Y-%m‘ ) = #_parameter,jdbcType=VARCHAR </if>
2.在mapper中参数加上@Param注解
List<Map<String,Object> selectEmployee(@param("time") String time)
以上是关于mybatis仅传入一个String类型参数报错的主要内容,如果未能解决你的问题,请参考以下文章