美文网首页
MyBatis-Plus模糊查询报错:PersistenceEx

MyBatis-Plus模糊查询报错:PersistenceEx

作者: 百度不清 | 来源:发表于2019-12-04 15:47 被阅读0次
问题

今天使用MyBatis-Plus配置xml方式做模糊查询,百度查了下资料:


image.png
image.png

参考这些资料,以上方法全部报错 org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.exceptions.PersistenceException。
我使用的mybatis-plus版本是<version>3.0.5</version>
也不知道这些文章的作者是否有遇到相同的情况。

解决

经过多次修改和测试,最终解决问题的代码如下:


 <if test="info.infoSummary!=null and info.infoSummary!=''">
       AND a.INFO_SUMMARY LIKE concat(concat('%',#{info.infoSummary}),'%')
 </if>

单引号与双引号的区别,失之毫厘,谬以千里。

相关文章

网友评论

      本文标题:MyBatis-Plus模糊查询报错:PersistenceEx

      本文链接:https://www.haomeiwen.com/subject/otrlgctx.html