Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: 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 10’ at line 1
SQL: select * from department order by did asc; LIMIT 10
SQL查詢語句截圖:
我們知道分頁查詢使用 limit
,而PageHelper
外掛的PageInterceptor
攔截器就是對查詢的sql進行攔截然後後面拼接limit
實現分頁。
進行拼接的時候,就需要我們的sql語句後面沒有結束符號;
分號,將sql語句的;
分號去掉就可以解決這個問題了。