您好,登錄后才能下訂單哦!
這篇文章主要介紹“springmvc 獲取@Requestbody轉換的異常處理方法”,在日常操作中,相信很多人在springmvc 獲取@Requestbody轉換的異常處理方法問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”springmvc 獲取@Requestbody轉換的異常處理方法”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!
使用spring 自動的@RequestBody,可以很方便的將參數轉換成對象,然而在自動轉換中出現如果出現異常,會默認直接發送HTTP異常代碼和錯誤信息,如何才能自定義自己的異常呢。
解答問題的方式有可以有很多,一種通用的解答方式是使用@ExceptionHandler
Spring 可以自動封裝成一個Map
@PostMapping(value = "/check",consumes = "application/json") public ApiResult check(@RequestBody Map<String,String> paramBody) { // ......... }
那么會出現異常,可以看到是com.fasterxml.jackson.core.JsonParseException類型的(jackson是spring boot默認的json解析庫)
14:29:40.891 [http-nio-9091-exec-3] WARN o.s.w.s.m.s.DefaultHandlerExceptionResolver - Failed to read HTTP message: org.springframework.http.converter.HttpMessageNotReadableException: JSON parse error: Unrecognized character escape '[' (code 91); nested exception is com.fasterxml.jackson.core.JsonParseException: Unrecognized character escape '[' (code 91)
返回給前端的可能如下格式的提示,默認的格式不是太好處理
{ "timestamp": 1551680980906, "status": 400, "error": "Bad Request", "message": "JSON parse error: Unrecognized character escape '[' (code 91); nested exception is com.fasterxml.jackson.core.JsonParseException: Unrecognized character escape '[' (code 91)\n at [Source: (PushbackInputStream); line: 66, column: 29]", "path": "/check" }
@ExceptionHandler(value = JsonParseException.class) public @ResponseBody ApiResult exceptionHandler(JsonParseException e){ return new ApiResult(500, "調用接口異常,解析請求體JSON格式錯誤", null); }
因為請求體是流的形式,只能讀一次,在解析請求體后,流已經關閉了。再在上面的代碼中添加request獲取請求體,會得到一個已經關閉的流。下面是結合網上的例子和實踐過的方案
2.4.1 定義一個filter,緩存請求
/** * * @author Bob.chen * @date 2019年3月4日-下午2:10:01 * @desc 包裝下請求,是請求體可以在@ExceptionHandler中使用 */ @Component public class RequestWrapperFilter extends OncePerRequestFilter { @Override protected void doFilterInternal(HttpServletRequest httpServletRequest, HttpServletResponse httpServletResponse, FilterChain filterChain) throws ServletException, IOException { filterChain.doFilter(new ContentCachingRequestWrapper(httpServletRequest), httpServletResponse); } }
2.4.2 在自定義錯誤格式中使用緩存的請求
@ExceptionHandler(value = JsonParseException.class) public @ResponseBody ApiResult exceptionHandler(JsonParseException e, ServletRequest request) { if (request != null && request instanceof ContentCachingRequestWrapper) { ContentCachingRequestWrapper wrapper = (ContentCachingRequestWrapper) request; LOG.warn("BAD_REQUEST_BODY:{}", StringUtils.toEncodedString(wrapper.getContentAsByteArray(), Charset.forName(wrapper.getCharacterEncoding()))); } return new ApiResult(500, "調用接口異常,解析請求體JSON格式錯誤", null); }
直接使用得到的是key=value&key=value…結構的數據,因此get方式不適用(get方式下@RequestBody獲取不到任何數據)。
例:
public void test1(@RequestBody String body){ system.out.println(body); }
輸出結果:
username=hehe&age=20
可以在方法中創建一個集合對象,前端提交的集合數據可以直接被注入到方法的集合對象中,而不需要創建一個pojo對象進行集合的封裝。
需要導入jackson的相關jar包,并使用@RequestBody注解。
注:springmvc默認使用MappingJacksonHttpMessageConverter對json數據進行轉換。
前后端參數要匹配個數不能少,字段名字要一樣。
到此,關于“springmvc 獲取@Requestbody轉換的異常處理方法”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續學習更多相關知識,請繼續關注億速云網站,小編會繼續努力為大家帶來更多實用的文章!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。