mybatis使用${}的异常There is no getter for property named ‘XXX‘ in ‘class java.lang.String‘解决

解决Mybatis系统异常org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.reflection.ReflectionException: There is no getter for property named ‘date’ in ‘class java.lang.String’

  • 在ssm三层架构项目中,遇到这样的需求: 根据表名(每天一张表,表名和日期相关)查表中信息。
    表名类似:t_log_20221102、t_log_20221102
  • 不能使用#{} 或者concat() 因为这样只是占位符传值,最终传入字符串的话会带引号,sql语句变成: select * from
    t_log_‘20221102’ 语法错误

思路肯定是使用${}进行先拼接字符串,再编译如下:

 <select id="selectByDate" resultType="myLog" parameterType="String">
        select <include refid="allColumns"></include>
        from t_log_${date}
    </select>

但是一直报错:There is no getter for property named ‘date’ in ‘class java.lang.String’

根据意思就是找不到date这个名字注入值。于是在每层接口类中全部为date加上注解,就行了。

public interface MyLogService {
    List<MyLog> selectByDate(
            @Param("date")
            String date
    );
}

至于底层到底为什么,我也很想知道,因为#{}占位符就不需要加注解,直接可以把值注入

看别的博主说可以是:
由于mybatis将接口中的String参数解析为bean属性,就需要有set,get方法,set,get方法一般都写在实体类中,接口中的属性可以通过@Param()注解来实现setter,getter方法。

上面的说法是有道理的,因为mybatis确实是通过set、get方法注入值。但是因为参数是用户输入的,我也不知道和实体类什么关系,所以还是不是很能理解…算球了

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值