您好,登錄后才能下訂單哦!
今天就跟大家聊聊有關如何處理Java SpringMVC異常機制詳解,可能很多人都不太了解,為了讓大家更加了解,小編給大家總結了以下內容,希望大家根據這篇文章可以有所收獲。
異常處理的思路
測試環境準備
異常處理兩種方式
方式一:簡單異常處理器
方式二:自定義異常處理器
總結
首先寫一個DemoController控制層的類作為測試訪問的控制器
package com.itheima.controller; import com.itheima.exception.MyException; import com.itheima.service.DemoService; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestParam; import java.io.FileNotFoundException; @Controller public class DemoController { @Autowired private DemoService demoService; @RequestMapping(value="/show") public String show() throws FileNotFoundException, MyException { System.out.println("show running"); demoService.show1(); // demoService.show2(); // demoService.show3(); // demoService.show4(); // demoService.show5(); return "index"; } }
然后在service中寫上接口DemoService和實現類DemoServiceImpl
package com.itheima.service; import com.itheima.exception.MyException; import java.io.FileNotFoundException; public interface DemoService { public void show1(); public void show2(); public void show3() throws FileNotFoundException; public void show4(); public void show5() throws MyException; }
package com.itheima.service.impl; import com.itheima.exception.MyException; import com.itheima.service.DemoService; import java.io.FileInputStream; import java.io.FileNotFoundException; import java.io.InputStream; public class DemoServiceImpl implements DemoService { public void show1() { System.out.println("類型轉換異常"); Object str = "zhangsan"; Integer num = (Integer) str; } public void show2() { System.out.println("拋出除零異常"); int i = 1 / 0; } public void show3() throws FileNotFoundException { System.out.println("文件找不到異常"); InputStream in = new FileInputStream("C:/xxx/xxx/xxx.txt"); } public void show4() { System.out.println("空指針異常"); String str = null; str.length(); } public void show5() throws MyException { System.out.println("自定義異常"); throw new MyException(); } }
其中的MyException是自定義異常,被聲明在itheima的另一個包下,此時還未任何實現:
訪問一下/show,因為先調用的show1方法,所以會報類型轉換異常:
環境準備完畢。
方式一很簡單,去做對應的配置文件配置就可以了:
<!--配置異常處理器--> <bean class="org.springframework.web.servlet.handler.SimpleMappingExceptionResolver"> <!--如果下面全都對不上,就會采用這個默認的defaultErrorView所對應的value值的視圖--> <property name="defaultErrorView" value="error"></property> <property name="exceptionMappings"> <map> <!--類型轉換異常,拋了什么異常,就會跳轉到value值對應的字符串顯示的頁面--> <entry key="java.lang.ClassCastException" value="error"></entry> <!--自定義異常--> <entry key="com.itheima.exception.MyException" value="error"></entry> </map> </property> </bean>
然后再進行訪問,可以看到跳轉到了error視圖:
步驟;
1、創建異常處理器類實現HandlerExceptionResolver
2、配置異常處理器
3、編寫異常頁面
4、測試異常跳轉
演示;
第一步:創建異常處理器類實現HandlerExceptionResolver
package com.itheima.resolver; import com.itheima.exception.MyException; import org.springframework.web.servlet.HandlerExceptionResolver; import org.springframework.web.servlet.ModelAndView; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; public class MyExceptionResolver implements HandlerExceptionResolver { /*這是HandlerExceptionResolver中必須要實現的方法 參數Exception:異常對象 返回值ModelAndView:跳轉到錯誤視圖信息 */ public ModelAndView resolveException(HttpServletRequest httpServletRequest, HttpServletResponse httpServletResponse, Object o, Exception e) { ModelAndView md = new ModelAndView(); /* 這里只是大致做一個代碼邏輯的演示 實際開發當中并不會這樣寫,沒什么意義 下面的演示只是可以告訴我們可以在這個方法里面進行異常信息的判斷 */ if(e instanceof MyException){ md.addObject("info","自定義異常"); }else if(e instanceof ClassCastException){ md.addObject("info","類型轉換異常"); } md.setViewName("error"); return md; } }
第二步:在SpringMVC的配置文件當中配置異常處理器
<!--自定義異常處理器--> <bean class="com.itheima.resolver.MyExceptionResolver"></bean>
測試訪問就行了。
看完上述內容,你們對如何處理Java SpringMVC異常機制詳解有進一步的了解嗎?如果還想了解更多知識或者相關內容,請關注億速云行業資訊頻道,感謝大家的支持。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。