From bba88377e250919e2bea0746ce551c7ee20206c5 Mon Sep 17 00:00:00 2001 From: Tran Ngoc Nhan Date: Mon, 27 Jan 2025 09:27:53 +0700 Subject: [PATCH] Update package Signed-off-by: Tran Ngoc Nhan --- .../antora/modules/tutorial/pages/first-application/index.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-boot-project/spring-boot-docs/src/docs/antora/modules/tutorial/pages/first-application/index.adoc b/spring-boot-project/spring-boot-docs/src/docs/antora/modules/tutorial/pages/first-application/index.adoc index 4968142d604b..a218305ab943 100644 --- a/spring-boot-project/spring-boot-docs/src/docs/antora/modules/tutorial/pages/first-application/index.adoc +++ b/spring-boot-project/spring-boot-docs/src/docs/antora/modules/tutorial/pages/first-application/index.adoc @@ -1,5 +1,6 @@ [[getting-started.first-application]] = Developing Your First Spring Boot Application +:chomp_package_replacement: com.example This section describes how to develop a small "`Hello World!`" web application that highlights some of Spring Boot's key features. You can choose between Maven or Gradle as the build system. @@ -287,7 +288,6 @@ If you run `gradle dependencies` again, you see that there are now a number of a To finish our application, we need to create a single Java file. By default, Maven and Gradle compile sources from `src/main/java`, so you need to create that directory structure and then add a file named `src/main/java/MyApplication.java` to contain the following code: -[chomp_package_replacement=com.example] include-code::MyApplication[] Although there is not much code here, quite a lot is going on.