Java教程

pagehelper使用报错

本文主要是介绍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>
这篇关于pagehelper使用报错的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!