首頁  >  文章  >  Java  >  Java SpringMVC資料回應實例分析

Java SpringMVC資料回應實例分析

WBOY
WBOY轉載
2023-05-21 12:16:06766瀏覽

1)頁面跳轉  

直接回傳字串:此種方式會將傳回的字串與視圖解析器的前後綴拼接後跳轉。

Java SpringMVC資料回應實例分析

傳回帶有前綴的字串:

轉發:   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;
}

2)回寫資料

直接回傳字串: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座標。

<!--jackson-->
<dependency>
 <groupId>com.fasterxml.jackson.core</groupId>
 <artifactId>jackson-core</artifactId>
 <version>2.9.0</version>
</dependency>
<dependency>
 <groupId>com.fasterxml.jackson.core</groupId>
 <artifactId>jackson-databind</artifactId>
 <version>2.9.0</version>
</dependency> 
<dependency>
 <groupId>com.fasterxml.jackson.core</groupId>
 <artifactId>jackson-annotations</artifactId>
 <version>2.9.0</version>
</dependency>

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中進行如下配置:

<bean class="org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter">
 <property name="messageConverters">
     <list>
        <bean class="org.springframework.http.converter.json.MappingJackson2HttpMessageConverter"></bean>
     </list>
 </property>
</bean>

直接在方法中傳回物件或集合

@RequestMapping("/quick8")
@ResponseBody
public User quickMethod8() throws IOException {
    User user = new User();
    user.setUsername("zhangsan");
    user.setAge(18);
    return user;
}

3)配置註解驅動

#在方法上加入 @ResponseBody就可以回傳json格式的字串,但是這樣配置比較麻煩,配置的程式碼比較多, 因此,我們可以使用mvc的註解驅動來取代上述配置。

在 SpringMVC 的各個元件中,   處理器映射器、   處理器適配器、   視圖解析器稱為 SpringMVC 的三大元件。

使用自動載入RequestMappingHandlerMapping(處理映射器)和RequestMappingHandlerAdapter(處理適配器)可用在Spring-xml.xml設定檔中使用       

同時使用預設底層就會整合jackson進行物件或集合的json格式字串的轉換。

<!--在spring-mvc.xml中配置mvc的注解驱动--> 
<mvc:annotation-driven/>

4)知識重點

SpringMVC的資料回應方式

1)頁面跳轉         

  • #直接返回   

  • ##透過ModelAndView物件回傳

#透過ModelAndView物件回傳

  • 2)回寫資料         

##傳回物件或集合##########

以上是Java SpringMVC資料回應實例分析的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文轉載於:yisu.com。如有侵權,請聯絡admin@php.cn刪除