@ModelAttribute 注解

[email protected]注释方法

  例子(1),(2),(3)类似,被@ModelAttribute注释的方法会在此controller每个方法执行前被执行,因此对于一个controller映射多个URL的用法来说,要谨慎使用。

(1)@ModelAttribute注释void返回值的方法

@Controller
public class HelloWorldController {
    @ModelAttribute
    public void populateModel(@RequestParam String abc, Model model) {
         model.addAttribute("attributeName", abc);
      } 

    @RequestMapping(value = "/helloWorld")
    public String helloWorld() {
       return "helloWorld";
        }
 }

  这个例子,在获得请求/helloWorld 后,populateModel方法在helloWorld方法之前先被调用,它把请求参数(/helloWorld?abc=text)加入到一个名为attributeName的model属性中,在它执行后 helloWorld被调用,返回视图名helloWorld和model已由@ModelAttribute方法生产好了。

  这个例子中model属性名称和model属性对象有model.addAttribute()实现,不过前提是要在方法中加入一个Model类型的参数。

  当URL或者post中不包含次参数时,会报错,其实不需要这个方法,完全可以把请求的方法写成,这样缺少此参数也不会出错

 @RequestMapping(value = "/helloWorld")
 public String helloWorld(String abc) {
     return "helloWorld";
 }

(2)@ModelAttribute注释返回具体类的方法

@ModelAttribute
public Account addAccount(@RequestParam String number) {
    return accountManager.findAccount(number);
} 

  这种情况,model属性的名称没有指定,它由返回类型隐含表示,如这个方法返回Account类型,那么这个model属性的名称是account。

  这个例子中model属性名称有返回对象类型隐含表示,model属性对象就是方法的返回值。它无须要特定的参数。

(3)@ModelAttribute(value="")注释返回具体类的方法

@Controller
public class HelloWorldController {
    @ModelAttribute("attributeName")
    public String addAccount(@RequestParam String abc) {
        return abc;
      } 

    @RequestMapping(value = "/helloWorld")
    public String helloWorld() {
        return "helloWorld";
          }
   }

  这个例子中使用@ModelAttribute注释的value属性,来指定model属性的名称。model属性对象就是方法的返回值。它无须要特定的参数。

(4)@ModelAttribute和@RequestMapping同时注释一个方法

@Controller
public class HelloWorldController {
    @RequestMapping(value = "/helloWorld.do")
    @ModelAttribute("attributeName")
    public String helloWorld() {
         return "hi";
      }
  }

  这时这个方法的返回值并不是表示一个视图名称,而是model属性的值,视图名称由RequestToViewNameTranslator根据请求"/helloWorld.do"转换为逻辑视图helloWorld。

Model属性名称有@ModelAttribute(value=””)指定,相当于在request中封装了key=attributeName,value=hi。

[email protected]注释一个方法的参数

(1)从model中获取

 @Controller
 public class HelloWorldController {
     @ModelAttribute("user")
     public User addAccount() {
         return new User("jz","123");
      } 

     @RequestMapping(value = "/helloWorld")
     public String helloWorld(@ModelAttribute("user") User user) {
            user.setUserName("jizhou");
            return "helloWorld";
         }
   }

  在这个例子里,@ModelAttribute("user") User user注释方法参数,参数user的值来源于addAccount()方法中的model属性。

  此时如果方法体没有标注@SessionAttributes("user"),那么scope为request,如果标注了,那么scope为session

(2)从Form表单或URL参数中获取(实际上,不做此注释也能拿到user对象)

  @ModelAttribute具有如下三个作用:

 ①绑定请求参数到命令对象:放在功能处理方法的入参上时,用于将多个请求参数绑定到一个命令对象,从而简化绑定流程,而且自动暴露为模型数据用于视图页面展示时使用。

  其实  @ModelAttribute 此处对于供视图页面展示来说与 model.addAttribute("attributeName", abc); 功能类似。

@Controller
public class HelloWorldController {
    @RequestMapping(value = "/helloWorld")
    public String helloWorld(@ModelAttribute User user) {
        return "helloWorld";
     }
}

  此处多了一个注解@ModelAttribute("user"),它的作用是将该绑定的命令对象以“user”为名称添加到模型对象中供视图页面展示使用。我们此时可以在视图页面使用${user.username}来获取绑定的命令对象的属性。 

 

  ②暴露@RequestMapping 方法返回值为模型数据:放在功能处理方法的返回值上时,是暴露功能处理方法的返回值为模型数据,用于视图页面展示时使用。

public @ModelAttribute("user2") UserModel test3(@ModelAttribute("user2") UserModel user)  

  大家可以看到返回值类型是命令对象类型,而且通过 @ModelAttribute("user2") 注解,此时会暴露返回值到模型数据( 名字为user2 ) 中供视图展示使用

   @ModelAttribute 注解的返回值会覆盖 @RequestMapping 注解方法中的 @ModelAttribute 注解的同名命令对象

  ③暴露表单引用对象为模型数据:放在处理器的一般方法(非功能处理方法)上时,是为表单准备要展示的表单引用对象,如注册时需要选择的所在城市等,而且在执行功能处理方法( @RequestMapping 注解的方法)之前,自动添加到模型对象中,用于视图页面展示时使用;

  注意这时候这个User类一定要有没有参数的构造函数。

