├── .github └── workflows │ ├── pull-request.yml │ └── release.yml ├── .gitignore ├── LICENSE ├── README.md ├── pagehelper-spring-boot-autoconfigure ├── pom.xml └── src │ └── main │ ├── java │ └── com │ │ └── github │ │ └── pagehelper │ │ └── autoconfigure │ │ ├── PageHelperAutoConfiguration.java │ │ ├── PageHelperProperties.java │ │ └── PageHelperStandardProperties.java │ └── resources │ └── META-INF │ ├── spring.factories │ └── spring │ └── org.springframework.boot.autoconfigure.AutoConfiguration.imports ├── pagehelper-spring-boot-samples ├── pagehelper-spring-boot-sample-annotation │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── tk │ │ │ └── mybatis │ │ │ └── pagehelper │ │ │ ├── MyCountSqlParser.java │ │ │ ├── MyOrderBySqlParser.java │ │ │ ├── SampleMapperApplication.java │ │ │ ├── domain │ │ │ └── User.java │ │ │ └── mapper │ │ │ └── UserMapper.java │ │ └── resources │ │ ├── META-INF │ │ └── services │ │ │ └── com.github.pagehelper.parser.CountSqlParser │ │ ├── application.properties │ │ └── import.sql ├── pagehelper-spring-boot-sample-xml │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── tk │ │ │ └── mybatis │ │ │ └── pagehelper │ │ │ ├── SampleXmlApplication.java │ │ │ ├── dao │ │ │ └── CityDao.java │ │ │ ├── domain │ │ │ ├── City.java │ │ │ ├── Hotel.java │ │ │ └── User.java │ │ │ └── mapper │ │ │ └── UserMapper.java │ │ └── resources │ │ ├── application.properties │ │ ├── import.sql │ │ ├── mybatis-config.xml │ │ └── tk │ │ └── mybatis │ │ └── pagehelper │ │ └── mapper │ │ └── UserMapper.xml └── pom.xml ├── pagehelper-spring-boot-starter ├── pom.xml └── src │ └── main │ └── resources │ └── META-INF │ └── spring.provides ├── pom.xml ├── properties.png └── wx_mybatis.jpg /.github/workflows/pull-request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pagehelper/pagehelper-spring-boot/HEAD/.github/workflows/pull-request.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pagehelper/pagehelper-spring-boot/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pagehelper/pagehelper-spring-boot/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pagehelper/pagehelper-spring-boot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pagehelper/pagehelper-spring-boot/HEAD/README.md -------------------------------------------------------------------------------- /pagehelper-spring-boot-autoconfigure/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pagehelper/pagehelper-spring-boot/HEAD/pagehelper-spring-boot-autoconfigure/pom.xml -------------------------------------------------------------------------------- /pagehelper-spring-boot-autoconfigure/src/main/java/com/github/pagehelper/autoconfigure/PageHelperAutoConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pagehelper/pagehelper-spring-boot/HEAD/pagehelper-spring-boot-autoconfigure/src/main/java/com/github/pagehelper/autoconfigure/PageHelperAutoConfiguration.java -------------------------------------------------------------------------------- /pagehelper-spring-boot-autoconfigure/src/main/java/com/github/pagehelper/autoconfigure/PageHelperProperties.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pagehelper/pagehelper-spring-boot/HEAD/pagehelper-spring-boot-autoconfigure/src/main/java/com/github/pagehelper/autoconfigure/PageHelperProperties.java -------------------------------------------------------------------------------- /pagehelper-spring-boot-autoconfigure/src/main/java/com/github/pagehelper/autoconfigure/PageHelperStandardProperties.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pagehelper/pagehelper-spring-boot/HEAD/pagehelper-spring-boot-autoconfigure/src/main/java/com/github/pagehelper/autoconfigure/PageHelperStandardProperties.java -------------------------------------------------------------------------------- /pagehelper-spring-boot-autoconfigure/src/main/resources/META-INF/spring.factories: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pagehelper/pagehelper-spring-boot/HEAD/pagehelper-spring-boot-autoconfigure/src/main/resources/META-INF/spring.factories -------------------------------------------------------------------------------- /pagehelper-spring-boot-autoconfigure/src/main/resources/META-INF/spring/org.springframework.boot.autoconfigure.AutoConfiguration.imports: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pagehelper/pagehelper-spring-boot/HEAD/pagehelper-spring-boot-autoconfigure/src/main/resources/META-INF/spring/org.springframework.boot.autoconfigure.AutoConfiguration.imports -------------------------------------------------------------------------------- /pagehelper-spring-boot-samples/pagehelper-spring-boot-sample-annotation/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pagehelper/pagehelper-spring-boot/HEAD/pagehelper-spring-boot-samples/pagehelper-spring-boot-sample-annotation/pom.xml -------------------------------------------------------------------------------- /pagehelper-spring-boot-samples/pagehelper-spring-boot-sample-annotation/src/main/java/tk/mybatis/pagehelper/MyCountSqlParser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pagehelper/pagehelper-spring-boot/HEAD/pagehelper-spring-boot-samples/pagehelper-spring-boot-sample-annotation/src/main/java/tk/mybatis/pagehelper/MyCountSqlParser.java -------------------------------------------------------------------------------- /pagehelper-spring-boot-samples/pagehelper-spring-boot-sample-annotation/src/main/java/tk/mybatis/pagehelper/MyOrderBySqlParser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pagehelper/pagehelper-spring-boot/HEAD/pagehelper-spring-boot-samples/pagehelper-spring-boot-sample-annotation/src/main/java/tk/mybatis/pagehelper/MyOrderBySqlParser.java -------------------------------------------------------------------------------- /pagehelper-spring-boot-samples/pagehelper-spring-boot-sample-annotation/src/main/java/tk/mybatis/pagehelper/SampleMapperApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pagehelper/pagehelper-spring-boot/HEAD/pagehelper-spring-boot-samples/pagehelper-spring-boot-sample-annotation/src/main/java/tk/mybatis/pagehelper/SampleMapperApplication.java -------------------------------------------------------------------------------- /pagehelper-spring-boot-samples/pagehelper-spring-boot-sample-annotation/src/main/java/tk/mybatis/pagehelper/domain/User.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pagehelper/pagehelper-spring-boot/HEAD/pagehelper-spring-boot-samples/pagehelper-spring-boot-sample-annotation/src/main/java/tk/mybatis/pagehelper/domain/User.java -------------------------------------------------------------------------------- /pagehelper-spring-boot-samples/pagehelper-spring-boot-sample-annotation/src/main/java/tk/mybatis/pagehelper/mapper/UserMapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pagehelper/pagehelper-spring-boot/HEAD/pagehelper-spring-boot-samples/pagehelper-spring-boot-sample-annotation/src/main/java/tk/mybatis/pagehelper/mapper/UserMapper.java -------------------------------------------------------------------------------- /pagehelper-spring-boot-samples/pagehelper-spring-boot-sample-annotation/src/main/resources/META-INF/services/com.github.pagehelper.parser.CountSqlParser: -------------------------------------------------------------------------------- 1 | tk.mybatis.pagehelper.MyCountSqlParser -------------------------------------------------------------------------------- /pagehelper-spring-boot-samples/pagehelper-spring-boot-sample-annotation/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pagehelper/pagehelper-spring-boot/HEAD/pagehelper-spring-boot-samples/pagehelper-spring-boot-sample-annotation/src/main/resources/application.properties -------------------------------------------------------------------------------- /pagehelper-spring-boot-samples/pagehelper-spring-boot-sample-annotation/src/main/resources/import.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pagehelper/pagehelper-spring-boot/HEAD/pagehelper-spring-boot-samples/pagehelper-spring-boot-sample-annotation/src/main/resources/import.sql -------------------------------------------------------------------------------- /pagehelper-spring-boot-samples/pagehelper-spring-boot-sample-xml/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pagehelper/pagehelper-spring-boot/HEAD/pagehelper-spring-boot-samples/pagehelper-spring-boot-sample-xml/pom.xml -------------------------------------------------------------------------------- /pagehelper-spring-boot-samples/pagehelper-spring-boot-sample-xml/src/main/java/tk/mybatis/pagehelper/SampleXmlApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pagehelper/pagehelper-spring-boot/HEAD/pagehelper-spring-boot-samples/pagehelper-spring-boot-sample-xml/src/main/java/tk/mybatis/pagehelper/SampleXmlApplication.java -------------------------------------------------------------------------------- /pagehelper-spring-boot-samples/pagehelper-spring-boot-sample-xml/src/main/java/tk/mybatis/pagehelper/dao/CityDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pagehelper/pagehelper-spring-boot/HEAD/pagehelper-spring-boot-samples/pagehelper-spring-boot-sample-xml/src/main/java/tk/mybatis/pagehelper/dao/CityDao.java -------------------------------------------------------------------------------- /pagehelper-spring-boot-samples/pagehelper-spring-boot-sample-xml/src/main/java/tk/mybatis/pagehelper/domain/City.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pagehelper/pagehelper-spring-boot/HEAD/pagehelper-spring-boot-samples/pagehelper-spring-boot-sample-xml/src/main/java/tk/mybatis/pagehelper/domain/City.java -------------------------------------------------------------------------------- /pagehelper-spring-boot-samples/pagehelper-spring-boot-sample-xml/src/main/java/tk/mybatis/pagehelper/domain/Hotel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pagehelper/pagehelper-spring-boot/HEAD/pagehelper-spring-boot-samples/pagehelper-spring-boot-sample-xml/src/main/java/tk/mybatis/pagehelper/domain/Hotel.java -------------------------------------------------------------------------------- /pagehelper-spring-boot-samples/pagehelper-spring-boot-sample-xml/src/main/java/tk/mybatis/pagehelper/domain/User.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pagehelper/pagehelper-spring-boot/HEAD/pagehelper-spring-boot-samples/pagehelper-spring-boot-sample-xml/src/main/java/tk/mybatis/pagehelper/domain/User.java -------------------------------------------------------------------------------- /pagehelper-spring-boot-samples/pagehelper-spring-boot-sample-xml/src/main/java/tk/mybatis/pagehelper/mapper/UserMapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pagehelper/pagehelper-spring-boot/HEAD/pagehelper-spring-boot-samples/pagehelper-spring-boot-sample-xml/src/main/java/tk/mybatis/pagehelper/mapper/UserMapper.java -------------------------------------------------------------------------------- /pagehelper-spring-boot-samples/pagehelper-spring-boot-sample-xml/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pagehelper/pagehelper-spring-boot/HEAD/pagehelper-spring-boot-samples/pagehelper-spring-boot-sample-xml/src/main/resources/application.properties -------------------------------------------------------------------------------- /pagehelper-spring-boot-samples/pagehelper-spring-boot-sample-xml/src/main/resources/import.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pagehelper/pagehelper-spring-boot/HEAD/pagehelper-spring-boot-samples/pagehelper-spring-boot-sample-xml/src/main/resources/import.sql -------------------------------------------------------------------------------- /pagehelper-spring-boot-samples/pagehelper-spring-boot-sample-xml/src/main/resources/mybatis-config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pagehelper/pagehelper-spring-boot/HEAD/pagehelper-spring-boot-samples/pagehelper-spring-boot-sample-xml/src/main/resources/mybatis-config.xml -------------------------------------------------------------------------------- /pagehelper-spring-boot-samples/pagehelper-spring-boot-sample-xml/src/main/resources/tk/mybatis/pagehelper/mapper/UserMapper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pagehelper/pagehelper-spring-boot/HEAD/pagehelper-spring-boot-samples/pagehelper-spring-boot-sample-xml/src/main/resources/tk/mybatis/pagehelper/mapper/UserMapper.xml -------------------------------------------------------------------------------- /pagehelper-spring-boot-samples/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pagehelper/pagehelper-spring-boot/HEAD/pagehelper-spring-boot-samples/pom.xml -------------------------------------------------------------------------------- /pagehelper-spring-boot-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pagehelper/pagehelper-spring-boot/HEAD/pagehelper-spring-boot-starter/pom.xml -------------------------------------------------------------------------------- /pagehelper-spring-boot-starter/src/main/resources/META-INF/spring.provides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pagehelper/pagehelper-spring-boot/HEAD/pagehelper-spring-boot-starter/src/main/resources/META-INF/spring.provides -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pagehelper/pagehelper-spring-boot/HEAD/pom.xml -------------------------------------------------------------------------------- /properties.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pagehelper/pagehelper-spring-boot/HEAD/properties.png -------------------------------------------------------------------------------- /wx_mybatis.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pagehelper/pagehelper-spring-boot/HEAD/wx_mybatis.jpg --------------------------------------------------------------------------------