Skip to content

Commit 1b5ec9b

Browse files
committed
Update all proyects to SpringBoot 2.2.0
1 parent 23b300d commit 1b5ec9b

File tree

26 files changed

+31
-24
lines changed

26 files changed

+31
-24
lines changed

web_ejem1/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<parent>
1313
<groupId>org.springframework.boot</groupId>
1414
<artifactId>spring-boot-starter-parent</artifactId>
15-
<version>2.1.2.RELEASE</version>
15+
<version>2.2.0.RELEASE</version>
1616
<relativePath />
1717
</parent>
1818

web_ejem1/src/main/java/es/urjc/code/daw/GreetingController.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ public class GreetingController {
1010
@GetMapping("/greeting")
1111
public String greeting(Model model) {
1212

13-
model.addAttribute("name", "World");
13+
model.addAttribute("name", "Mundo");
1414

1515
return "greeting_template";
1616
}

web_ejem2/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<parent>
1212
<groupId>org.springframework.boot</groupId>
1313
<artifactId>spring-boot-starter-parent</artifactId>
14-
<version>2.1.2.RELEASE</version>
14+
<version>2.2.0.RELEASE</version>
1515
<relativePath/>
1616
</parent>
1717

web_ejem3/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<parent>
1313
<groupId>org.springframework.boot</groupId>
1414
<artifactId>spring-boot-starter-parent</artifactId>
15-
<version>2.1.2.RELEASE</version>
15+
<version>2.2.0.RELEASE</version>
1616
<relativePath />
1717
</parent>
1818

web_ejem4/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<parent>
1313
<groupId>org.springframework.boot</groupId>
1414
<artifactId>spring-boot-starter-parent</artifactId>
15-
<version>2.1.2.RELEASE</version>
15+
<version>2.2.0.RELEASE</version>
1616
<relativePath />
1717
</parent>
1818

web_ejem5/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<parent>
1212
<groupId>org.springframework.boot</groupId>
1313
<artifactId>spring-boot-starter-parent</artifactId>
14-
<version>2.1.2.RELEASE</version>
14+
<version>2.2.0.RELEASE</version>
1515
<relativePath/>
1616
</parent>
1717

web_ejem6/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<parent>
1313
<groupId>org.springframework.boot</groupId>
1414
<artifactId>spring-boot-starter-parent</artifactId>
15-
<version>2.1.2.RELEASE</version>
15+
<version>2.2.0.RELEASE</version>
1616
<relativePath />
1717
</parent>
1818

web_ejem6/src/main/java/es/urjc/code/daw/SesionController.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ public class SesionController {
1313

1414
private String infoCompartida;
1515

16-
@PostMapping(value = "/procesarFormulario")
16+
@PostMapping("/procesarFormulario")
1717
public String procesarFormulario(@RequestParam String info, HttpSession sesion) {
1818

1919
sesion.setAttribute("infoUsuario", info);

web_ejem6/src/main/resources/static/index.html

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
<html>
2+
<head>
3+
<meta charset="UTF-8">
4+
</head>
25
<body>
36
<form action="/procesarFormulario" method="post">
47
Información:

web_ejem7/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<parent>
1313
<groupId>org.springframework.boot</groupId>
1414
<artifactId>spring-boot-starter-parent</artifactId>
15-
<version>2.1.2.RELEASE</version>
15+
<version>2.2.0.RELEASE</version>
1616
<relativePath />
1717
</parent>
1818

0 commit comments

Comments
 (0)