這篇文章主要介紹了springmvc如何實現(xiàn)Rest風(fēng)格,具有一定借鑒價值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。
成都創(chuàng)新互聯(lián)公司是一家集網(wǎng)站建設(shè),偃師企業(yè)網(wǎng)站建設(shè),偃師品牌網(wǎng)站建設(shè),網(wǎng)站定制,偃師網(wǎng)站建設(shè)報價,網(wǎng)絡(luò)營銷,網(wǎng)絡(luò)優(yōu)化,偃師網(wǎng)站推廣為一體的創(chuàng)新建站企業(yè),幫助傳統(tǒng)企業(yè)提升企業(yè)形象加強企業(yè)競爭力??沙浞譂M足這一群體相比中小企業(yè)更為豐富、高端、多元的互聯(lián)網(wǎng)需求。同時我們時刻保持專業(yè)、時尚、前沿,時刻以成就客戶成長自我,堅持不斷學(xué)習(xí)、思考、沉淀、凈化自己,讓我們?yōu)楦嗟钠髽I(yè)打造出實用型網(wǎng)站。
簡介
REST 即 Representational State Transfer。(資源)表現(xiàn)層狀態(tài)轉(zhuǎn)化。是目前最流行的一種互聯(lián)網(wǎng)軟件架構(gòu)。它結(jié)構(gòu)清晰、符合標(biāo)準(zhǔn)、易于理解、擴展方便,所以正得到越來越多網(wǎng)站的采用,POST, DELETE, PUT, GET 分別對應(yīng) CRUD。Spring3.0 開始支持 REST 風(fēng)格的請求,是通過 org.springframework.web.filter.HiddenHttpMethodFilter 把 POST 請求轉(zhuǎn)化為 PUT 和 DELETE 請求。本次實驗采用的是 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ù)請求中的 _method 參數(shù)進行轉(zhuǎn)化,因此如果想發(fā)起 REST 風(fēng)格的 DELETE 或者 PUT 請求,只需要在表單中帶上 _method 參數(shù),并且把 _method 的值設(shè)置為 DELETE 或者 PUT(大寫) 即可。詳細例子如下:
在 web.xml 中配置 HiddenHttpMethodFilter
編寫 handler 代碼
編寫頁面
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ù),否則訪問頁面會出現(xiàn)400錯誤。
感謝你能夠認真閱讀完這篇文章,希望小編分享的“springmvc如何實現(xiàn)Rest風(fēng)格”這篇文章對大家有幫助,同時也希望大家多多支持創(chuàng)新互聯(lián),關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,更多相關(guān)知識等著你來學(xué)習(xí)!