Spring Boot 2.0 @ModelAttribute
Spring Boot 2.0 中的注解 @ModelAttribute
有什么作用呢?
通常情况下,我们会将 @ModelAttribute
注解放置在 Controller 中的某个方法上,那么,如果您在请求这个 Controller 中定义的 URI 时,会首先调用这个被注解的方法,并将该方法的结果作为 Model 的属性,然后才会调用对应 URI 的处理方法。
一、@ModelAttribute 使用场景
我们通常会通过 @ModelAttribute
来向某个 Controller 中需要的公共模型 Model 中添加数据。如下面的示例代码所示。
二、示例代码
@ModelAttribute
public void findUserById(@PathVariable("userId") Long userId, Model model) {
model.addAttribute("user", userService.findUserById(userId));
}
@GetMapping("/user/{userId}")
public String findUser(Model model) {
System.out.println(model.containsAttribute("user"));
return "success !";
}
当我们请求接口 /user/1
时,会先调用 findUserById
方法,方法内,通过 userId
查询到对应的 User 对象放置到 Model 模型中。
需要注意,如果您仅仅只是添加一个对象到 Model 模型中,上面的代码还可以再精炼一点:
@ModelAttribute
public User findUserById(@PathVariable("userId") Long userId) {
return userService.findUserById(userId);
}
通过上述的代码,返回的 User 对象会被自动添加到 Model 模型中,就相当于您手动调用了 model.addAttribute(user)
方法。
本文来自博客园,作者:深码青年,转载请注明原文链接:https://www.cnblogs.com/shenMaQN/p/17767671.html