SpringMVC 域对象共享数据

一、使用 ServletAPI 向 request 域对象共享数据

        可以使用这种原生的 ServletAPI  request 域对象共享数据,示例如下:

<!DOCTYPE html>
<html lang="en" xmlns:th="http://www.thymeleaf.org">
<head>
    <meta charset="UTF-8">
    <title>首页</title>
</head>
<body>
    <a th:href="@{/testServletAPI}">测试ServletAPI向request域对象共享数据</a><br>
</body>
</html>
@Controller
public class ShareDataController {

    @RequestMapping("/")
    public String index() {
        return "index";
    }
    @RequestMapping("/testServletAPI")
    public String testServletAPI(HttpServletRequest request){
        request.setAttribute("testScope", "hello,servletAPI");
        return "success";
    }
}
<!DOCTYPE html>
<html lang="en" xmlns:th="http://www.thymeleaf.org">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
</head>
<body>
  <h1>success</h1><br>
    <p th:text="${testScope}"></p>
</body>
</html>

二、使用 ModelAndView 向 request 域对象共享数据

        ModelAndView Model View 的功能,Model 主要用于向请求域共享数据,View 主要用于设置视图,实现页面跳转。如下:

<!DOCTYPE html>
<html lang="en" xmlns:th="http://www.thymeleaf.org">
<head>
    <meta charset="UTF-8">
    <title>首页</title>
</head>
<body>
    <a th:href="@{/testModelAndView}">测试ModelAndView向request域对象共享数据</a><br>
</body>
</html>
@Controller
public class ShareDataController {

    @RequestMapping("/")
    public String index() {
        return "index";
    }
    @RequestMapping("/testModelAndView")
    public ModelAndView testModelAndView(){
        ModelAndView mav=new ModelAndView();
        // 向请求域共享数据
        mav.addObject("testScope","hello,ModelAndView");
        // 设置视图,实现页面跳转
        mav.setViewName("success");
        return mav;
    }
}
<!DOCTYPE html>
<html lang="en" xmlns:th="http://www.thymeleaf.org">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
</head>
<body>
  <h1>success</h1><br>
    <p th:text="${testScope}"></p>
</body>
</html>

三、使用 Model 向 request 域对象共享数据

        这里面的这个 Model 就是 ModelAndView 里面的 Model,

<!DOCTYPE html>
<html lang="en" xmlns:th="http://www.thymeleaf.org">
<head>
    <meta charset="UTF-8">
    <title>首页</title>
</head>
<body>
    <a th:href="@{/testModel}">测试Model向request域对象共享数据</a><br>
</body>
</html>
@Controller
public class ShareDataController {

    @RequestMapping("/")
    public String index() {
        return "index";
    }
    @RequestMapping("/testModel")
    public String testModel(Model model){
        model.addAttribute("testScope", "hello,Model");
        return "success";
    }
}
<!DOCTYPE html>
<html lang="en" xmlns:th="http://www.thymeleaf.org">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
</head>
<body>
  <h1>success</h1><br>
    <p th:text="${testScope}"></p>
</body>
</html>

四、使用 map 向 request 域对象共享数据

<!DOCTYPE html>
<html lang="en" xmlns:th="http://www.thymeleaf.org">
<head>
    <meta charset="UTF-8">
    <title>首页</title>
</head>
<body>
    <a th:href="@{/testMap}">测试map向request域对象共享数据</a><br>
</body>
</html>
@Controller
public class ShareDataController {

    @RequestMapping("/")
    public String index() {
        return "index";
    }
    @RequestMapping("/testMap")
    public String testMap(Map<String, Object> map){
        map.put("testScope", "hello,Map");
        return "success";
    }
}
<!DOCTYPE html>
<html lang="en" xmlns:th="http://www.thymeleaf.org">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
</head>
<body>
  <h1>success</h1><br>
    <p th:text="${testScope}"></p>
</body>
</html>

五、使用 ModelMap 向 request 域对象共享数据

<!DOCTYPE html>
<html lang="en" xmlns:th="http://www.thymeleaf.org">
<head>
    <meta charset="UTF-8">
    <title>首页</title>
</head>
<body>
    <a th:href="@{/testModelMap}">测试ModelMap向request域对象共享数据</a><br>
</body>
</html>
@Controller
public class ShareDataController {

    @RequestMapping("/")
    public String index() {
        return "index";
    }
    @RequestMapping("/testModelMap")
    public String testModelMap(ModelMap modelMap){
        modelMap.addAttribute("testScope", "hello,ModelMap");
        return "success";
    }
}
<!DOCTYPE html>
<html lang="en" xmlns:th="http://www.thymeleaf.org">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
</head>
<body>
  <h1>success</h1><br>
    <p th:text="${testScope}"></p>
</body>
</html>

六、ModelModelMapMap 的关系

        ModelModelMapMap 类型的参数其实本质上都是 BindingAwareModelMap 类型的,如下代码:

public interface Model{}
public class ModelMap extends LinkedHashMap<String, Object> {}
public class ExtendedModelMap extends ModelMap implements Model {}
public class BindingAwareModelMap extends ExtendedModelMap {}

七、向 session 域共享数据

<!DOCTYPE html>
<html lang="en" xmlns:th="http://www.thymeleaf.org">
<head>
    <meta charset="UTF-8">
    <title>首页</title>
</head>
<body>
    <a th:href="@{/testSession}">测试向session域对象共享数据</a><br>
</body>
</html>
@Controller
public class ShareDataController {

    @RequestMapping("/")
    public String index() {
        return "index";
    }
    @RequestMapping("/testSession")
    public String testSession(HttpSession session){
        session.setAttribute("testSessionScope", "hello,session");
        return "success";
    }
}
<!DOCTYPE html>
<html lang="en" xmlns:th="http://www.thymeleaf.org">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
</head>
<body>
  <h1>success</h1><br>
    <p th:text="${session.testSessionScope}"></p>
</body>
</html>

八、向 application 域共享数据

<!DOCTYPE html>
<html lang="en" xmlns:th="http://www.thymeleaf.org">
<head>
    <meta charset="UTF-8">
    <title>首页</title>
</head>
<body>
    <a th:href="@{/testApplication}">测试向Application域对象共享数据</a><br>
</body>
</html>
@Controller
public class ShareDataController {

    @RequestMapping("/")
    public String index() {
        return "index";
    }
    @RequestMapping("/testApplication")
    public String testApplication(HttpSession session){
        ServletContext application = session.getServletContext();
        application.setAttribute("testApplicationScope", "hello,application");
        return "success";
    }
}
<!DOCTYPE html>
<html lang="en" xmlns:th="http://www.thymeleaf.org">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
</head>
<body>
  <h1>success</h1><br>
    <p th:text="${application.testApplicationScope}"></p>
</body>
</html>

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

快乐的小三菊

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值