解决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方法注入值。但是因为参数是用户输入的,我也不知道和实体类什么关系,所以还是不是很能理解…算球了