When you have a controller that runs logic with services and DAOs that can throw an unrecoverable exception, what is the best practice regarding these method calls?
Currently the application I'm working on has very long try catch methods that simply eliminate error messages. This doesn't seem very reliable, and I think this code smells, is there any culinary cutting program to handle this in spring -mvc?
source
share