How to validate input in Spring Boot RestController
Validating user inputs is not a difficult task, but it is rather cumbersome. Although essential, having lots of validation checks in the code makes the code ...
Validating user inputs is not a difficult task, but it is rather cumbersome. Although essential, having lots of validation checks in the code makes the code ...
Continuing my previous article configuring CSRF with Spring Security, this time we are going to configure the authentication. Spring security provides all th...
Lombok makes life easier for java developers by generating the mundane code (e.g. getters and setters) automatically, but if you are running code coverage, y...
Today we are going to work on adding Spring Security to our Spring boot application. To start, we will first need to add the dependencies for Spring Securit...
In today’s environment, when we are having tons of dependencies in our application project, as developers we need to take care not just of the business logic...