Spring 全局拦截SQL异常
Posted 悟能的师兄
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Spring 全局拦截SQL异常相关的知识,希望对你有一定的参考价值。
系统开发总是免不了各种各样的异常,特别是数据库异常,很容易就暴露数据库得表结构,因此我们要做数据库异常的全局拦截。
@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());
这样就对所有的数据库异常做了全局的拦截,投机取巧的方式
以上是关于Spring 全局拦截SQL异常的主要内容,如果未能解决你的问题,请参考以下文章