Strange behavior while returning csv file from spring controller
- by Fanooos
I working in a spring application which have an action method that returns a CSV file.
This action works fine but in some cases it throws a predefined exception (MyAppException).
I have another method that is annotated @ExceptionHandler(MyAppException.class)
In the exception handler method I return another csv file but with different contents.
…