直接回傳字串:此種方式會將傳回的字串與視圖解析器的前後綴拼接後跳轉。
傳回帶有前綴的字串:
轉發: forward:/WEB-INF/views/index.jsp
重定向: redirect:/index.jsp
透過ModelAndView物件返回
@RequestMapping("/quick2") public ModelAndView quickMethod2(){ ModelAndView modelAndView = new ModelAndView(); modelAndView.setViewName("redirect:index.jsp"); return modelAndView; } @RequestMapping("/quick3") public ModelAndView quickMethod3(){ ModelAndView modelAndView = new ModelAndView(); modelAndView.setViewName("forward:/WEB-INF/views/index.jsp"); return modelAndView; }
在進行轉發時,往往要向request域中儲存數據,在jsp頁面中顯示,那麼Controller中怎樣向request 域中儲存資料呢?
① 透過SpringMVC框架注入的request物件setAttribute()方法設定。
@RequestMapping("/quick") public String quickMethod(HttpServletRequest request){ request.setAttribute("name","zhangsan"); return "index"; }
② 透過ModelAndView的addObject()方法設定。
@RequestMapping("/quick3") public ModelAndView quickMethod3(){ ModelAndView modelAndView = new ModelAndView(); modelAndView.setViewName("forward:/WEB-INF/views/index.jsp"); modelAndView.addObject("name","lisi"); return modelAndView; }
直接回傳字串:Web基礎階段,客戶端存取伺服器端,如果想直接回寫字串作為回應體傳回的話,只需要使用response .getWriter().print(“hello world”) 即可,那麼在Controller中想直接回寫字串該怎麼呢?
① 透過SpringMVC框架注入的response對象,使用response.getWriter().print(“hello world”) 回寫數據,此時不需要視圖跳轉,業務方法傳回值為void。
@RequestMapping("/quick4") public void quickMethod4(HttpServletResponse response) throws IOException { response.getWriter().print("hello world"); }
② 將需要回寫的字串直接傳回,但此時需要透過@ResponseBody註解告知SpringMVC框架,方法 傳回的字串不是跳轉是直接在http響應體中傳回。
@RequestMapping("/quick5") @ResponseBody public String quickMethod5() throws IOException { return "hello springMVC!!!"; }
開發中往往要將複雜的java物件轉換成json格式的字串,我們可以使用web階段學習過的json轉換工具jackson進行轉換,
1.在pom. xml中匯入jackson座標。
com.fasterxml.jackson.core jackson-core 2.9.0 com.fasterxml.jackson.core jackson-databind 2.9.0 com.fasterxml.jackson.core jackson-annotations 2.9.0
2.透過jackson轉換json格式字串,回寫字串。
@RequestMapping("/quick7") @ResponseBody public String quickMethod7() throws IOException { User user = new User(); user.setUsername("zhangsan"); user.setAge(18); ObjectMapper objectMapper = new ObjectMapper(); String s = objectMapper.writeValueAsString(user); return s; }
返回物件或集合
透過SpringMVC幫助我們對物件或集合進行json字串的轉換並回寫,為處理器適配器配置訊息轉換參數, 指定使用jackson進行物件或集合的轉換,因此需要在spring-mvc.xml中進行如下配置:
直接在方法中傳回物件或集合
@RequestMapping("/quick8") @ResponseBody public User quickMethod8() throws IOException { User user = new User(); user.setUsername("zhangsan"); user.setAge(18); return user; }
#在方法上加入 @ResponseBody就可以回傳json格式的字串,但是這樣配置比較麻煩,配置的程式碼比較多, 因此,我們可以使用mvc的註解驅動來取代上述配置。
在 SpringMVC 的各個元件中, 處理器映射器、 處理器適配器、 視圖解析器稱為 SpringMVC 的三大元件。
使用
同時使用
SpringMVC的資料回應方式
1)頁面跳轉
#直接返回
#透過ModelAndView物件回傳
2)回寫資料
以上是Java SpringMVC資料回應實例分析的詳細內容。更多資訊請關注PHP中文網其他相關文章!