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

2021/12/24 23:11:46

本文主要是介绍SpringMVC的controller向jsp传递数据的五种方式详解,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

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

我的项目目录为

 

我的controller页面代码

@RequestMapping("/demo")
public String Model(Model model){
UserBean bean = new UserBean();
bean.setName("admin");
bean.setPwd("admin");
model.addAttribute("admin", bean);
return "Model";
}
Model.jsp页面

<%@ page language="java" contentType="text/html; charset=utf-8"
pageEncoding="utf-8"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Insert title here</title>
</head>
<body>
${admin }
</body>
</html>


效果为

 

 

第二种 使用ModelAndView来保存数据

 

我的controller页面

@RequestMapping("/demo1")
public ModelAndView ModelView(){
ModelAndView view = new ModelAndView();
UserBean bean = new UserBean();
bean.setName("孙悟空");
bean.setPwd("猪八戒");
view.addObject("admin", bean);
view.setViewName("Model");
return view;
}

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

 

 

第三种 使用hashmap保存数据

我的controller页面

@RequestMapping("/demo2")
public String Hashmap(HashMap<String, Object> hashMap){
UserBean bean = new UserBean();
bean.setName("刘备");
bean.setPwd("张飞");
hashMap.put("admin", bean);
return "Model";
}
Model.jsp页面 同上面一样 效果图为

 

 

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

 

我的controller页面

@RequestMapping("/demo3")
public String session(HttpSession session){
UserBean bean = new UserBean();
bean.setName("曹操");
bean.setPwd("周瑜");
session.setAttribute("admin", bean);
return "Model";
}

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

 

 

第五种方式 request来保存数据

 

我的controller页面

@RequestMapping("/demo4")
public String request(HttpServletRequest request){
UserBean bean = new UserBean();
bean.setName("张三");
bean.setPwd("123");
request.setAttribute("admin", bean);
return "Model";
}


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

 


原文链接:https://blog.csdn.net/qq_40646143/article/details/79536909



这篇关于SpringMVC的controller向jsp传递数据的五种方式详解的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程