├── .github └── dco.yml ├── .gitignore ├── .mvn └── wrapper │ ├── maven-wrapper.jar │ └── maven-wrapper.properties ├── .travis.yml ├── CONTRIBUTING.adoc ├── LICENSE.code.txt ├── LICENSE.writing.txt ├── README.adoc ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── mvnw ├── mvnw.cmd ├── pom.xml ├── settings.gradle.kts ├── src ├── main │ ├── kotlin │ │ └── com │ │ │ └── example │ │ │ └── blog │ │ │ ├── BlogApplication.kt │ │ │ ├── BlogConfiguration.kt │ │ │ ├── BlogProperties.kt │ │ │ ├── Entities.kt │ │ │ ├── Extensions.kt │ │ │ ├── HtmlController.kt │ │ │ ├── HttpControllers.kt │ │ │ └── Repositories.kt │ └── resources │ │ ├── application.properties │ │ └── templates │ │ ├── article.mustache │ │ ├── blog.mustache │ │ ├── footer.mustache │ │ └── header.mustache └── test │ ├── kotlin │ └── com │ │ └── example │ │ └── blog │ │ ├── BlogApplicationTests.kt │ │ ├── HttpControllersTests.kt │ │ ├── IntegrationTests.kt │ │ └── RepositoriesTests.kt │ └── resources │ └── junit-platform.properties └── test └── run.sh /.github/dco.yml: -------------------------------------------------------------------------------- 1 | require: 2 | members: false 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-guides/tut-spring-boot-kotlin/HEAD/.gitignore -------------------------------------------------------------------------------- /.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-guides/tut-spring-boot-kotlin/HEAD/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-guides/tut-spring-boot-kotlin/HEAD/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-guides/tut-spring-boot-kotlin/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTING.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-guides/tut-spring-boot-kotlin/HEAD/CONTRIBUTING.adoc -------------------------------------------------------------------------------- /LICENSE.code.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-guides/tut-spring-boot-kotlin/HEAD/LICENSE.code.txt -------------------------------------------------------------------------------- /LICENSE.writing.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-guides/tut-spring-boot-kotlin/HEAD/LICENSE.writing.txt -------------------------------------------------------------------------------- /README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-guides/tut-spring-boot-kotlin/HEAD/README.adoc -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-guides/tut-spring-boot-kotlin/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-guides/tut-spring-boot-kotlin/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-guides/tut-spring-boot-kotlin/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-guides/tut-spring-boot-kotlin/HEAD/gradlew.bat -------------------------------------------------------------------------------- /mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-guides/tut-spring-boot-kotlin/HEAD/mvnw -------------------------------------------------------------------------------- /mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-guides/tut-spring-boot-kotlin/HEAD/mvnw.cmd -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-guides/tut-spring-boot-kotlin/HEAD/pom.xml -------------------------------------------------------------------------------- /settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-guides/tut-spring-boot-kotlin/HEAD/settings.gradle.kts -------------------------------------------------------------------------------- /src/main/kotlin/com/example/blog/BlogApplication.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-guides/tut-spring-boot-kotlin/HEAD/src/main/kotlin/com/example/blog/BlogApplication.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/example/blog/BlogConfiguration.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-guides/tut-spring-boot-kotlin/HEAD/src/main/kotlin/com/example/blog/BlogConfiguration.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/example/blog/BlogProperties.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-guides/tut-spring-boot-kotlin/HEAD/src/main/kotlin/com/example/blog/BlogProperties.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/example/blog/Entities.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-guides/tut-spring-boot-kotlin/HEAD/src/main/kotlin/com/example/blog/Entities.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/example/blog/Extensions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-guides/tut-spring-boot-kotlin/HEAD/src/main/kotlin/com/example/blog/Extensions.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/example/blog/HtmlController.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-guides/tut-spring-boot-kotlin/HEAD/src/main/kotlin/com/example/blog/HtmlController.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/example/blog/HttpControllers.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-guides/tut-spring-boot-kotlin/HEAD/src/main/kotlin/com/example/blog/HttpControllers.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/example/blog/Repositories.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-guides/tut-spring-boot-kotlin/HEAD/src/main/kotlin/com/example/blog/Repositories.kt -------------------------------------------------------------------------------- /src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-guides/tut-spring-boot-kotlin/HEAD/src/main/resources/application.properties -------------------------------------------------------------------------------- /src/main/resources/templates/article.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-guides/tut-spring-boot-kotlin/HEAD/src/main/resources/templates/article.mustache -------------------------------------------------------------------------------- /src/main/resources/templates/blog.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-guides/tut-spring-boot-kotlin/HEAD/src/main/resources/templates/blog.mustache -------------------------------------------------------------------------------- /src/main/resources/templates/footer.mustache: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/main/resources/templates/header.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-guides/tut-spring-boot-kotlin/HEAD/src/main/resources/templates/header.mustache -------------------------------------------------------------------------------- /src/test/kotlin/com/example/blog/BlogApplicationTests.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-guides/tut-spring-boot-kotlin/HEAD/src/test/kotlin/com/example/blog/BlogApplicationTests.kt -------------------------------------------------------------------------------- /src/test/kotlin/com/example/blog/HttpControllersTests.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-guides/tut-spring-boot-kotlin/HEAD/src/test/kotlin/com/example/blog/HttpControllersTests.kt -------------------------------------------------------------------------------- /src/test/kotlin/com/example/blog/IntegrationTests.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-guides/tut-spring-boot-kotlin/HEAD/src/test/kotlin/com/example/blog/IntegrationTests.kt -------------------------------------------------------------------------------- /src/test/kotlin/com/example/blog/RepositoriesTests.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-guides/tut-spring-boot-kotlin/HEAD/src/test/kotlin/com/example/blog/RepositoriesTests.kt -------------------------------------------------------------------------------- /src/test/resources/junit-platform.properties: -------------------------------------------------------------------------------- 1 | junit.jupiter.testinstance.lifecycle.default = per_class 2 | -------------------------------------------------------------------------------- /test/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-guides/tut-spring-boot-kotlin/HEAD/test/run.sh --------------------------------------------------------------------------------