05-SpringMVC 视图

05-SpringMVC 视图,第1张

05-SpringMVC 视图 1.相关概念

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

2.ThymeleafView

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

springMVC.xml



    
    

    
    
        
        
        
            
                
                    

                        
                        

                        
                        
                        
                        
                    
                
            
        
    

    
    

    
    
        
            
            
                
                
                    
                        text/html
                        application/json
                    
                
            
        
    

LoginController

package com.limi.controller;

import org.springframework.stereotype.Controller;;
import org.springframework.web.bind.annotation.RequestMapping;

@Controller
public class LoginController {

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

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

}

可以看到视图是ThymeleafView类型

2.转发视图

  SpringMVC中默认的转发视图是InternalResourceView. SpringMVC中创建转发视图的情况:
当控制器方法中所设置的视图名称以"forward:"为前缀时,创建InternalResourceView视图,此时的视图名称不会被SpringMVC配置文件中所配置的视图解析器解析,而是会将前缀"forward:“去掉,剩余部分作为最终路径通过转发的方式实现跳转.例如"forward:/”,“forward:/employee”
  简单点说, 就是执行了a请求对应的控制器方法, 最后还想执行b请求对应的控制器方法并显示b对应的页面(不仅仅是跳转到b请求对应页面, 重要的是要执行控制器里的方法).

LoginController

package com.limi.controller;

import org.springframework.stereotype.Controller;;
import org.springframework.web.bind.annotation.RequestMapping;

@Controller
public class LoginController {

    @RequestMapping("/index")
    public String test(){
        System.out.println("执行了/index对应控制器方法");
        return "forward:/success";
    }

    @RequestMapping("/success")
    public String success(){
        System.out.println("执行了/success对应控制器方法");
        return "success";
    }

}

可以看到视图是InternalResourseView类型

控制台输出

注意地址栏仍然是http://localhost:8080/springMVC/index, 也就是第一个请求的地址

3.重定向视图

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

LoginController

package com.limi.controller;

import org.springframework.stereotype.Controller;;
import org.springframework.web.bind.annotation.RequestMapping;

@Controller
public class LoginController {

    @RequestMapping("/index")
    public String test(){
        System.out.println("执行了/index对应控制器方法");
        return "redirect:/success";
    }

    @RequestMapping("/success")
    public String success(){
        System.out.println("执行了/success对应控制器方法");
        return "success";
    }

}

可以看到视图是RedirectView类型

控制台输出

注意地址栏仍然是http://localhost:8080/springMVC/success, 也就是第二个请求的地址

4.小知识 1. 使用redirect重定向时, 第一个请求里model的数据不会传递到第二个请求的model里
package com.limi.controller;

import org.springframework.stereotype.Controller;;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.RequestMapping;

@Controller
public class LoginController {

    @RequestMapping("/index")
    public String test(Model model){
        System.out.println("执行了/index对应控制器方法");
        model.addAttribute("str", "hello index");
        return "redirect:/success";
    }

    @RequestMapping("/success")
    public String success(Model model){
        System.out.println("执行了/success对应控制器方法");
        String str = (String) model.getAttribute("str");
        System.out.println(str);
        return "success";
    }

}

2. 使用forward转发时, 第一个请求里model的数据同样不会传递到第二个请求的model里
package com.limi.controller;

import org.springframework.stereotype.Controller;;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.RequestMapping;

@Controller
public class LoginController {

    @RequestMapping("/index")
    public String test(Model model){
        System.out.println("执行了/index对应控制器方法");
        model.addAttribute("str", "hello index");
        return "forward:/success";
    }

    @RequestMapping("/success")
    public String success(Model model){
        System.out.println("执行了/success对应控制器方法");
        String str = (String) model.getAttribute("str");
        System.out.println("获取model里str="+str);
        return "success";
    }

}

3.视图控制器view-controller

  当控制器方法中,仅仅用来实现页面跳转,即只需要设置视图名称时,可以将处理器方法使用view-controller标签进行表示.(有点多此一举, 不实用)
springMVC.xml里加入如下配置

springMVC.xml



    
    

    
    
    



    
    
        
        
        
            
                
                    

                        
                        

                        
                        
                        
                        
                    
                
            
        
    

    
    

    
    
        
            
            
                
                
                    
                        text/html
                        application/json
                    
                
            
        
    

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5563573.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-15
下一篇 2022-12-14

发表评论

登录后才能评论

评论列表(0条)

保存