SpringMVC的controller向jsp传递数据的五种方式详解

原文链接

第一种   使用model来保存数据到前台

我的项目目录为

 

我的controller页面代码

 
  1. @RequestMapping("/demo")

  2. public String Model(Model model){

  3. UserBean bean = new UserBean();

  4. bean.setName("admin");

  5. bean.setPwd("admin");

  6. model.addAttribute("admin", bean);

  7. return "Model";

  8. }

    Model.jsp页面

 
  1. <%@ page language="java" contentType="text/html; charset=utf-8"

  2. pageEncoding="utf-8"%>

  3. <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">

  4. <html>

  5. <head>

  6. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">

  7. <title>Insert title here</title>

  8. </head>

  9. <body>

  10. ${admin }

  11. </body>

  12. </html>

 

效果为

 

第二种  使用ModelAndView来保存数据

 

我的controller页面

 
  1. @RequestMapping("/demo1")

  2. public ModelAndView ModelView(){

  3. ModelAndView view = new ModelAndView();

  4. UserBean bean = new UserBean();

  5. bean.setName("孙悟空");

  6. bean.setPwd("猪八戒");

  7. view.addObject("admin", bean);

  8. view.setViewName("Model");

  9. return view;

  10. }

 

    Model.jsp页面 同上面一样 效果图为

 

第三种 使用hashmap保存数据

我的controller页面

 
  1. @RequestMapping("/demo2")

  2. public String Hashmap(HashMap<String, Object> hashMap){

  3. UserBean bean = new UserBean();

  4. bean.setName("刘备");

  5. bean.setPwd("张飞");

  6. hashMap.put("admin", bean);

  7. return "Model";

  8. }

    Model.jsp页面 同上面一样 效果图为

 

第四种方式 使用session来保存数据

 

我的controller页面

 
  1. @RequestMapping("/demo3")

  2. public String session(HttpSession session){

  3. UserBean bean = new UserBean();

  4. bean.setName("曹操");

  5. bean.setPwd("周瑜");

  6. session.setAttribute("admin", bean);

  7. return "Model";

  8. }

 

    Model.jsp页面 同上面一样 效果图为

 

第五种方式 request来保存数据

 

我的controller页面

 
  1. @RequestMapping("/demo4")

  2. public String request(HttpServletRequest request){

  3. UserBean bean = new UserBean();

  4. bean.setName("张三");

  5. bean.setPwd("123");

  6. request.setAttribute("admin", bean);

  7. return "Model";

  8. }

 

   Model.jsp页面 同上面一样 效果图为

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值