码迷,mamicode.com
首页 > 编程语言 > 详细

springmvc数据处理模型

时间:2016-12-19 00:10:59      阅读:223      评论:0      收藏:0      [点我收藏+]

标签:获取   model   mod   处理   session   注解   nbsp   使用   ping   

1、ModelAndView

 实现:

@RequestMapping("/testModelAndView")
    public ModelAndView testModelAndView() {
        modelAndView.addObject("name", "hy");
        return modelAndView;
    }

页面获取:

<%
System.out.println(request.getAttribute("name"));
%>
name: ${requestScope.name }

 

2、Map

 使用map作为参数,向map中放值,参数也可以是model、modelmap

@RequestMapping("/testMap")
    public String testMap(Map<String,Object> map) {
        map.put("user", new User("ht", "123456", "ht@sina.com"));
        return SUCCESS;
    }

页面获取:

user: ${requestScope.user }

 

3、SessionSttributes

使用这个注解可以将值放在session域中

@SessionAttributes(names={"user"},types={User.class})

当向请求域中放user的时候也会同时向session里面放一份

页面:

    session user: ${sessionScope.user }

 

springmvc数据处理模型

标签:获取   model   mod   处理   session   注解   nbsp   使用   ping   

原文地址:http://www.cnblogs.com/hy87/p/6195632.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!