系统开发总是免不了各种各样的异常,特别是数据库异常,很容易就暴露数据库得表结构,因此我们要做数据库异常的全局拦截。
@RestControllerAdvice
public class GlobalExceptionHandler
{
/***
* 数据库操作异常-统一拦截处理 - 未能生效
* @param e
* @return
*/
@ExceptionHandler(SQLException.class)
public AjaxResult handlerSQLException( SQLException e)
{
log.error(e.getMessage(), e);
return AjaxResult.error(HttpStatus.ERROR, "数据操作失败!请联系管理员");
}
}
使用上面的方式,主要是想所有的SQL异常其实都继承了:SQLException.java
但是 ExceptionHandler 只认我们注入的类名称,因此只能采用其他方式
@RestControllerAdvice
public class GlobalExceptionHandler
{
/***
* 数据库操作异常-统一拦截处理 - 未能生效
* @param e
* @return
*/
@ExceptionHandler(SQLException.class)
public AjaxResult handlerSQLException( SQLException e)
{
log.error(e.getMessage(), e);
return AjaxResult.error(HttpStatus.ERROR, "数据操作失败!请联系管理员");
}
@ExceptionHandler(Exception.class)
public AjaxResult handleException(Exception e)
{
log.error(e.getMessage(), e);
return handlerOtherException( e ) ;
}
public AjaxResult handlerOtherException( Exception e ){
if( e.getCause().toString().startsWith( "java.sql.SQL" ) ){
return AjaxResult.error(HttpStatus.ERROR, "数据操作失败!请联系管理员");
}else{
return AjaxResult.error(e.getMessage());
}
}
}
这样就对所有的数据库异常做了全局的拦截,投机取巧的方式