spring mvc中的@ModelAttribute注解示例介绍
程序员文章站
2024-02-27 22:33:51
前言
本文介绍在spring mvc中非常重要的注解@modelattribute.这个注解可以用在方法参数上,或是方法声明上。这个注解的主要作用是绑定request或是...
前言
本文介绍在spring mvc中非常重要的注解@modelattribute.这个注解可以用在方法参数上,或是方法声明上。这个注解的主要作用是绑定request或是form参数到模型对象。可以使用保存在request或session中的对象来组装模型对象。注意,被@modelattribute注解的方法会在controller方法(@requestmapping注解的)之前执行。因为模型对象要先于controller方法之前创建。
请看下面的例子
- modelattributeexamplecontroller.java 是controller类,同时包含@modelattribute 方法。
- userdetails.java是本例中的模型对象
- 最后是spring的配置文件
//modelattributeexamplecontroller.java package javabeat.net; import org.springframework.beans.factory.annotation.autowired; import org.springframework.stereotype.controller; import org.springframework.web.bind.annotation.modelattribute; import org.springframework.web.bind.annotation.requestmapping; import org.springframework.web.bind.annotation.requestparam; @controller public class modelattributeexamplecontroller { @autowired private userdetails userdetails; @requestmapping(value="/modelexample") public string getmethod(@modelattribute userdetails userdetails){ system.out.println("user name : " + userdetails.getusername()); system.out.println("email id : " + userdetails.getemailid()); return "example"; } //this method is invoked before the above method @modelattribute public userdetails getaccount(@requestparam string user, @requestparam string emailid){ system.out.println("user value from request parameter : " + user); userdetails.setusername(user); userdetails.setemailid(emailid); return userdetails; } }
//userdetails.java package javabeat.net; public class userdetails { private string username; private string emailid; public string getusername() { return username; } public void setusername(string username) { this.username = username; } public string getemailid() { return emailid; } public void setemailid(string emailid) { this.emailid = emailid; } }
<?xml version="1.0" encoding="utf-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/xmlschema-instance" xmlns:context="http://www.springframework.org/schema/context" xmlns:jms="http://www.springframework.org/schema/jms" xsi:schemalocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-2.5.xsd http://www.springframework.org/schema/jms http://www.springframework.org/schema/jms/spring-jms-2.5.xsd"> <context:component-scan base-package="org.spring.examples" /> <bean id="userdetails" class="org.spring.examples.userdetails"/> </beans>
- 上面的例子,getaccount方法使用@modelattribute注解。这意味着方法会在controller的方法之前执行。这个方法会使用request的参数设置模型对象。这是一种在方法中设置值的途径。
- 另一种@modelattribute注解的使用方法,是用在方法的参数上。在调用方法的时候,模型的值会被注入。这在实际使用时非常简单。将表单属性映射到模型对象时,这个注解非常有用。
总结
以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作能带来一定的帮助,如果有疑问大家可以留言交流,谢谢大家对的支持。
上一篇: 详解Java动态代理的实现及应用