This commit is contained in:
Yuriy Dvorzhetskiy
2021-05-15 11:22:54 +03:00
parent 5ef742ba5c
commit 209f821477
3 changed files with 4 additions and 3 deletions
+1 -1
View File
@@ -11,7 +11,7 @@
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.4.4</version>
<version>2.2.4.RELEASE</version>
<relativePath/>
</parent>
+1 -1
View File
@@ -11,7 +11,7 @@
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.4.4</version>
<version>2.2.4.RELEASE</version>
<relativePath/>
</parent>
@@ -13,7 +13,8 @@ public class AnnotatedController {
@GetMapping("/flux/one")
public Mono<String> one() {
return Mono.just("one");
return Mono.just("one")
.map(String::toUpperCase);
}
@GetMapping("/flux/ten")