spring-rest-exception-handler icon indicating copy to clipboard operation
spring-rest-exception-handler copied to clipboard

A convenient Spring MVC exception handler for RESTful APIs.

Results 17 spring-rest-exception-handler issues
Sort by recently updated
recently updated
newest added

- bump: groovy version - deploy: github packages

Hello! Great job on the Spring REST Exception handler! Spring has moved on, and they [removed](https://stackoverflow.com/questions/45076007/what-is-the-replacement-for-springs-deprecated-nosuchrequesthandlingmethodexcep) `org.springframework.web.servlet.mvc.multiaction.NoSuchRequestHandlingMethodException` in Spring 5: This pull request makes the library compatible again with Spring...

Hi @jirutka, Please, could you release your last commit ? I need to extend the `ValidationErrorMessage.Error` which was made public. Thanks!

We have implemented validation of primitive Spring request parameters in Controllers using @Validated annotation. Sample: ``` @Validated ... @RequestMapping(path = "/listUsers", method = RequestMethod.GET) public Page listUsers(@ApiParam(value = PageRequestParameters.PAGE_DESCRIPTION) @RequestParam(name...

``` Error starting ApplicationContext. To display the conditions report re-run your application with 'debug' enabled. 2018-07-18 16:10:58.961 ERROR 2979 --- [ main] o.s.boot.SpringApplication : Application run failed org.springframework.beans.factory.BeanCreationException: Error creating...

Hello, Thank you very much for this very useful lib! At cz.jirutka.spring.exhandler.RestHandlerExceptionResolverBuilder#getDefaultHandlers there is a reference to the deprecated NoSuchRequestHandlingMethodException which will be removed with the new version of Spring....

Hi @jirutka, I know that this project is not in your top priority list but would be really nice to support or completely move to spring 5.x since supporting all...

…tResponse #24 Requires Java 8 but I guess this should not be problem.

I really like this small lib but I really would appreciate if the `RestExceptionHandler` could be able to access not only the `HttpServletRequest` but also the `HttpServletResponse`. Please provide a...

First of all thank you very much for this great project. You saved me a lot of work. Currently I run into a problem when I use your library with...