133_Java_SpringMVC_域对象共享数据_视图

举报
alexsully 发表于 2021/08/16 18:46:20 2021/08/16
【摘要】 域对象共享数据 SpringMVC的视图

域对象共享数据

原始
1 使用ServletAPI向request域对象共享数据

@Controller
public class ScopeController {
    //使用servletAPI向request域对象共享数据
    @RequestMapping("/testRequestByServletAPI")
    public String testRequestByServletAPI(HttpServletRequest request){
        request.setAttribute("testRequestScope", "hello,servletAPI");
        return "success";
    }

MVC -不管哪种方式,最终数据都会被封装到 ModelAndView中

2 使用ModelAndView向request域对象共享数据
3 使用Model向request域对象共享数据
4 使用map向request域对象共享数据
5 使用ModelMap向request域对象共享数据
6  Model、ModelMap、Map的关系

 @RequestMapping("/testModelAndView")
    public ModelAndView testModelAndView(){
        ModelAndView mav = new ModelAndView();
        //处理模型数据,即向请求域request共享数据
        mav.addObject("testRequestScope", "hello,ModelAndView");
        //设置视图名称
        mav.setViewName("success");
        return mav;
    }

    // BindingAwareModelMap
    // Model、ModelMap、Map类型的参数其实本质上都是 BindingAwareModelMap 类型的

    @RequestMapping("/testModel")
    public String testModel(Model model){
        model.addAttribute("testRequestScope", "hello,model");
        System.out.println(model.getClass().getName());  //BindingAwareModelMap
        return "success";
    }

    @RequestMapping("/testMap")
    public String testMap(Map<String, Object> map){
        map.put("testRequestScope", "hello,map");
        System.out.println(map.getClass().getName());  //BindingAwareModelMap
        return "success";
    }

    @RequestMapping("/testModelMap")
    public String testModelMap(ModelMap modelMap){
        modelMap.addAttribute("testRequestScope", "hello,ModelMap");
        System.out.println(modelMap.getClass().getName());  //BindingAwareModelMap
        return "success";
    }

7  向session域共享数据

session 钝化: 服务器关闭,浏览器未关闭 说明会话继续,存储在session的数据会序列化到磁盘上
session 活化: 服务器重新开启 ,将钝化后session的数据重新读取到session中 称为活化
8  向application域共享数据

    @RequestMapping("/testSession")
    public String testSession(HttpSession session){
        session.setAttribute("testSessionScope", "hello,session");
        return "success";
    }

    @RequestMapping("/testApplication")
    public  String testApplication(HttpSession session){
        ServletContext context = session.getServletContext();
        context.setAttribute("testApplicationScope", "hello,application");
        return "success";
    }
<!DOCTYPE html>
<html lang="en" xmlns:th="http://www.thyeleaf.org">
    <head>
        <meta charset="UTF-8">
        <title>首页</title>
    </head>
    <body>
        <h1>首页</h1>
<!--        <a th:href="@{/target}">访问目标页面target.html</a>-->
        <a th:href="@{/testRequestByServletAPI}">通过servletAPI向request域对象共享数据</a><br>
        <a th:href="@{/testModelAndView}">通过ModelAndView向request域对象共享数据</a><br>
        <a th:href="@{/testModel}">通过Model向request域对象共享数据</a><br>
        <a th:href="@{/testMap}">通过map向request域对象共享数据</a><br>
        <a th:href="@{/testModelMap}">通过ModelMap向request域对象共享数据</a><br>
        <a th:href="@{/testSession}">通过servletAPI向session域对象共享数据</a><br>
        <a th:href="@{/testApplication}">通过servletAPI向application域对象共享数据</a><br>

