資料處理及跳轉

HuDu發表於2020-07-04

結果跳轉方式

ModelAndView

設定ModelAndView物件 , 根據view的名稱 , 和檢視解析器跳到指定的頁面。
頁面 : {檢視解析器字首} + viewName +{檢視解析器字尾}

<!-- 檢視解析器 -->
<bean class="org.springframework.web.servlet.view.InternalResourceViewResolver"
     id="internalResourceViewResolver">
   <!-- 字首 -->
   <property name="prefix" value="/WEB-INF/jsp/" />
   <!-- 字尾 -->
   <property name="suffix" value=".jsp" />
</bean>

對應的controller類

public class ControllerTest1 implements Controller {  public ModelAndView handleRequest(HttpServletRequest httpServletRequest, HttpServletResponse httpServletResponse) throws Exception {
       //返回一個模型檢視物件
       ModelAndView mv = new ModelAndView();
       mv.addObject("msg","ControllerTest1");
       mv.setViewName("test");
       return mv;
  }
}

ServletAPI

透過設定ServletAPI , 不需要檢視解析器。
1、透過HttpServletResponse進行輸出
2、透過HttpServletResponse實現重定向
3、透過HttpServletResponse實現轉發

@Controller
public class ControllerTest1 {

    @RequestMapping("/result/t1")
    public void test1(HttpServletRequest req, HttpServletResponse resp) throws IOException {
        resp.getWriter().println("Hello!Spring by servlet API");
    }

    @RequestMapping("/result/t2")
    public void test2(HttpServletRequest req,HttpServletResponse resp) throws IOException {
        resp.sendRedirect("/index.jsp");
    }

    @RequestMapping("result/t3")
    public void test3(HttpServletRequest req,HttpServletResponse resp) throws ServletException, IOException {
        //轉發
        req.setAttribute("msg","/result/t3");
        req.getRequestDispatcher("/WEB-INF/jsp/test.jsp").forward(req,resp);
    }

}

SpringMVC

透過SpringMVC來實現轉發和重定向 - 無需檢視解析器;

測試前,需要將檢視解析器註釋掉

//透過SpringMVC來實現轉發和重定向 - 無需檢視解析器
@Controller
public class ControllerTest2 {

    @RequestMapping("/rsm/t1")
    public String test1() {
        //轉發
        return "/index.jsp";
    }

    @RequestMapping("/rsm/t2")
    public String test2() {

        //轉發
        return "forward:/index.jsp";
    }

    @RequestMapping("/rsm/t3")
    public String test3() {
        return "redirect:/index.jsp";
    }

}

資料處理

處理提交資料

1、提交的域名稱和處理方法的引數名一致

提交資料 : http://localhost:8080/hello?name=hudu

處理方法 :

public class ControllerTest3 {
    @RequestMapping("/hello")
    public String test1(String name, Model model) {
//        System.out.println(name);
        model.addAttribute("msg",name);
        return "test";
    }
}

2、提交的域名稱和處理方法的引數名不一致

提交資料 : http://localhost:8080/hello?username=hudu

處理方法 :

@RequestMapping("/hello2")
    public String test2(@RequestParam("username") String name, Model model) {

        model.addAttribute("msg",name);
        return "test";
    }

3、提交的是一個物件

要求提交的表單域和物件的屬性名一致 , 引數使用物件即可

1、實體類

public class User {
   private int id;
   private String name;
   private int age;
   //構造
   //get/set
   //tostring()
}

2、提交資料 : http://localhost:8080/mvc04/user?name=hudu&id=1&age=15

3、處理方法 :

@RequestMapping("/user")
public String test3(User user){
   System.out.println(user);
   return "hello";
}

如果使用物件的話,前端傳遞的引數名和物件名必須一致,否則就是null。

資料顯示到前端

第一種 : 透過ModelAndView

public class ControllerTest1 implements Controller {  public ModelAndView handleRequest(HttpServletRequest httpServletRequest, HttpServletResponse httpServletResponse) throws Exception {
       //返回一個模型檢視物件
       ModelAndView mv = new ModelAndView();
       mv.addObject("msg","ControllerTest1");
       mv.setViewName("test");
       return mv;
  }
}

第二種 : 透過ModelMap

ModelMap

@RequestMapping("/hello")
public String hello(@RequestParam("username") String name, ModelMap model){
   //封裝要顯示到檢視中的資料
   //相當於req.setAttribute("name",name);
   model.addAttribute("name",name);
   System.out.println(name);
   return "hello";
}

第三種 : 透過Model

Model

@RequestMapping("/ct2/hello")
public String hello(@RequestParam("username") String name, Model model){
   //封裝要顯示到檢視中的資料
   //相當於req.setAttribute("name",name);
   model.addAttribute("msg",name);
   System.out.println(name);
   return "test";
}

對比

簡單來說:
Model 只有寥寥幾個方法只適合用於儲存資料,簡化了對於Model物件的操作和理解;

ModelMap 繼承了 LinkedMap ,除了實現了自身的一些方法,同樣的繼承 LinkedMap 的方法和特性;

ModelAndView 可以在儲存資料的同時,可以進行設定返回的邏輯檢視,進行控制展示層的跳轉。

本作品採用《CC 協議》,轉載必須註明作者和本文連結

相關文章