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