- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用 Spring Boot 创建几个 REST API,并正在考虑解耦异常处理并将其作为外部 jar 文件,然后我可以将其导入到我的项目中并拥有一个全局异常处理程序逻辑。我为此创建了一个新项目,其中有一个带有 @RestControllerAdvice 注释的类,并且我将该项目作为依赖项导入到我的 REST API 项目中,我发现该异常未得到处理。
这是我的 REST API 项目中的 Controller
package com.xyz.poc.controller;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RestController;
@RestController
public class HomeController {
@GetMapping("/hello")
public String hello() throws Exception {
throw new Exception("Error in hello world");
}
}
这是 REST API 的引导类
package com.xyz.poc;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@SpringBootApplication(scanBasePackages = {"com.xyz.*"})
public class PocApplication {
public static void main(String[] args) {
SpringApplication.run(PocApplication.class, args);
}
}
下面是REST API项目的build.gradle文件,其中包括异常处理项目的jar文件的导入。我手动将 jar 文件复制到 libs 文件夹,这就是它在下面的文件中引用它的原因。
plugins {
id 'org.springframework.boot' version '2.1.8.RELEASE'
id 'io.spring.dependency-management' version '1.0.8.RELEASE'
id 'java'
}
group = 'com.xyz'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '1.8'
repositories {
mavenCentral()
}
dependencies {
implementation files('libs/exceptionhandling-0.0.1-SNAPSHOT.jar')
implementation 'org.springframework.boot:spring-boot-starter-web'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
}
task listJars {
configurations.compile.each { File file -> println file.name }
}
下面是 @RestControllerAdvice 类,这是如上所述的不同项目,并作为 REST API 项目中的依赖项导入
package com.xyz.exception.exceptionhandling;
import com.xyz.exception.exceptionhandling.GenericExceptions.AuthenticationException;
import com.xyz.exception.exceptionhandling.GenericExceptions.ConflictException;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.TypeMismatchException;
import org.springframework.http.HttpStatus;
import org.springframework.http.converter.HttpMessageNotReadableException;
import org.springframework.validation.BindException;
import org.springframework.validation.FieldError;
import org.springframework.web.bind.MethodArgumentNotValidException;
import org.springframework.web.bind.annotation.ExceptionHandler;
import org.springframework.web.bind.annotation.ResponseStatus;
import org.springframework.web.bind.annotation.RestControllerAdvice;
import org.springframework.web.context.request.WebRequest;
import org.springframework.web.servlet.NoHandlerFoundException;
@RestControllerAdvice
public class ControllerExceptionHandler {
private static final Logger LOGGER = LoggerFactory.getLogger(ControllerExceptionHandler.class);
@ResponseStatus(HttpStatus.INTERNAL_SERVER_ERROR)
@ExceptionHandler(value = { Exception.class })
public ServiceError handleCatchAll(Exception exception, WebRequest req) {
logException(exception);
return new ServiceError(HttpStatus.INTERNAL_SERVER_ERROR, exception.getMessage());
}
@ResponseStatus(HttpStatus.BAD_REQUEST)
@ExceptionHandler(value = { BindException.class })
public ServiceError handleRequestBindingException(BindException exception) {
logException(exception);
ServiceError errors = new ServiceError(HttpStatus.BAD_REQUEST, exception.getMessage());
for (FieldError error : exception.getBindingResult().getFieldErrors()) {
errors.addField(new ErrorField(error.getField(), error.getDefaultMessage()));
}
return errors;
}
@ResponseStatus(HttpStatus.BAD_REQUEST)
@ExceptionHandler(value = {
TypeMismatchException.class,
HttpMessageNotReadableException.class,
MethodArgumentNotValidException.class,
IllegalArgumentException.class
})
public ServiceError handleBadRequest(Exception exception) {
logException(exception);
return new ServiceError(HttpStatus.BAD_REQUEST, exception.getMessage());
}
@ResponseStatus(HttpStatus.FORBIDDEN)
@ExceptionHandler(value = { AuthenticationException.class })
public ServiceError handleResponseAuthenticationException(AuthenticationException exception) {
logException(exception);
return new ServiceError(HttpStatus.FORBIDDEN, exception.getMessage());
}
@ResponseStatus(HttpStatus.NOT_FOUND)
@ExceptionHandler(value = { NoHandlerFoundException.class })
public ServiceError handleNoHandlerFoundException(NoHandlerFoundException exception) {
logException(exception);
return new ServiceError(HttpStatus.NOT_FOUND, exception.getMessage());
}
@ResponseStatus(HttpStatus.CONFLICT)
@ExceptionHandler(value = { ConflictException.class })
public ServiceError handleConflictException(ConflictException exception) {
logException(exception);
return new ServiceError(HttpStatus.CONFLICT, exception.getMessage());
}
private void logException(Throwable exception) {
LOGGER.error("An error occurred: " + exception.getMessage());
LOGGER.debug("An error occurred", exception);
}
}
这是我的异常处理项目中的 Bootstrap
package com.xyz.exception.exceptionhandling;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@SpringBootApplication
public class ExceptionhandlingApplication {
public static void main(String[] args) {
SpringApplication.run(ExceptionhandlingApplication.class, args);
}
}
最佳答案
替换
implementation files('libs/exceptionhandling-0.0.1-SNAPSHOT.jar')
与
compile files('libs/exceptionhandling-0.0.1-SNAPSHOT.jar')
关于java - 在不同的 jar 文件中使用 @RestControllerAdvice 不会捕获异常,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57999840/
我有多个子项目的父项目。所有项目都以 basepakage org.dordas.{project name}.web.controller 开头。我想用一个基础包配置 controllerAdvic
@RestControllerAdvice 和 @ControllerAdvice 之间的主要区别是什么? 我们是否应该始终将 @RestControllerAdvice 用于休息服务和 @Contr
我正在使用 Spring Boot 2.3.1,但遇到异常问题。我想使用 @RestControllerAdvice 类在全局级别捕获异常。我能够捕获验证错误并返回自定义错误响应,但 Spring 似
我有一个 Spring MVC 应用程序,它有 @Controller s 和 @RestController s。 我在想:当我的 @Controller 出现异常时, 由我处理 @Controll
我有大约 20 到 30 种不同类型的不同异常,所有异常都扩展了 Java 中的 Exception 类。一个例子是: public class NoHandlerFoundException ext
我正在使用 Spring Boot 创建几个 REST API,并正在考虑解耦异常处理并将其作为外部 jar 文件,然后我可以将其导入到我的项目中并拥有一个全局异常处理程序逻辑。我为此创建了一个新项目
我有以下 Controller : @RestController @RequestMapping("/api/{brand}" public class CarController { @Get
自定义枚举 validator 注释接口(interface): @Target({METHOD, FIELD, ANNOTATION_TYPE, CONSTRUCTOR, PARAMETER, TY
有一个非常相似的问题here ,但答案不足以解决我的问题。 我在 @Service 类中有这个方法: @Async public void activateUser(...){ if(someCo
我目前正在抛出自定义异常 - RequestValidationException。 ExceptionHandler 类: @RestControllerAdvice @Slf4j public c
在 Spring Webflux 异常处理的首选方式是什么? @RestControllerAdvice 来自 Spring MVC 而 DefaultErrorAttributes 来自 Sprin
@ControllerAdvice public class GlobalExceptionHandler { @ExceptionHandler(NoHandlerFound
我是一名优秀的程序员,十分优秀!