mybatis-plus自定义sql使用like查询报错

使用mybatis-plus查询报错:

TypeException: Error setting non null for parameter #5 with JdbcType null
TypeException: Could not set parameters for mapping: ParameterMapping{property='size', mode=IN, javaType=class

排查了半天发现是因为用了like查询,我之前的写法是

 where state like '%#{state}%' ;

正确的写法是需要用concat方法拼接

 where state like CONCAT(’%’,#{state},’%’) ;

你可能感兴趣的:(mybatis-plus自定义sql使用like查询报错)