How to Implement Server-side Pagination with Angular and Spring Boot in 3 Steps

In the previous article,  we have implemented a CRUD application. As part of the Read operation, we need to list all the available products from the database. If there are 100s…

Continue ReadingHow to Implement Server-side Pagination with Angular and Spring Boot in 3 Steps

How to Implement Spring Boot Angular User Registration Email Verification

In the previous article,  we have integrated the Razorpay payment gateway with our Spring Boot Angular application. In this article, we are gonna implement user registration email verification using the Freemarker template engine.…

Continue ReadingHow to Implement Spring Boot Angular User Registration Email Verification

How to Configure Spring Security with Multiple Authentication Providers

  • Post author:
  • Post category:Spring Boot
  • Post comments:2 Comments
  • Post last modified:September 22, 2021

In our previous articles, we have implemented Basic Authentication, JWT Authentication, LDAP authentication with BASIC_AUTH, JWT_AUTH and LDAP_AUTH profiles respectively. Also, we have seen how to disable Spring Security with NO_AUTH profile. However, sometimes our application might need to…

Continue ReadingHow to Configure Spring Security with Multiple Authentication Providers

How to Write Junit 5 Test Cases for Spring REST Controller using Mockito

  • Post author:
  • Post category:Spring Boot
  • Post comments:0 Comments
  • Post last modified:December 20, 2022

In the previous article, we integrated the Razorpay payment gateway with our Spring Boot Angular application. Now, we are gonna unit test one of the REST controller using Mockito. Introduction JUnit is an…

Continue ReadingHow to Write Junit 5 Test Cases for Spring REST Controller using Mockito