pagehelper使用报错
作者:互联网
项目名:ssm_test
问题描述:使用pagehelper时,报错You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'LIMIT 1'
解决:xxxmapper.xml文件中的查询语句多写了一个分号,删除即可
原因:因为PageHelper插件会在查询语句后拼接上limit,导致报错
<select id="getById" resultMap="goodsResultMap">
select * from tbl_goods;limit 1,5;
</select>
标签:语句,syntax,limit,使用,报错,pagehelper,your 来源: https://www.cnblogs.com/wjunn/p/16343075.html