第一种 使用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页面 同上面一样 效果图为