【fix sonar】JeroBootExceptionHandler文件
This commit is contained in:
+10
-9
@@ -2,6 +2,7 @@ package com.jero.common.exception;
|
|||||||
|
|
||||||
import com.jero.common.api.vo.Result;
|
import com.jero.common.api.vo.Result;
|
||||||
import lombok.extern.slf4j.Slf4j;
|
import lombok.extern.slf4j.Slf4j;
|
||||||
|
import org.apache.poi.ss.formula.functions.T;
|
||||||
import org.apache.shiro.authz.AuthorizationException;
|
import org.apache.shiro.authz.AuthorizationException;
|
||||||
import org.apache.shiro.authz.UnauthorizedException;
|
import org.apache.shiro.authz.UnauthorizedException;
|
||||||
import org.springframework.dao.DataIntegrityViolationException;
|
import org.springframework.dao.DataIntegrityViolationException;
|
||||||
@@ -27,31 +28,31 @@ public class JeroBootExceptionHandler {
|
|||||||
* 处理自定义异常
|
* 处理自定义异常
|
||||||
*/
|
*/
|
||||||
@ExceptionHandler(JeroBootException.class)
|
@ExceptionHandler(JeroBootException.class)
|
||||||
public Result handleJeroBootException(JeroBootException e){
|
public Result<T> handleJeroBootException(JeroBootException e){
|
||||||
log.error(e.getMessage(), e);
|
log.error(e.getMessage(), e);
|
||||||
return Result.error(e.getMessage());
|
return Result.error(e.getMessage());
|
||||||
}
|
}
|
||||||
|
|
||||||
@ExceptionHandler(NoHandlerFoundException.class)
|
@ExceptionHandler(NoHandlerFoundException.class)
|
||||||
public Result handlerNoFoundException(Exception e) {
|
public Result<T> handlerNoFoundException(Exception e) {
|
||||||
log.error(e.getMessage(), e);
|
log.error(e.getMessage(), e);
|
||||||
return Result.error(404, "路径不存在,请检查路径是否正确");
|
return Result.error(404, "路径不存在,请检查路径是否正确");
|
||||||
}
|
}
|
||||||
|
|
||||||
@ExceptionHandler(DuplicateKeyException.class)
|
@ExceptionHandler(DuplicateKeyException.class)
|
||||||
public Result handleDuplicateKeyException(DuplicateKeyException e){
|
public Result<T> handleDuplicateKeyException(DuplicateKeyException e){
|
||||||
log.error(e.getMessage(), e);
|
log.error(e.getMessage(), e);
|
||||||
return Result.error("数据库中已存在该记录");
|
return Result.error("数据库中已存在该记录");
|
||||||
}
|
}
|
||||||
|
|
||||||
@ExceptionHandler({UnauthorizedException.class, AuthorizationException.class})
|
@ExceptionHandler({UnauthorizedException.class, AuthorizationException.class})
|
||||||
public Result handleAuthorizationException(AuthorizationException e){
|
public Result<Object> handleAuthorizationException(AuthorizationException e){
|
||||||
log.error(e.getMessage(), e);
|
log.error(e.getMessage(), e);
|
||||||
return Result.noauth("没有权限,请联系管理员授权");
|
return Result.noauth("没有权限,请联系管理员授权");
|
||||||
}
|
}
|
||||||
|
|
||||||
@ExceptionHandler(Exception.class)
|
@ExceptionHandler(Exception.class)
|
||||||
public Result handleException(Exception e){
|
public Result<T> handleException(Exception e){
|
||||||
log.error(e.getMessage(), e);
|
log.error(e.getMessage(), e);
|
||||||
return Result.error("操作失败,"+e.getMessage());
|
return Result.error("操作失败,"+e.getMessage());
|
||||||
}
|
}
|
||||||
@@ -62,7 +63,7 @@ public class JeroBootExceptionHandler {
|
|||||||
* @return
|
* @return
|
||||||
*/
|
*/
|
||||||
@ExceptionHandler(HttpRequestMethodNotSupportedException.class)
|
@ExceptionHandler(HttpRequestMethodNotSupportedException.class)
|
||||||
public Result httpRequestMethodNotSupportedException(HttpRequestMethodNotSupportedException e){
|
public Result<T> httpRequestMethodNotSupportedException(HttpRequestMethodNotSupportedException e){
|
||||||
StringBuilder sb = new StringBuilder();
|
StringBuilder sb = new StringBuilder();
|
||||||
sb.append("不支持");
|
sb.append("不支持");
|
||||||
sb.append(e.getMethod());
|
sb.append(e.getMethod());
|
||||||
@@ -83,19 +84,19 @@ public class JeroBootExceptionHandler {
|
|||||||
* spring默认上传大小100MB 超出大小捕获异常MaxUploadSizeExceededException
|
* spring默认上传大小100MB 超出大小捕获异常MaxUploadSizeExceededException
|
||||||
*/
|
*/
|
||||||
@ExceptionHandler(MaxUploadSizeExceededException.class)
|
@ExceptionHandler(MaxUploadSizeExceededException.class)
|
||||||
public Result handleMaxUploadSizeExceededException(MaxUploadSizeExceededException e) {
|
public Result<T> handleMaxUploadSizeExceededException(MaxUploadSizeExceededException e) {
|
||||||
log.error(e.getMessage(), e);
|
log.error(e.getMessage(), e);
|
||||||
return Result.error("文件大小超出10MB限制, 请压缩或降低文件质量! ");
|
return Result.error("文件大小超出10MB限制, 请压缩或降低文件质量! ");
|
||||||
}
|
}
|
||||||
|
|
||||||
@ExceptionHandler(DataIntegrityViolationException.class)
|
@ExceptionHandler(DataIntegrityViolationException.class)
|
||||||
public Result handleDataIntegrityViolationException(DataIntegrityViolationException e) {
|
public Result<T> handleDataIntegrityViolationException(DataIntegrityViolationException e) {
|
||||||
log.error(e.getMessage(), e);
|
log.error(e.getMessage(), e);
|
||||||
return Result.error("字段太长,超出数据库字段的长度");
|
return Result.error("字段太长,超出数据库字段的长度");
|
||||||
}
|
}
|
||||||
|
|
||||||
@ExceptionHandler(PoolException.class)
|
@ExceptionHandler(PoolException.class)
|
||||||
public Result handlePoolException(PoolException e) {
|
public Result<T> handlePoolException(PoolException e) {
|
||||||
log.error(e.getMessage(), e);
|
log.error(e.getMessage(), e);
|
||||||
return Result.error("Redis 连接异常!");
|
return Result.error("Redis 连接异常!");
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user