記錄一個坑爹的問題,springboot壞境下使用PageHelper不起做用
PageHelper.startPage(pageNo,pageSize)
上面語句跟隨的mapper查出來的老是全部數據,並無分頁。git
排查以後發現問題出在pom文件依賴錯了,springboot壞境要用github
<dependency> <groupId>com.github.pagehelper</groupId> <artifactId>pagehelper-spring-boot-starter</artifactId> <version>{springbootPageHelper.version}</version> </dependency> |
而不是原來的spring
<dependency> <groupId>com.github.pagehelper</groupId> <artifactId>pagehelper</artifactId> <version>{pagehelper.version}</version> </dependency> |
由於上面的依賴缺乏了springboot
<dependency><groupId>com.github.pagehelper</groupId><artifactId>pagehelper-spring-boot-autoconfigure</artifactId></dependency> |