mybatis-分页
Linit分页
1 | 语法:SELECT * from user limit startIndex, pageSze; |
mapper.java
1 | public interface UserMapper { |
mapper.xml
1 | <!-- 分页--> |
Test.java
1 |
|
All articles in this blog are licensed under CC BY-NC-SA 4.0 unless stating additionally.
1 | 语法:SELECT * from user limit startIndex, pageSze; |
1 | public interface UserMapper { |
1 | <!-- 分页--> |
1 |
|