@GetMapping("/header") | |
public String welcomeUser(@RequestHeader String user) { | |
return String.format("Welcome %s!", user); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@GetMapping("/header") | |
public String welcomeUser(@RequestHeader String user) { | |
return String.format("Welcome %s!", user); | |
} |