├── .github ├── dco.yml ├── dependabot.yml └── workflows │ └── continuous-integration-build.yml ├── .gitignore ├── CONTRIBUTING.adoc ├── LICENSE.txt ├── LICENSE.writing.txt ├── README.adoc ├── complete ├── .mvn │ └── wrapper │ │ ├── maven-wrapper.jar │ │ └── maven-wrapper.properties ├── build.gradle ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── mvnw ├── mvnw.cmd ├── pom.xml ├── settings.gradle └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── example │ │ │ └── servingwebcontent │ │ │ ├── GreetingController.java │ │ │ └── ServingWebContentApplication.java │ └── resources │ │ ├── static │ │ └── index.html │ │ └── templates │ │ └── greeting.html │ └── test │ └── java │ └── com │ └── example │ └── servingwebcontent │ └── ServingWebContentApplicationTest.java └── initial ├── .mvn └── wrapper │ ├── maven-wrapper.jar │ └── maven-wrapper.properties ├── build.gradle ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── mvnw ├── mvnw.cmd ├── pom.xml ├── settings.gradle └── src ├── main ├── java │ └── com │ │ └── example │ │ └── servingwebcontent │ │ └── ServingWebContentApplication.java └── resources │ └── application.properties └── test └── java └── com └── example └── servingwebcontent └── ServingWebContentApplicationTests.java /.github/dco.yml: -------------------------------------------------------------------------------- 1 | require: 2 | members: false 3 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-guides/gs-serving-web-content/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/continuous-integration-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-guides/gs-serving-web-content/HEAD/.github/workflows/continuous-integration-build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-guides/gs-serving-web-content/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-guides/gs-serving-web-content/HEAD/CONTRIBUTING.adoc -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-guides/gs-serving-web-content/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /LICENSE.writing.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-guides/gs-serving-web-content/HEAD/LICENSE.writing.txt -------------------------------------------------------------------------------- /README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-guides/gs-serving-web-content/HEAD/README.adoc -------------------------------------------------------------------------------- /complete/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-guides/gs-serving-web-content/HEAD/complete/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /complete/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-guides/gs-serving-web-content/HEAD/complete/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /complete/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-guides/gs-serving-web-content/HEAD/complete/build.gradle -------------------------------------------------------------------------------- /complete/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-guides/gs-serving-web-content/HEAD/complete/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /complete/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-guides/gs-serving-web-content/HEAD/complete/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /complete/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-guides/gs-serving-web-content/HEAD/complete/gradlew -------------------------------------------------------------------------------- /complete/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-guides/gs-serving-web-content/HEAD/complete/gradlew.bat -------------------------------------------------------------------------------- /complete/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-guides/gs-serving-web-content/HEAD/complete/mvnw -------------------------------------------------------------------------------- /complete/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-guides/gs-serving-web-content/HEAD/complete/mvnw.cmd -------------------------------------------------------------------------------- /complete/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-guides/gs-serving-web-content/HEAD/complete/pom.xml -------------------------------------------------------------------------------- /complete/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'serving-web-content' 2 | -------------------------------------------------------------------------------- /complete/src/main/java/com/example/servingwebcontent/GreetingController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-guides/gs-serving-web-content/HEAD/complete/src/main/java/com/example/servingwebcontent/GreetingController.java -------------------------------------------------------------------------------- /complete/src/main/java/com/example/servingwebcontent/ServingWebContentApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-guides/gs-serving-web-content/HEAD/complete/src/main/java/com/example/servingwebcontent/ServingWebContentApplication.java -------------------------------------------------------------------------------- /complete/src/main/resources/static/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-guides/gs-serving-web-content/HEAD/complete/src/main/resources/static/index.html -------------------------------------------------------------------------------- /complete/src/main/resources/templates/greeting.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-guides/gs-serving-web-content/HEAD/complete/src/main/resources/templates/greeting.html -------------------------------------------------------------------------------- /complete/src/test/java/com/example/servingwebcontent/ServingWebContentApplicationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-guides/gs-serving-web-content/HEAD/complete/src/test/java/com/example/servingwebcontent/ServingWebContentApplicationTest.java -------------------------------------------------------------------------------- /initial/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-guides/gs-serving-web-content/HEAD/initial/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /initial/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-guides/gs-serving-web-content/HEAD/initial/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /initial/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-guides/gs-serving-web-content/HEAD/initial/build.gradle -------------------------------------------------------------------------------- /initial/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-guides/gs-serving-web-content/HEAD/initial/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /initial/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-guides/gs-serving-web-content/HEAD/initial/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /initial/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-guides/gs-serving-web-content/HEAD/initial/gradlew -------------------------------------------------------------------------------- /initial/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-guides/gs-serving-web-content/HEAD/initial/gradlew.bat -------------------------------------------------------------------------------- /initial/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-guides/gs-serving-web-content/HEAD/initial/mvnw -------------------------------------------------------------------------------- /initial/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-guides/gs-serving-web-content/HEAD/initial/mvnw.cmd -------------------------------------------------------------------------------- /initial/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-guides/gs-serving-web-content/HEAD/initial/pom.xml -------------------------------------------------------------------------------- /initial/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'serving-web-content' 2 | -------------------------------------------------------------------------------- /initial/src/main/java/com/example/servingwebcontent/ServingWebContentApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-guides/gs-serving-web-content/HEAD/initial/src/main/java/com/example/servingwebcontent/ServingWebContentApplication.java -------------------------------------------------------------------------------- /initial/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /initial/src/test/java/com/example/servingwebcontent/ServingWebContentApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spring-guides/gs-serving-web-content/HEAD/initial/src/test/java/com/example/servingwebcontent/ServingWebContentApplicationTests.java --------------------------------------------------------------------------------