    </body>
</html>


SpringMVC的视图
SpringMVC中的视图是View接口,视图的作用渲染数据,将模型Model中的数据展示给用户
SpringMVC视图的种类很多,默认有转发视图和重定向视图
当工程引入jstl的依赖,转发视图会自动转换为JstlView
若使用的视图技术为Thymeleaf,在SpringMVC的配置文件中配置了Thymeleaf的视图解析器,由此视图解析器解析之后所得到的是ThymeleafView


1 ThymeleafView
当控制器方法中所设置的视图名称没有任何前缀时,此时的视图名称会被SpringMVC配置文件中所配置的视图解析器解析,
视图名称拼接视图前缀和视图后缀所得到的最终路径,会通过转发的方式实现跳转

2 转发视图SpringMVC中默认的转发视图是InternalResourceView

SpringMVC中创建转发视图的情况:
当控制器方法中所设置的视图名称以"forward:"为前缀时,
创建InternalResourceView视图,此时的视图名称不会被SpringMVC配置文件中所配置的视图解析器解析,
而是会将前缀"forward:"去掉,剩余部分作为最终路径通过转发的方式实现跳转
例如"forward:/","forward:/employee"


3 重定向视图SpringMVC中默认的重定向视图是RedirectView

当控制器方法中所设置的视图名称以"redirect:"为前缀时,创建RedirectView视图,此时的视图名称不会被SpringMVC配置文件中所配置的视图解析器解析,
而是会将前缀"redirect:"去掉,剩余部分作为最终路径通过重定向的方式实现跳转
例如"redirect:/","redirect:/employee"


@Controller
public class ViewController {
    @RequestMapping("/testThymeleafView")
    public String testThymeleafView(){
        return "success";    // 转发浏览器 地址http://localhost:8080/springMVC/testThymeleafView
    }

    @RequestMapping("/testForward")
    public String testForward(){
        return "forward:/testThymeleafView";  //http://localhost:8080/springMVC/testForward
    }

    @RequestMapping("/testRedirect")
    public String testRedirect(){
        return "redirect:/testThymeleafView"; //http://localhost:8080/springMVC/testThymeleafView
    }


}


<!DOCTYPE html>
<html lang="en" xmlns:th="http:www/themyleaf.org">
    <head>
        <meta charset="UTF-8">
        <title>Title</title>
    </head>
    <body>
        <a th:href="@{/testThymeleafView}">测试ThymeleafView</a><br>
        <a th:href="@{/testForward}">测试InternalResourceView</a><br>
        <a th:href="@{/testRedirect}">测试RedirectView</a><br>
    </body>
</html>

4 视图控制器view-controller
当控制器方法中,仅仅用来实现页面跳转,即只需要设置视图名称时,可以将处理器方法使用view-controller标签进行表示

<!--
    path:设置处理的请求地址
   view-name:设置请求地址所对应的视图名称
-->

<mvc:view-controller path="/" view-name="index"></mvc:view-controller>
<mvc:view-controller path="/test_view" view-name="test_view"></mvc:view-controller>
<mvc:view-controller path="/test_rest" view-name="test_rest"></mvc:view-controller>

<!--开启mvc的注解驱动-->
<mvc:annotation-driven />

JSP 页面跳转

MVC配置

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xmlns:context="http://www.springframework.org/schema/context"
       xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/context https://www.springframework.org/schema/context/spring-context.xsd">

    <context:component-scan base-package="com.atguigu.mvc.controller"></context:component-scan>

    <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
        <property name="prefix" value="/WEB-INF/templates/"></property>
        <property name="suffix" value=".jsp"></property>
    </bean>

</beans

<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
    <title>Title</title>
</head>
<body>
<h1>首页</h1>
<a href="${pageContext.request.contextPath}/success">success.jsp</a>
</body>
</html>

@Controller
public class JspController {

    @RequestMapping("/success")
    public String success(){
        return "success";
    }

}

【版权声明】本文为华为云社区用户原创内容,转载时必须标注文章的来源(华为云社区)、文章链接、文章作者等基本信息, 否则作者和本社区有权追究责任。如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱: cloudbbs@huaweicloud.com
  • 点赞
  • 收藏
  • 关注作者

评论(0

0/1000
抱歉,系统识别当前为高风险访问,暂不支持该操作

全部回复

上滑加载中

设置昵称

在此一键设置昵称,即可参与社区互动!

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。