原文地址:https://www.cnblogs.com/zhonglinjie/p/9241244.html

时间: 2024-10-31 02:11:19

@ModelAttribute 注解的相关文章

数据格式化和ModelAttribute注解的介绍

关于数据传递: 客户端传递数据到服务端: 1.使用普通的形式 A.传递简单的数据 如果是说你传递的数据的名称跟控制层中的形参的名称不一致的情况下需要使用 注解: @RequestParam()如果存在在注解的话,那么一定要传递对应的名称,除非设置required="false" 个人建议是保存名称一致 B.传递的数据为表单的数据 (1)使用普通的表单进行提交,那么你需要注意的是 name="类中的数据",如果是说我的类中有关联的类型那么name="role

@ModelAttribute注解的作用

@ModelAttribute注解的作用:1.放在方法上注解不带属性: 方法无返回值: 执行其他方法时,先执行该注解标记方法. 如果方法中有将一些属性放入model的操作,其他方法model中也会共享注解标注方法的model属性. 方法返回对象: 执行其他方法时,先执行该注解标注的方法. 如果有将属性放入model的操作,model中的数据也会共享 方法的返回值会自动装入model中,key值如果没有指定的话为返回对象类型的首字母小写.指定key的话给注解的value属性赋值即可.方法返回的值可

7、SpringMVC源码分析(2):分析HandlerAdapter.handle方法,了解handler方法的调用细节以及@ModelAttribute注解

从上一篇 SpringMVC源码分析(1) 中我们了解到在DispatcherServlet.doDispatch方法中会通过 mv = ha.handle(processedRequest, response, mappedHandler.getHandler()) 这样的方式来执行request的handler方法. 先来分析一下ha.handle方法的调用过程:HandlerAdapter接口有一个抽象实现类AbstractHandlerMethodAdapter,在该抽象类中通过具体方法

Spring的@ModelAttribute注解

1. 一.绑定请求参数到指定对象 Java代码   public String test1(@ModelAttribute("user") UserModel user) 只是此处多了一个注解@ModelAttribute("user"),它的作用是将该绑定的命令对象以“user”为名称添加到模型对象中供视图页面展示使用.我们此时可以在视图页面使用${user.username}来获取绑定的命令对象的属性. 如请求参数包含“?username=zhang&p

springmvc 在方法上使用 @ModelAttribute 注解

在方法上使用 @ModelAttribute 注解 @ModelAttribute注解不仅可以用在方法上也可以用在方法参数上.本节讲述@ModelAttribute在方法上的使用,下一节将讲述其在方法参数上的使用. 在方法上使用 @ModelAttribute 注解的目的是添加一个或者多个model属性中.这些方法支持@RequestMapping方法对应的参数,但是不能直接和请求映射. 在同一个Controller中@ModelAttribute 注解的方法将先于@RequestMapping

Spring MVC之@ModelAttribute注解的使用

@ModelAttribute注解的作用 Spring MVC提供了几种将数据添加到模型的方式:使用ModelMap/Model类型的方法参数.方法体内创建ModelAndView实例,如下代码片段所示: @RequestMapping(value = "/login.htm", method = RequestMethod.GET) public String doLogin(ModelMap modelMap) { BaseMember mockMember = new BaseM

@ModelAttribute注解的用法

@ModelAttribute可以用于注解方法和参数. 1.注解Controller中的方法时,返回的参数是一个属性值,@ModelAttribute注解的方法在Controller中每个URL处理方法调用之前,都会按照先后顺序执行. 2.注解Controller方法的参数,用于从model.Form表单或者URL请求参数中获取属性值. 例子如下,已在Spring3.0中验证通过. @Controller public class TestAction { /*[email protected]

Spring MVC @ModelAttribute注解

在一个Controller内,被@ModelAttribute标注的方法会在此controller的每个handler方法执行前被执行. 被@ModelAttribute标注的方法的参数绑定规则和普通handler方法相同. 可以理解为: 请求到达Controller后,不论其他handler方法的RequestMapping值是多少,请求都会路由至被@ModelAttribute标注的方法: 由springMVC再对request执行一次forward,路由至真正的handler方法. @Mo

@ModelAttribute注解详细使用

org.springframework.web.bind.annotation.ModelAttribute注解类型将请求参数绑定到Model对象. @ModelAttribute注解只支持一个属性value,类型为String,表示绑定的属性名称. 提示:被@ModelAttribute注释的方法会在Controller每个方法执行前被执行,因此在一个Controller映射到多个URL时,要谨慎使用. 实例:@ModelAttribute注解的使用 index.jsp 用于展示调用关于@Mo