Polishing (backported from 5.3.x)

This commit is contained in:
Juergen Hoeller
2021-09-02 23:18:36 +02:00
parent eb349be1fc
commit e31d66cd2b
6 changed files with 15 additions and 19 deletions

View File

@@ -1202,7 +1202,7 @@ We can trace the flow through a simple example. Consider the following example,
@Controller
public class GreetingController {
@MessageMapping("/greeting") {
@MessageMapping("/greeting")
public String handle(String greeting) {
return "[" + getTimestamp() + ": " + greeting;
}