Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -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.
Expand Down Expand Up @@ -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.
Expand Down
Loading