真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

springmvc如何實(shí)現(xiàn)Rest風(fēng)格-創(chuàng)新互聯(lián)

這篇文章主要介紹了springmvc如何實(shí)現(xiàn)Rest風(fēng)格,具有一定借鑒價(jià)值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。

創(chuàng)新互聯(lián)秉承實(shí)現(xiàn)全網(wǎng)價(jià)值營(yíng)銷(xiāo)的理念,以專(zhuān)業(yè)定制企業(yè)官網(wǎng),成都網(wǎng)站制作、成都網(wǎng)站建設(shè)、外貿(mào)營(yíng)銷(xiāo)網(wǎng)站建設(shè),重慶小程序開(kāi)發(fā),網(wǎng)頁(yè)設(shè)計(jì)制作,手機(jī)網(wǎng)站開(kāi)發(fā),全網(wǎng)營(yíng)銷(xiāo)推廣幫助傳統(tǒng)企業(yè)實(shí)現(xiàn)“互聯(lián)網(wǎng)+”轉(zhuǎn)型升級(jí)專(zhuān)業(yè)定制企業(yè)官網(wǎng),公司注重人才、技術(shù)和管理,匯聚了一批優(yōu)秀的互聯(lián)網(wǎng)技術(shù)人才,對(duì)客戶都以感恩的心態(tài)奉獻(xiàn)自己的專(zhuān)業(yè)和所長(zhǎng)。

簡(jiǎn)介

  REST 即 Representational State Transfer。(資源)表現(xiàn)層狀態(tài)轉(zhuǎn)化。是目前最流行的一種互聯(lián)網(wǎng)軟件架構(gòu)。它結(jié)構(gòu)清晰、符合標(biāo)準(zhǔn)、易于理解、擴(kuò)展方便,所以正得到越來(lái)越多網(wǎng)站的采用,POST, DELETE, PUT, GET 分別對(duì)應(yīng) CRUD。Spring3.0 開(kāi)始支持 REST 風(fēng)格的請(qǐng)求,是通過(guò) org.springframework.web.filter.HiddenHttpMethodFilter 把 POST 請(qǐng)求轉(zhuǎn)化為 PUT 和 DELETE 請(qǐng)求。本次實(shí)驗(yàn)采用的是 Spring4.0 。

HiddenHttpMethodFilter 源碼

public static final String DEFAULT_METHOD_PARAM = "_method";
@Override
  protected void doFilterInternal(HttpServletRequest request, HttpServletResponse response, FilterChain filterChain)
      throws ServletException, IOException {
	String paramValue = request.getParameter(this.methodParam);
	if ("POST".equals(request.getMethod()) && StringUtils.hasLength(paramValue)) {
		String method = paramValue.toUpperCase(Locale.ENGLISH);
		HttpServletRequest wrapper = new HttpMethodRequestWrapper(request, method);
		filterChain.doFilter(wrapper, response);
	} else {
		filterChain.doFilter(request, response);
	}
}

  從 HiddenHttpMethodFilter 的源碼可以看出,Spring 根據(jù)請(qǐng)求中的 _method 參數(shù)進(jìn)行轉(zhuǎn)化,因此如果想發(fā)起 REST 風(fēng)格的 DELETE 或者 PUT 請(qǐng)求,只需要在表單中帶上 _method 參數(shù),并且把 _method 的值設(shè)置為 DELETE 或者 PUT(大寫(xiě)) 即可。詳細(xì)例子如下:

在 web.xml 中配置 HiddenHttpMethodFilter
編寫(xiě) handler 代碼
編寫(xiě)頁(yè)面


  
    HiddenHttpMethodFilter
    org.springframework.web.filter.HiddenHttpMethodFilter
  
  
    HiddenHttpMethodFilter
    /*
  
package rex.springmvc.handlers;
import org.apache.log4j.Logger;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RequestParam;
@RequestMapping(value="/restTest")
@Controller
public class RestTestHandler {
	private static final Logger logger = Logger.getLogger(RestTestHandler.class);
	private static final String SUCCESS = "success";
	@RequestMapping(value="/restGet/{id}", method=RequestMethod.GET)
	  public String restGet(@RequestParam(value="id", required=false) Integer id){
		logger.debug("restGet:" + id);
		return SUCCESS;
	}
	@RequestMapping(value="/restPut/{id}", method=RequestMethod.PUT)
	  public String restPut(@RequestParam(value="id", required=false) Integer id){
		logger.debug("restPut:" + id);
		return SUCCESS;
	}
	@RequestMapping(value="/restDelete/{id}", method=RequestMethod.DELETE)
	  public String restDelete(@RequestParam(value="id", required=false) Integer id){
		logger.debug("restDelete:" + id);
		return SUCCESS;
	}
	@RequestMapping(value="/restPost", method=RequestMethod.POST)
	  public String restPost(){
		logger.debug("restPost");
		return SUCCESS;
	}
}
<%@ page language="java" contentType="text/html; charset=UTF-8"
  pageEncoding="UTF-8"%>




Rest Test


  
  
  Test Rest Get   
  
              
  
              
  
          

注:handler 中 @RequestParam 注解必須加上 required 參數(shù),否則訪問(wèn)頁(yè)面會(huì)出現(xiàn)400錯(cuò)誤。

springmvc如何實(shí)現(xiàn)Rest風(fēng)格

感謝你能夠認(rèn)真閱讀完這篇文章,希望小編分享的“springmvc如何實(shí)現(xiàn)Rest風(fēng)格”這篇文章對(duì)大家有幫助,同時(shí)也希望大家多多支持創(chuàng)新互聯(lián),關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,更多相關(guān)知識(shí)等著你來(lái)學(xué)習(xí)!


網(wǎng)頁(yè)名稱(chēng):springmvc如何實(shí)現(xiàn)Rest風(fēng)格-創(chuàng)新互聯(lián)
文章起源:http://weahome.cn/article/gojph.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部