From cf8615afb2ecdf2a2ba82ff8984b5341c7a5c50d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=B5=96=E5=B0=A7?= Date: Fri, 24 Oct 2025 21:03:19 +0800 Subject: [PATCH] Update README.adoc MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Clarify that RestServiceApplication is specific to this guide's sample project, not the Spring Initializr default Signed-off-by: 赖尧 --- README.adoc | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/README.adoc b/README.adoc index 7ec384b3..28f612a0 100644 --- a/README.adoc +++ b/README.adoc @@ -162,8 +162,11 @@ is automatically chosen to convert the `Greeting` instance to JSON. == Run the Service -The Spring Initializr creates an application class for you. In this case, you do not need -to further modify the class. The following listing shows the `RestServiceApplication` application class: +The https://start.spring.io[Spring Initializr] creates an application class for you. +For the purpose of this guide, the sample project uses the package `com.example.restservice` +and the class name `RestServiceApplication`. + +The following listing shows the application class used in this tutorial: [source,java,indent=0,subs="verbatim,quotes",role="primary"] .Java