例外処理
10672 ワード
✔異常処理
に道を教える
try−catch文は、
@ExceptionHandler
@Controller,@RestControllerを適用したbeanにおける異常をキャプチャすることによって処理する方法
@RestController
public class MyRestController {
...
...
@ExceptionHandler(NullPointerException.class)
public Object nullex(Exception e) {
System.err.println(e.getClass());
return "myService";
}
}
@ControllerAdvice("")
public class ExceptionController {
private static final Logger LOG = LoggerFactory.getLogger(ExceptionController.class);
private ModelAndView mav;
@ExceptionHandler(Exception.class)
public ModelAndView handleException(HttpServletRequest request, Exception exception) throws Exception {
LOG.error("error : {}", exception);
String path = getResponsePath(request);
mav = new ModelAndView(path);
mav.addObject("Error", "서버에 오류가 발생하였습니다.");
return mav;
}
try-catch
try {
// 예외가 생길 가능성이 있는 코드 작성
} catch (Exception e) {
// 예외처리 코드
e.printStackTrace();
}
----
public class Mathematics {
public static void main(String[] args) {
int num1, num2;
num1 = 12;
num2 = 0;
try {
System.out.println(num1 / num2);
} catch (ArithmeticException e) {
System.out.println("0으로는 값을 나눌 수가 없습니다.");
}
}
}
しゅつりょくぶんthrows
public void test2() throws Exception {
int num1, num2;
num1 = 12;
num2 = 0;
try {
System.out.println(num1 / num2);
} catch (ArithmeticException e) {
System.out.println("0으로는 값을 나눌 수가 없습니다.");
// e.printStackTrace();
// return;
}
}
Reference
この問題について(例外処理), 我々は、より多くの情報をここで見つけました https://velog.io/@bbirds94/예외-처리テキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol