How to Build a Simple Validation Mechanism for JAVA Spring MVC REST Endpoint Parameters
Over the years I have seen several approaches for validating inputs (@RequestParam, @RequestBody, etc.) for REST endpoints. Many of these approaches are pretty manual and require explicitly calling a validation mechanism. But is there a way to automate this process while writing as little code as...