您好,登錄后才能下訂單哦!
返回ModelAndView
如果前后端不分的開發(fā),大部分情況下,我們返回ModelAndView,即數(shù)據(jù)模型+視圖:
@Controller @RequestMapping("/user") public class HelloController { @RequestMapping("/hello") public ModelAndView hello() { ModelAndView mv = new ModelAndView("hello"); mv.addObject("username", "javaboy"); return mv; } }
Model中,放我們的數(shù)據(jù),然后在ModelAndView中指定視圖名稱
返回Void
沒有返回值。沒有返回值,并不一定真的沒有返回值,只是方法的返回值為 void,我們可以通過其他方式給前端返回。實際上,這種方式也可以理解為 Servlet 中的那一套方案。
注意,由于默認(rèn)的 Maven 項目沒有 Servlet,因此這里需要額外添加一個依賴:
<dependency> <groupId>javax.servlet</groupId> <artifactId>javax.servlet-api</artifactId> <version>4.0.1</version> </dependency>
通過 HttpServletRequest 做服務(wù)端跳轉(zhuǎn)
@RequestMapping("/hello2") public void hello2(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException { req.getRequestDispatcher("/jsp/hello.jsp").forward(req,resp);//服務(wù)器端跳轉(zhuǎn) }
通過HttpServletRequest做服務(wù)跳轉(zhuǎn)
@RequestMapping("/hello2") public void hello2(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException { req.getRequestDispatcher("/jsp/hello.jsp").forward(req,resp);//服務(wù)器端跳轉(zhuǎn) }
通過HttpServletResponse做重定向
@RequestMapping("/hello3") public void hello3(HttpServletRequest req, HttpServletResponse resp) throws IOException { resp.sendRedirect("/hello.jsp"); }
也可以自己手動指定響應(yīng)頭去實現(xiàn)重定向:
@RequestMapping("/hello3") public void hello3(HttpServletRequest req, HttpServletResponse resp) throws IOException { resp.setStatus(302); resp.addHeader("Location", "/jsp/hello.jsp"); }
通過 HttpServletResponse 給出響應(yīng)
@RequestMapping("/hello4") public void hello4(HttpServletRequest req, HttpServletResponse resp) throws IOException { resp.setContentType("text/html;charset=utf-8"); PrintWriter out = resp.getWriter(); out.write("hello javaboy!"); out.flush(); out.close(); }
這種方式,既可以返回 JSON,也可以返回普通字符串。
返回字符串
返回邏輯視圖名
前面的 ModelAndView 可以拆分為兩部分,Model 和 View,在 SpringMVC 中,Model 我們可以直接在參數(shù)中指定,然后返回值是邏輯視圖名:
@RequestMapping("/hello5") public String hello5(Model model) { model.addAttribute("username", "javaboy");//這是數(shù)據(jù)模型 return "hello";//表示去查找一個名為 hello 的視圖 }
服務(wù)端跳轉(zhuǎn)
@RequestMapping("/hello5") public String hello5() { return "forward:/jsp/hello.jsp"; }
forward 后面跟上跳轉(zhuǎn)的路徑。
客戶端跳轉(zhuǎn)
@RequestMapping("/hello5") public String hello5() { return "redirect:/user/hello"; }
真的返回一個字符串
上面三個返回的字符串,都是由特殊含義的,如果一定要返回一個字符串,需要額外添加一個注意:@ResponseBody ,這個注解表示當(dāng)前方法的返回值就是要展示出來返回值,沒有特殊含義。
@RequestMapping("/hello5") @ResponseBody public String hello5() { return "redirect:/user/hello"; }
上面代碼表示就是想返回一段內(nèi)容為 redirect:/user/hello 的字符串,他沒有特殊含義。注意,這里如果單純的返回一個中文字符串,是會亂碼的,可以在 @RequestMapping 中添加 produces 屬性來解決:
@RequestMapping(value = "/hello5",produces = "text/html;charset=utf-8") @ResponseBody public String hello5() { return "Java 語言程序設(shè)計"; }
以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持億速云。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。