1. 程式人生 > >mybatis之org.apache.ibatis.reflection.ReflectionException: There is no getter for property named 'time' in 'class java.lang.String'

mybatis之org.apache.ibatis.reflection.ReflectionException: There is no getter for property named 'time' in 'class java.lang.String'

mybatis 圖片 配置 style pac prop bubuko type PE

mybatis接口

List<String> getUsedCate(String time);

配置文件

  <select id="getUsedCate" parameterType="java.lang.String" resultType="java.lang.String">
     select distinct(cate.cate_name) from account as acc left join conCategory as cate on acc.cateCode=cate.cate_code
     where time like ‘${time}%‘
  
</select>

報錯

org.apache.ibatis.reflection.ReflectionException: There is no getter for property named ‘time‘ in ‘class java.lang.String‘

解決方法

接口改為

技術分享圖片

mybatis之org.apache.ibatis.reflection.ReflectionException: There is no getter for property named 'time' in 'class java.lang.String'