spring mvc中的@ModelAttribute注解示例介绍

网友投稿 261 2023-04-08


spring mvc中的@ModelAttribute注解示例介绍

前言

本文介绍sETVrsmmK在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.printsETVrsmmKln("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;

}

}

xmlns:xsi="http://w3.org/2001/XMLSchema-instance" xmlns:context="http://springframework.org/schema/context"

xmlns:jms="http://springframework.org/schema/jms"

xsi:schemaLocation="http://springframework.org/schema/beans

http://springframework.org/schema/beans/spring-beans-2.5.xsd

http://springframework.org/schema/context

http://springframework.org/schema/context/spring-context-2.5.xsd

http://springframework.org/schema/jms

http://springframework.org/schema/jms/spring-jms-2.5.xsd">

xmlns:xsi="http://w3.org/2001/XMLSchema-instance" xmlns:context="http://springframework.org/schema/context"

xmlns:jms="http://springframework.org/schema/jms"

xsi:schemaLocation="http://springframework.org/schema/beans

http://springframework.org/schema/beans/spring-beans-2.5.xsd

http://springframework.org/schema/context

http://springframework.org/schema/context/spring-context-2.5.xsd

http://springframework.org/schema/jms

http://springframework.org/schema/jms/spring-jms-2.5.xsd">

- 上面的例子,getAccount方法使用@ModelAttribute注解。这意味着方法会在controller的方法之前执行。这个方法会使用request的参数设置模型对象。这是一种在方法中设置值的途径。

- 另一种@ModelAttribute注解的使用方法,是用在方法的参数上。在调用方法的时候,模型的值会被注入。这在实际使用时非常简单。将表单属性映射到模型对象时,这个注解非常有用。

总结

以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作能带来一定的帮助,如果有疑问大家可以留言交流,谢谢大家对我们的支持。


版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:struts2拦截器_动力节点Java学院整理
下一篇:springboot+Oauth2实现自定义AuthenticationManager和认证path
相关文章

 发表评论

暂时没有评论,来抢沙发吧~