How to create custom validation annotation
When we have an application that collects inputs from users, we usually need to have some validation checks to ensure user inputs are within what is expected...
When we have an application that collects inputs from users, we usually need to have some validation checks to ensure user inputs are within what is expected...
I was just trying out to bootstrap a website with NextJS and I wanted to apply the Blog template from Material UI Getting Started Templates but it wasn’t as ...
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...