如何使用SpringMvc處理Rest異常?
(1)通過配置應用程序調用rest服務 年編寫java類型的應用程序,在java程序中調用rest服務 (2)以web服務的形式調用rest服務 此種方式對rest服務的聲明有一定要求,聲明方式如下所示,僅供參考: @Mapping("/rest/getUserInfo") public Renderer cnkeet() throws Exception { ActionContext ac=ActionContext.getActionContext(); HttpServletRequesthrq=ac.getHttpServletRequest();Stringid=hrq.getParameter(“id”); JSONObject object=new JSONObject(); object.put(“id”, id); return new PlainRenderer(object.toString()); } 此種聲明方式需要通過request獲取參數值】 注:如果rest服務聲明為如下形式 @Mapping("/rest/getUserInfo/$1/$2") public Renderer getUserInfo(String id) throws Exception { } 工作流在調用rest服務時,url為http://ip:port/context/rest/getUserInfo?t=""&n="" 。與rest聲明不符,調用失敗, 導致調用rest服務失敗。具體可參考東軟平臺產品官網,https://platform.neusoft.com/