Spring: How to get the model attribute and check if it is null in JSP?

I just start to learn Spring framework recently. In my controller, I write @GetMapping("/users/{username}") public String getUserByUsername(@PathVariable(value = "username") String username, Mode...