Browse Source

Merge branch '3.3.x' into 3.4.x

Closes gh-43975
pull/44020/head
Moritz Halbritter 1 year ago
parent
commit
8059c24e6a
  1. 2
      spring-boot-project/spring-boot-docs/src/docs/antora/modules/tutorial/pages/first-application/index.adoc

2
spring-boot-project/spring-boot-docs/src/docs/antora/modules/tutorial/pages/first-application/index.adoc

@ -285,7 +285,7 @@ If you run `gradle dependencies` again, you see that there are now a number of a @@ -285,7 +285,7 @@ If you run `gradle dependencies` again, you see that there are now a number of a
== Writing the Code
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:
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/com/example/MyApplication.java` to contain the following code:
[chomp_package_replacement=com.example]
include-code::MyApplication[]

Loading…
Cancel
Save