91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

如何實現Springmvc異常映射

發布時間:2020-07-28 15:34:13 來源:億速云 閱讀:160 作者:小豬 欄目:編程語言

這篇文章主要講解了如何實現Springmvc異常映射,內容清晰明了,對此有興趣的小伙伴可以學習一下,相信大家閱讀完之后會有幫助。

請求出現 想要跳轉到錯誤頁面

就需要對springmvc進行配置

方法1:基于xml的配置

springmvc.xml配置類

<!--配置基于xml的異常映射-->
<bean id="simpleMappingExceptionResolver" class="org.springframework.web.servlet.handler.SimpleMappingExceptionResolver">
  <!--配置異常和對應頁面的映射-->
  <property name="exceptionMappings" >
    <props>
      <prop key="java.lang.Exception">erroe</prop>
    </props>
  </property>
</bean>

2.方法2:基于@ControllerAdvice

@ControllerAdvice
public class ExceptionResolver {
  @ExceptionHandler(value = NullPointerException.class)
public ModelAndView nullPointerExceptionResovler(NullPointerException e, HttpServletRequest request, HttpServletResponse response) throws IOException {
   String viewName="erroe";
    return commonReslover(viewName,response,request,e);
  }
  private ModelAndView commonReslover(String viewName,HttpServletResponse response,HttpServletRequest request,Exception e) throws IOException {
    boolean judgeResult = CrowdUtil.judgeRequestType(request);
    if(judgeResult){
      ResultEntity<Object> resultEntity=ResultEntity.failed(e.getMessage());
      //轉成gson對象
      Gson gson=new Gson();
      response.getWriter().write(gson.toJson(resultEntity));
      return null;
    }
    ModelAndView modelAndView=new ModelAndView();
    modelAndView.addObject("exception",e);
    modelAndView.setViewName(viewName);
    return modelAndView;
  }
}

看完上述內容,是不是對如何實現Springmvc異常映射有進一步的了解,如果還想學習更多內容,歡迎關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

大兴区| 河北区| 且末县| 榕江县| 华宁县| 佛山市| 惠安县| 扎兰屯市| 高平市| 东港市| 那曲县| 阿鲁科尔沁旗| 肇源县| 正安县| 宜君县| 锡林浩特市| 重庆市| 穆棱市| 阿尔山市| 南京市| 信丰县| 霍州市| 磐石市| 昌图县| 平谷区| 江达县| 咸宁市| 梨树县| 土默特右旗| 基隆市| 疏附县| 萨嘎县| 文成县| 竹北市| 商都县| 皋兰县| 章丘市| 嘉黎县| 城步| 庄河市| 松溪县|