我想知道如何处理Spring Data Rest中的内部服务器错误类型异常,例如由于格式错误的请求或数据库崩溃导致的JPA异常等.我做了一些研究发现,更好的方法是使用@ControllerAdvice,但找不到任何有用的例子.我看了这两个问题,但仍然没有答案.
How can I handle exceptions with Spring Data Rest and the PagingAndSortingRepository?
最佳答案
你可以这样做:
原文链接:https://www.f2er.com/spring/432505.html@ControllerAdvice(basePackageClasses = RepositoryRestExceptionHandler.class)
public class GenericExceptionHandler {
@ExceptionHandler
ResponseEntity handle(Exception e) {
return new ResponseEntity("Some message",new HttpHeaders(),HttpStatus.BAD_REQUEST);
}
}