From c681c96e124a25179ad6f1cec63d9e10b41e4f64 Mon Sep 17 00:00:00 2001 From: KingPlatypus Date: Sat, 8 Apr 2023 23:15:33 +0900 Subject: [PATCH] spring_basic ch1~3 2023.04.08 --- HELP.md | 19 ++----------------- build.gradle | 5 ++--- settings.gradle | 2 +- 3 files changed, 5 insertions(+), 21 deletions(-) diff --git a/HELP.md b/HELP.md index b64555e..2116804 100644 --- a/HELP.md +++ b/HELP.md @@ -1,26 +1,11 @@ -# Read Me First -The following was discovered as part of building this project: - -* The original package name 'hello.hello-spring' is invalid and this project uses 'hello.hellospring' instead. - # Getting Started ### Reference Documentation For further reference, please consider the following sections: * [Official Gradle documentation](https://docs.gradle.org) -* [Spring Boot Gradle Plugin Reference Guide](https://docs.spring.io/spring-boot/docs/3.0.4/gradle-plugin/reference/html/) -* [Create an OCI image](https://docs.spring.io/spring-boot/docs/3.0.4/gradle-plugin/reference/html/#build-image) -* [Spring Web](https://docs.spring.io/spring-boot/docs/3.0.4/reference/htmlsingle/#web) -* [Thymeleaf](https://docs.spring.io/spring-boot/docs/3.0.4/reference/htmlsingle/#web.servlet.spring-mvc.template-engines) - -### Guides -The following guides illustrate how to use some features concretely: - -* [Building a RESTful Web Service](https://spring.io/guides/gs/rest-service/) -* [Serving Web Content with Spring MVC](https://spring.io/guides/gs/serving-web-content/) -* [Building REST services with Spring](https://spring.io/guides/tutorials/rest/) -* [Handling Form Submission](https://spring.io/guides/gs/handling-form-submission/) +* [Spring Boot Gradle Plugin Reference Guide](https://docs.spring.io/spring-boot/docs/3.0.5/gradle-plugin/reference/html/) +* [Create an OCI image](https://docs.spring.io/spring-boot/docs/3.0.5/gradle-plugin/reference/html/#build-image) ### Additional Links These additional references should also help you: diff --git a/build.gradle b/build.gradle index 5e4d6cf..83a76dc 100644 --- a/build.gradle +++ b/build.gradle @@ -1,6 +1,6 @@ plugins { id 'java' - id 'org.springframework.boot' version '3.0.4' + id 'org.springframework.boot' version '3.0.5' id 'io.spring.dependency-management' version '1.1.0' } @@ -13,8 +13,7 @@ repositories { } dependencies { - implementation 'org.springframework.boot:spring-boot-starter-thymeleaf' - implementation 'org.springframework.boot:spring-boot-starter-web' + implementation 'org.springframework.boot:spring-boot-starter' testImplementation 'org.springframework.boot:spring-boot-starter-test' } diff --git a/settings.gradle b/settings.gradle index 69a39da..4d52ac5 100644 --- a/settings.gradle +++ b/settings.gradle @@ -1 +1 @@ -rootProject.name = 'hello-spring' +rootProject.name = 'core'