欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

springmvc处理模型数据ModelAndView过程详解

程序员文章站 2023-10-27 15:52:58
这篇文章主要介绍了springmvc处理模型数据modelandview过程详解,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友可以参考下 s...

这篇文章主要介绍了springmvc处理模型数据modelandview过程详解,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友可以参考下

springmvc提供了以下几种途径来输出模型数据:

(1)modelandview:处理方法返回值类型为modelandview时,方法体即可通过该对象添加模型数据。

(2)map及model:入参为org.springframework.ui.model、org.springframework.ui.modelmap或java.uti.map时,处理方法返回时,map中的数据会自动添加到模型中。

(3)@sessionattributes:将模型中的某个数据自动添加到模型中。

(4)modelattribute:方法入参标注该注解后,入参的对象就会放到数据模型中。

使用modelandview:

springmvctest.java

@requestmapping("/springmvc")
@controller
public class springmvctest {
  private static final string success = "success";
  
  @requestmapping(value="/testmodelandview")
  public modelandview testmodelandview() {
    string viewname = success;
    modelandview modelandview = new modelandview(viewname);
    //添加模型数据到modelandview中
    modelandview.addobject("time", new date());
    return modelandview;
  }
}

index.jsp

  <a href="springmvc/testmodelandview" rel="external nofollow" >testmodelandview</a>

success.jsp

  <p>success</p>
  <p>time:${requestscope.time}</p>

启动服务器之后:

springmvc处理模型数据ModelAndView过程详解

点击:

springmvc处理模型数据ModelAndView过程详解

成功将time传给视图了。

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。