File tree 6 files changed +7
-53
lines changed
6 files changed +7
-53
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
1
:spring_version: current
2
2
:spring_boot_version: current
3
3
:Controller: https://docs.spring.io/spring/docs/{spring_version}/javadoc-api/org/springframework/stereotype/Controller.html
4
- :DispatcherServlet: https://docs.spring.io/spring/docs/{spring_version}/javadoc-api/org/springframework/web/servlet/DispatcherServlet.html
5
- :SpringApplication: https://docs.spring.io/spring-boot/docs/{spring_boot_version}/api/org/springframework/boot/SpringApplication.html
6
4
:View: https://docs.spring.io/spring/docs/{spring_version}/javadoc-api/org/springframework/web/servlet/View.html
7
5
:Model: https://docs.spring.io/spring/docs/{spring_version}/javadoc-api/org/springframework/ui/Model.html
8
6
:images: https://raw.githubusercontent.com/spring-guides/gs-handling-form-submission/main/images
13
11
14
12
This guide walks you through the process of using Spring to create and submit a web form.
15
13
16
- == What You Will build
14
+ == What You Will Build
17
15
18
16
In this guide, you will build a web form, which will be accessible at the following URL:
19
17
`http://localhost:8080/greeting`
Original file line number Diff line number Diff line change 1
1
plugins {
2
- id ' org.springframework.boot' version ' 3.1.4 '
3
- id ' io.spring.dependency-management' version ' 1.1.3 '
2
+ id ' org.springframework.boot' version ' 3.2.0 '
3
+ id ' io.spring.dependency-management' version ' 1.1.4 '
4
4
id ' java'
5
5
}
6
6
Original file line number Diff line number Diff line change 5
5
<parent >
6
6
<groupId >org.springframework.boot</groupId >
7
7
<artifactId >spring-boot-starter-parent</artifactId >
8
- <version >3.1.4 </version >
8
+ <version >3.2.0 </version >
9
9
<relativePath /> <!-- lookup parent from repository -->
10
10
</parent >
11
11
<groupId >com.example</groupId >
Original file line number Diff line number Diff line change 1
1
plugins {
2
- id ' org.springframework.boot' version ' 3.1.4 '
3
- id ' io.spring.dependency-management' version ' 1.1.3 '
2
+ id ' org.springframework.boot' version ' 3.2.0 '
3
+ id ' io.spring.dependency-management' version ' 1.1.4 '
4
4
id ' java'
5
5
}
6
6
Original file line number Diff line number Diff line change 5
5
<parent >
6
6
<groupId >org.springframework.boot</groupId >
7
7
<artifactId >spring-boot-starter-parent</artifactId >
8
- <version >3.1.4 </version >
8
+ <version >3.2.0 </version >
9
9
<relativePath /> <!-- lookup parent from repository -->
10
10
</parent >
11
11
<groupId >com.example</groupId >
You can’t perform that action at this time.
0 commit comments