SpringBootWEBプロジェクトと非Webプロジェクトのグローバル例外キャプチャ
3632 ワード
一、紹介
SpringBootのWEB異常キャプチャは、WEBプロジェクトであれば、Controllerでの異常を直接処理できます.WEBアイテムでなければ、AspectJを使ってうどんを作る必要があります.
二、WEBプロジェクト
三、非WEBプロジェクト
転載先:https://www.cnblogs.com/songxingzhu/p/9718670.html
SpringBootのWEB異常キャプチャは、WEBプロジェクトであれば、Controllerでの異常を直接処理できます.WEBアイテムでなければ、AspectJを使ってうどんを作る必要があります.
二、WEBプロジェクト
package com.yungoal.handler;
import lombok.extern.log4j.Log4j2;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.ControllerAdvice;
import org.springframework.web.bind.annotation.ExceptionHandler;
@ControllerAdvice
@Log4j2
public class GlobalExceptionHandler {
@ExceptionHandler(value = Exception.class)
public String exception(Exception e, Model model){
log.error("find exception:e={}",e.getMessage());
model.addAttribute("mes",e.getMessage());
return "pages/500";
}
}
三、非WEBプロジェクト
package com.yungoal.syncbackend.handler;
import lombok.extern.log4j.Log4j2;
import org.aspectj.lang.ProceedingJoinPoint;
import org.aspectj.lang.annotation.Around;
import org.aspectj.lang.annotation.Aspect;
import org.aspectj.lang.annotation.Pointcut;
import org.springframework.stereotype.Component;
@Component
@Aspect
@Log4j2
public class GlobalExceptionHandler {
@Pointcut("execution(* com.yungoal.syncbackend.scheduleds.*.*(..))")
public void pointCut() {
}
@Around("pointCut()")
public Object handlerException(ProceedingJoinPoint proceedingJoinPoint) {
try {
return proceedingJoinPoint.proceed();
} catch (Throwable ex) {
log.error("execute scheduled occur exception.", ex);
}
return null;
}
}
転載先:https://www.cnblogs.com/songxingzhu/p/9718670.html