您好,登錄后才能下訂單哦!
小編給大家分享一下spring mvc中@PathVariable / 帶斜杠方式獲取的示例分析,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!
遇上這個問題,百度google了一下,抄襲里面的內(nèi)容,可以實(shí)現(xiàn),在此備忘
@RequestMapping(value = "/download/{value1}/**", method = RequestMethod.GET) public void getValue(@PathVariable String value1, HttpServletRequest request) throws CommonException { String value = extractPathFromPattern(request); }
private String extractPathFromPattern(final HttpServletRequest request) { String path = (String) request.getAttribute(HandlerMapping.PATH_WITHIN_HANDLER_MAPPING_ATTRIBUTE); String bestMatchPattern = (String) request.getAttribute(HandlerMapping.BEST_MATCHING_PATTERN_ATTRIBUTE); return new AntPathMatcher().extractPathWithinPattern(bestMatchPattern, path); }
請求地址/username/resourceUrl/methodName,其中username可能有也可能沒有,resourceUrl中會帶/,這個時候要使用@PathVariable,不能正確匹配controller
把resourceUrl處理成一個不帶/的參數(shù)即可
1、約定好/替換方案,比如請求方把/全部替換為--
2、通過url編碼解碼處理 / 經(jīng)過編碼變成%2F 把resourceUrl編碼后,這個時候發(fā)現(xiàn)還是不能請求到正確的方法,因為到spring時已經(jīng)自動解碼了。可以把%2F再編一次碼變成%252F。%編碼后是25
/** */abc/xiaoming/h6/user.json/get */ @ResponseBody @RequestMapping(method=RequestMethod.POST ,value="/abc/{username}/{resourceUrl}/{methodName}") public String dubboMock(HttpServletResponse response,@PathVariable String username,@PathVariable String resourceUrl,@PathVariable String methodName){ }
3、放棄使用PathVariable,手動去處理
/** */abc/xiaoming/h6/user.json/get */ @ResponseBody @RequestMapping(method=RequestMethod.POST ,value="/abc/**") public String dubboMock(HttpServletResponse response,HttpServletResponse request){ String url = request.getRequestURI(); //處理url }
以上是“spring mvc中@PathVariable / 帶斜杠方式獲取的示例分析”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對大家有所幫助,如果還想學(xué)習(xí)更多知識,歡迎關(guān)注億速云行業(yè)資訊頻道!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。