├── .gitignore ├── .mvn └── wrapper │ ├── maven-wrapper.jar │ └── maven-wrapper.properties ├── README.md ├── mvnw ├── mvnw.cmd ├── pom.xml ├── src ├── main │ ├── java │ │ └── com │ │ │ └── bezkoder │ │ │ └── spring │ │ │ └── thymeleaf │ │ │ └── pagination │ │ │ ├── SpringBootThymeleafPaginationApplication.java │ │ │ ├── controller │ │ │ └── TutorialController.java │ │ │ ├── entity │ │ │ └── Tutorial.java │ │ │ └── repository │ │ │ └── TutorialRepository.java │ └── resources │ │ ├── application.properties │ │ ├── static │ │ └── css │ │ │ └── style.css │ │ └── templates │ │ ├── fragments │ │ ├── footer.html │ │ ├── header.html │ │ └── paging.html │ │ ├── tutorial_form.html │ │ └── tutorials.html └── test │ └── java │ └── com │ └── bezkoder │ └── spring │ └── thymeleaf │ └── pagination │ └── SpringBootThymeleafPaginationApplicationTests.java ├── testdb.mv.db └── thymeleaf-pagination-example.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/spring-boot-thymeleaf-pagination/HEAD/.gitignore -------------------------------------------------------------------------------- /.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/spring-boot-thymeleaf-pagination/HEAD/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/spring-boot-thymeleaf-pagination/HEAD/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/spring-boot-thymeleaf-pagination/HEAD/README.md -------------------------------------------------------------------------------- /mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/spring-boot-thymeleaf-pagination/HEAD/mvnw -------------------------------------------------------------------------------- /mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/spring-boot-thymeleaf-pagination/HEAD/mvnw.cmd -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/spring-boot-thymeleaf-pagination/HEAD/pom.xml -------------------------------------------------------------------------------- /src/main/java/com/bezkoder/spring/thymeleaf/pagination/SpringBootThymeleafPaginationApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/spring-boot-thymeleaf-pagination/HEAD/src/main/java/com/bezkoder/spring/thymeleaf/pagination/SpringBootThymeleafPaginationApplication.java -------------------------------------------------------------------------------- /src/main/java/com/bezkoder/spring/thymeleaf/pagination/controller/TutorialController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/spring-boot-thymeleaf-pagination/HEAD/src/main/java/com/bezkoder/spring/thymeleaf/pagination/controller/TutorialController.java -------------------------------------------------------------------------------- /src/main/java/com/bezkoder/spring/thymeleaf/pagination/entity/Tutorial.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/spring-boot-thymeleaf-pagination/HEAD/src/main/java/com/bezkoder/spring/thymeleaf/pagination/entity/Tutorial.java -------------------------------------------------------------------------------- /src/main/java/com/bezkoder/spring/thymeleaf/pagination/repository/TutorialRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/spring-boot-thymeleaf-pagination/HEAD/src/main/java/com/bezkoder/spring/thymeleaf/pagination/repository/TutorialRepository.java -------------------------------------------------------------------------------- /src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/spring-boot-thymeleaf-pagination/HEAD/src/main/resources/application.properties -------------------------------------------------------------------------------- /src/main/resources/static/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/spring-boot-thymeleaf-pagination/HEAD/src/main/resources/static/css/style.css -------------------------------------------------------------------------------- /src/main/resources/templates/fragments/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/spring-boot-thymeleaf-pagination/HEAD/src/main/resources/templates/fragments/footer.html -------------------------------------------------------------------------------- /src/main/resources/templates/fragments/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/spring-boot-thymeleaf-pagination/HEAD/src/main/resources/templates/fragments/header.html -------------------------------------------------------------------------------- /src/main/resources/templates/fragments/paging.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/spring-boot-thymeleaf-pagination/HEAD/src/main/resources/templates/fragments/paging.html -------------------------------------------------------------------------------- /src/main/resources/templates/tutorial_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/spring-boot-thymeleaf-pagination/HEAD/src/main/resources/templates/tutorial_form.html -------------------------------------------------------------------------------- /src/main/resources/templates/tutorials.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/spring-boot-thymeleaf-pagination/HEAD/src/main/resources/templates/tutorials.html -------------------------------------------------------------------------------- /src/test/java/com/bezkoder/spring/thymeleaf/pagination/SpringBootThymeleafPaginationApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/spring-boot-thymeleaf-pagination/HEAD/src/test/java/com/bezkoder/spring/thymeleaf/pagination/SpringBootThymeleafPaginationApplicationTests.java -------------------------------------------------------------------------------- /testdb.mv.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/spring-boot-thymeleaf-pagination/HEAD/testdb.mv.db -------------------------------------------------------------------------------- /thymeleaf-pagination-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bezkoder/spring-boot-thymeleaf-pagination/HEAD/thymeleaf-pagination-example.png --------------------------------------------------------------------------------